aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coding.h b/src/coding.h
index 58e12d6176a..e38c0ee3968 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -82,7 +82,7 @@ enum define_coding_ccl_arg_index
82 82
83enum define_coding_undecided_arg_index 83enum define_coding_undecided_arg_index
84 { 84 {
85 coding_arg_undecided_inhibit_null_byte_detection = coding_arg_max, 85 coding_arg_undecided_inhibit_nul_byte_detection = coding_arg_max,
86 coding_arg_undecided_inhibit_iso_escape_detection, 86 coding_arg_undecided_inhibit_iso_escape_detection,
87 coding_arg_undecided_prefer_utf_8, 87 coding_arg_undecided_prefer_utf_8,
88 coding_arg_undecided_max 88 coding_arg_undecided_max
@@ -137,7 +137,7 @@ enum coding_attr_index
137 137
138 coding_attr_emacs_mule_full, 138 coding_attr_emacs_mule_full,
139 139
140 coding_attr_undecided_inhibit_null_byte_detection, 140 coding_attr_undecided_inhibit_nul_byte_detection,
141 coding_attr_undecided_inhibit_iso_escape_detection, 141 coding_attr_undecided_inhibit_iso_escape_detection,
142 coding_attr_undecided_prefer_utf_8, 142 coding_attr_undecided_prefer_utf_8,
143 143
@@ -351,7 +351,7 @@ struct emacs_mule_spec
351 351
352struct undecided_spec 352struct undecided_spec
353{ 353{
354 /* Inhibit null byte detection. 1 means always inhibit, 354 /* Inhibit NUL byte detection. 1 means always inhibit,
355 -1 means do not inhibit, 0 means rely on user variable. */ 355 -1 means do not inhibit, 0 means rely on user variable. */
356 int inhibit_nbd; 356 int inhibit_nbd;
357 357