diff options
| author | Richard M. Stallman | 1998-05-08 05:14:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-05-08 05:14:47 +0000 |
| commit | 4724eab4ec0b9c38a9ef4384416b1fb487c828e5 (patch) | |
| tree | 9048590c17f88dec928c0d030758e206bbe4f995 /src | |
| parent | c71c19f4975ed6bc65e93400efa85d07a562c53b (diff) | |
| download | emacs-4724eab4ec0b9c38a9ef4384416b1fb487c828e5.tar.gz emacs-4724eab4ec0b9c38a9ef4384416b1fb487c828e5.zip | |
(Fcall_process): Fix test for when to call Ffind_operation_coding_system.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c index e35b8274b7c..f93d0160594 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -282,7 +282,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") | |||
| 282 | val = Qraw_text; | 282 | val = Qraw_text; |
| 283 | else | 283 | else |
| 284 | { | 284 | { |
| 285 | if (!EQ (coding_systems, Qt)) | 285 | if (EQ (coding_systems, Qt)) |
| 286 | { | 286 | { |
| 287 | args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2); | 287 | args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2); |
| 288 | args2[0] = Qcall_process; | 288 | args2[0] = Qcall_process; |