]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_process_output): Use make_string_from_bytes.
authorRichard M. Stallman <rms@gnu.org>
Sat, 21 Mar 1998 17:50:30 +0000 (17:50 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 21 Mar 1998 17:50:30 +0000 (17:50 +0000)
src/process.c

index 05c12d10ab6020bc8dc3030f4ace5ccabf6355f3..2f26a1a3597d9733d4f29f67094a18918b4ec4b0 100644 (file)
@@ -2900,7 +2900,7 @@ read_process_output (proc, channel)
         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))),