diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-05-08 05:14:47 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-05-08 05:14:47 +0000 |
commit | 4724eab4ec0b9c38a9ef4384416b1fb487c828e5 (patch) | |
tree | 9048590c17f88dec928c0d030758e206bbe4f995 /src/callproc.c | |
parent | c71c19f4975ed6bc65e93400efa85d07a562c53b (diff) | |
download | emacs-4724eab4ec0b9c38a9ef4384416b1fb487c828e5.tar.gz |
(Fcall_process): Fix test for when to call Ffind_operation_coding_system.
Diffstat (limited to 'src/callproc.c')
-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.") val = Qraw_text; else { - if (!EQ (coding_systems, Qt)) + if (EQ (coding_systems, Qt)) { args2 = (Lisp_Object *) alloca ((nargs + 1) * sizeof *args2); args2[0] = Qcall_process; |