Mercurial > emacs
diff src/process.c @ 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 | 50929073a0ba |
| children | 3763e516cf1e |
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))),
