aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c
index 6de8dcd1ffe..e470757f92e 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -10831,6 +10831,7 @@ syms_of_coding (void)
10831 DEFSYM (Qundecided, "undecided"); 10831 DEFSYM (Qundecided, "undecided");
10832 DEFSYM (Qno_conversion, "no-conversion"); 10832 DEFSYM (Qno_conversion, "no-conversion");
10833 DEFSYM (Qraw_text, "raw-text"); 10833 DEFSYM (Qraw_text, "raw-text");
10834 DEFSYM (Qus_ascii, "us-ascii");
10834 10835
10835 DEFSYM (Qiso_2022, "iso-2022"); 10836 DEFSYM (Qiso_2022, "iso-2022");
10836 10837
@@ -11341,4 +11342,9 @@ reset_coding_after_pdumper_load (void)
11341 setup_coding_system (CODING_ID_NAME (id), this); 11342 setup_coding_system (CODING_ID_NAME (id), this);
11342 } 11343 }
11343 } 11344 }
11345 /* In temacs the below is done by mule-conf.el, because we need to
11346 define us-ascii first. But in dumped Emacs us-ascii is restored
11347 by the above loop, and mule-conf.el will not be loaded, so we set
11348 it up now; otherwise safe_terminal_coding will remain zeroed. */
11349 Fset_safe_terminal_coding_system_internal (Qus_ascii);
11344} 11350}