]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_process_region): Use cdr part (not car part)
authorKenichi Handa <handa@m17n.org>
Mon, 4 Aug 1997 06:59:57 +0000 (06:59 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 4 Aug 1997 06:59:57 +0000 (06:59 +0000)
of Vdefault_process_coding_system for writing out text.

src/callproc.c

index 63556f326679f754400ba350d99eaf2cd94f72e7..292e9af395752cd0a23f35cd45c41725c015274e 100644 (file)
@@ -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;
        }