From: Kenichi Handa Date: Mon, 4 Aug 1997 06:59:57 +0000 (+0000) Subject: (Fcall_process_region): Use cdr part (not car part) X-Git-Tag: emacs-20.1~811 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0384b4b76dcae29a80bdf5a587bf73e2b61f5099;p=emacs.git (Fcall_process_region): Use cdr part (not car part) of Vdefault_process_coding_system for writing out text. --- diff --git a/src/callproc.c b/src/callproc.c index 63556f32667..292e9af3957 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -821,7 +821,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") if (CONSP (coding_systems)) val = XCONS (coding_systems)->cdr; else if (CONSP (Vdefault_process_coding_system)) - val = XCONS (Vdefault_process_coding_system)->car; + val = XCONS (Vdefault_process_coding_system)->cdr; else val = Qnil; }