diff src/callproc.c @ 19135:71a5378a1f06

(Fcall_process_region): Use cdr part (not car part) of Vdefault_process_coding_system for writing out text.
author Kenichi Handa <handa@m17n.org>
date Mon, 04 Aug 1997 06:59:57 +0000
parents b08145625f89
children 34057e215ab1
line wrap: on
line diff
--- a/src/callproc.c	Mon Aug 04 06:59:57 1997 +0000
+++ b/src/callproc.c	Mon Aug 04 06:59:57 1997 +0000
@@ -821,7 +821,7 @@
 	  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;
 	}