]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_process): Fix test for when to call Ffind_operation_coding_system.
authorRichard M. Stallman <rms@gnu.org>
Fri, 8 May 1998 05:14:47 +0000 (05:14 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 8 May 1998 05:14:47 +0000 (05:14 +0000)
src/callproc.c

index e35b8274b7c5f5e0d339ad509eca0a208c10eeb5..f93d0160594d75ee1bee8d66e0bb0e60d3a7b325 100644 (file)
@@ -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;