From: Richard M. Stallman Date: Fri, 8 May 1998 05:14:47 +0000 (+0000) Subject: (Fcall_process): Fix test for when to call Ffind_operation_coding_system. X-Git-Tag: emacs-20.3~1080 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4724eab4ec0b9c38a9ef4384416b1fb487c828e5;p=emacs.git (Fcall_process): Fix test for when to call Ffind_operation_coding_system. --- 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;