From 0384b4b76dcae29a80bdf5a587bf73e2b61f5099 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 4 Aug 1997 06:59:57 +0000 Subject: [PATCH] (Fcall_process_region): Use cdr part (not car part) of Vdefault_process_coding_system for writing out text. --- src/callproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2