From: Kenichi Handa Date: Sat, 10 May 1997 03:37:01 +0000 (+0000) Subject: (Fcall_process_region): Supply 7th new arg X-Git-Tag: emacs-20.1~2216 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=69445b3bd47565ce54c5725ab1a74ca3943f2de4;p=emacs.git (Fcall_process_region): Supply 7th new arg CODING_SYSTEM as Qnil to Fwrite_region. --- diff --git a/src/callproc.c b/src/callproc.c index c4d631618e1..958ad19fb82 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -778,7 +778,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") val = CONSP (coding_systems) ? XCONS (coding_systems)->cdr : Qnil; } specbind (intern ("coding-system-for-write"), val); - Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil); + Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil); #ifdef DOS_NT if (NILP (Vbinary_process_input))