diff options
| author | Richard M. Stallman | 1998-03-21 17:50:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-03-21 17:50:30 +0000 |
| commit | e6e5ac68000ebad8b16313910958384d925648f7 (patch) | |
| tree | 2aef1c4395e704faef7532b43fc4063b2e00fb10 /src/process.c | |
| parent | 3f8100f1d88286d82e2b8c79d4bf7d63d8e8c538 (diff) | |
| download | emacs-e6e5ac68000ebad8b16313910958384d925648f7.tar.gz emacs-e6e5ac68000ebad8b16313910958384d925648f7.zip | |
(read_process_output): Use make_string_from_bytes.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 2900 | save the match data in a special nonrecursive fashion. */ | 2900 | save the match data in a special nonrecursive fashion. */ |
| 2901 | running_asynch_code = 1; | 2901 | running_asynch_code = 1; |
| 2902 | 2902 | ||
| 2903 | text = make_multibyte_string (chars, nchars, nbytes); | 2903 | text = make_string_from_bytes (chars, nchars, nbytes); |
| 2904 | internal_condition_case_1 (read_process_output_call, | 2904 | internal_condition_case_1 (read_process_output_call, |
| 2905 | Fcons (outstream, | 2905 | Fcons (outstream, |
| 2906 | Fcons (proc, Fcons (text, Qnil))), | 2906 | Fcons (proc, Fcons (text, Qnil))), |