]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_process_region): Fix previous change:
authorRichard M. Stallman <rms@gnu.org>
Sun, 7 Sep 1997 04:25:59 +0000 (04:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 7 Sep 1997 04:25:59 +0000 (04:25 +0000)
never override Vcoding_system_for_write.

src/callproc.c

index d876a4c17fbdf29538e8d7d8cb0f5c807b662ab0..08eb9331a37142a7ab03cc4f205169f8744b2fd6 100644 (file)
@@ -848,7 +848,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
       else
        val = intern ("undecided-dos");
     }
-  else if (SYMBOLP (val))
+  else if (SYMBOLP (val) && NILP (Vcoding_system_for_write))
     {
       Lisp_Object eolval;
       eolval = Fget (val, Qeol_type);