diff options
| author | Kenichi Handa | 2004-10-14 12:28:46 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2004-10-14 12:28:46 +0000 |
| commit | 21d0467fdaef6d12ae6cd30e51d5fca9a3d29cb1 (patch) | |
| tree | 0af4546b40669ec98bebb6a80214a3ce087d7ace | |
| parent | 91900dd736dc0ab57a38da1fa9daa5ddde487bfb (diff) | |
| download | emacs-21d0467fdaef6d12ae6cd30e51d5fca9a3d29cb1.tar.gz emacs-21d0467fdaef6d12ae6cd30e51d5fca9a3d29cb1.zip | |
(Fcall_process): Fix merging of 2004-10-13 change.
| -rw-r--r-- | src/callproc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c index d9f9a342575..ba81f426dae 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -806,7 +806,8 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */) | |||
| 806 | carryover = nread; | 806 | carryover = nread; |
| 807 | /* This is to make the above condition always | 807 | /* This is to make the above condition always |
| 808 | fails in the future. */ | 808 | fails in the future. */ |
| 809 | saved_coding.type = coding_type_no_conversion; | 809 | saved_coding.common_flags |
| 810 | &= ~CODING_REQUIRE_DETECTION_MASK; | ||
| 810 | continue; | 811 | continue; |
| 811 | } | 812 | } |
| 812 | 813 | ||