aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
authorPaul Eggert2017-04-16 23:07:33 -0700
committerPaul Eggert2017-04-16 23:07:55 -0700
commit750721c3943e5837d7d9292d6462a144a49347c7 (patch)
tree3a05ce36d7a68c768ea646725026a44e3136f75f /src/coding.h
parent1cad61030160ebc4b73e1f4212155a180d417be3 (diff)
downloademacs-750721c3943e5837d7d9292d6462a144a49347c7.tar.gz
emacs-750721c3943e5837d7d9292d6462a144a49347c7.zip
Remove unused coding enums
* src/coding.h (enum coding_system_type, enum end_of_line_type): Remove; unused.
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/coding.h b/src/coding.h
index 7a1dd682b29..77f90ec9c15 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -96,39 +96,6 @@ enum define_coding_undecided_arg_index
96extern Lisp_Object Vcoding_system_hash_table; 96extern Lisp_Object Vcoding_system_hash_table;
97 97
98 98
99/* Enumeration of coding system type. */
100
101enum coding_system_type
102 {
103 coding_type_charset,
104 coding_type_utf_8,
105 coding_type_utf_16,
106 coding_type_iso_2022,
107 coding_type_emacs_mule,
108 coding_type_sjis,
109 coding_type_ccl,
110 coding_type_raw_text,
111 coding_type_undecided,
112 coding_type_max
113 };
114
115
116/* Enumeration of end-of-line format type. */
117
118enum end_of_line_type
119 {
120 eol_lf, /* Line-feed only, same as Emacs' internal
121 format. */
122 eol_crlf, /* Sequence of carriage-return and
123 line-feed. */
124 eol_cr, /* Carriage-return only. */
125 eol_any, /* Accept any of above. Produce line-feed
126 only. */
127 eol_undecided, /* This value is used to denote that the
128 eol-type is not yet undecided. */
129 eol_type_max
130 };
131
132/* Enumeration of index to an attribute vector of a coding system. */ 99/* Enumeration of index to an attribute vector of a coding system. */
133 100
134enum coding_attr_index 101enum coding_attr_index