changeset 21249:f90a51f05bee

(read_process_output): Use make_string_from_bytes.
author Richard M. Stallman <rms@gnu.org>
date Sat, 21 Mar 1998 17:50:30 +0000
parents aba5e1c3328b
children c6212caa6fe2
files src/process.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Sat Mar 21 17:50:03 1998 +0000
+++ b/src/process.c	Sat Mar 21 17:50:30 1998 +0000
@@ -2900,7 +2900,7 @@
 	 save the match data in a special nonrecursive fashion.  */
       running_asynch_code = 1;
 
-      text = make_multibyte_string (chars, nchars, nbytes);
+      text = make_string_from_bytes (chars, nchars, nbytes);
       internal_condition_case_1 (read_process_output_call,
 				 Fcons (outstream,
 					Fcons (proc, Fcons (text, Qnil))),