changeset 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 8fa6e23f8d22
children a036a16c0114
files src/callproc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;
 	}