From e6e5ac68000ebad8b16313910958384d925648f7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 21 Mar 1998 17:50:30 +0000 Subject: [PATCH] (read_process_output): Use make_string_from_bytes. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index 05c12d10ab6..2f26a1a3597 100644 --- a/src/process.c +++ b/src/process.c @@ -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))),