summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1998-06-26 04:13:40 +0000
committerKenichi Handa <handa@m17n.org>1998-06-26 04:13:40 +0000
commit77c070f379bfd0585a9697a6bb11f3dd3d354508 (patch)
tree0f84112ffa2814f48f3b79e0a55a70beda7d38b2
parent8f90191767f3960de4da62904a4fa752acf32ca5 (diff)
downloademacs-77c070f379bfd0585a9697a6bb11f3dd3d354508.tar.gz
(init_process): Initilize Vdefault_process_coding_system.
-rw-r--r--src/process.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c
index 73cf694e0be..c8ee4b96ea9 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4395,6 +4395,11 @@ init_process ()
}
bzero (proc_decode_coding_system, sizeof proc_decode_coding_system);
bzero (proc_encode_coding_system, sizeof proc_encode_coding_system);
+
+ Vdefault_process_coding_system
+ = (NILP (buffer_defaults.enable_multibyte_characters)
+ ? Fcons (Qraw_text, Qnil)
+ : Fcons (Qemacs_mule, Qnil));
}
void