From: Richard M. Stallman Date: Sun, 7 Sep 1997 04:25:59 +0000 (+0000) Subject: (Fcall_process_region): Fix previous change: X-Git-Tag: emacs-20.1~158 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0f8b8c5063db021d99d53724d23fbe6c1c908c92;p=emacs.git (Fcall_process_region): Fix previous change: never override Vcoding_system_for_write. --- diff --git a/src/callproc.c b/src/callproc.c index d876a4c17fb..08eb9331a37 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -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);