Mercurial > emacs
annotate src/coding.h @ 90698:a31984e21969
(xfont_driver): Initialize ftfont_driver.type by 0.
(xfont_list): Don't directly use Lisp_Object as an operand of &&.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 29 Nov 2006 12:18:53 +0000 |
parents | 884c305a9799 |
children | 6588c6259dfb |
rev | line source |
---|---|
17052 | 1 /* Header for coding system handler. |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
67658
diff
changeset
|
2 Copyright (C) 2002, 2003, 2004, 2005, |
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
67658
diff
changeset
|
3 2006 Free Software Foundation, Inc. |
67658 | 4 Copyright (C) 1995, 1997, 1998, 2000 |
5 National Institute of Advanced Industrial Science and Technology (AIST) | |
6 Registration Number H14PRO021 | |
89483 | 7 Copyright (C) 2003 |
88365 | 8 National Institute of Advanced Industrial Science and Technology (AIST) |
9 Registration Number H13PRO009 | |
17052 | 10 |
17071 | 11 This file is part of GNU Emacs. |
12 | |
13 GNU Emacs is free software; you can redistribute it and/or modify | |
14 it under the terms of the GNU General Public License as published by | |
15 the Free Software Foundation; either version 2, or (at your option) | |
16 any later version. | |
17052 | 17 |
17071 | 18 GNU Emacs is distributed in the hope that it will be useful, |
19 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 GNU General Public License for more details. | |
17052 | 22 |
17071 | 23 You should have received a copy of the GNU General Public License |
24 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 25 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 Boston, MA 02110-1301, USA. */ | |
17052 | 27 |
29571
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
28 #ifndef EMACS_CODING_H |
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
29 #define EMACS_CODING_H |
17052 | 30 |
88365 | 31 /* Index to arguments of Fdefine_coding_system_internal. */ |
17052 | 32 |
88365 | 33 enum define_coding_system_arg_index |
17052 | 34 { |
88365 | 35 coding_arg_name, |
36 coding_arg_mnemonic, | |
37 coding_arg_coding_type, | |
38 coding_arg_charset_list, | |
39 coding_arg_ascii_compatible_p, | |
40 coding_arg_decode_translation_table, | |
41 coding_arg_encode_translation_table, | |
42 coding_arg_post_read_conversion, | |
43 coding_arg_pre_write_conversion, | |
44 coding_arg_default_char, | |
89483 | 45 coding_arg_for_unibyte, |
88365 | 46 coding_arg_plist, |
47 coding_arg_eol_type, | |
48 coding_arg_max | |
49 }; | |
50 | |
51 enum define_coding_iso2022_arg_index | |
52 { | |
53 coding_arg_iso2022_initial = coding_arg_max, | |
54 coding_arg_iso2022_reg_usage, | |
55 coding_arg_iso2022_request, | |
56 coding_arg_iso2022_flags, | |
57 coding_arg_iso2022_max | |
58 }; | |
17052 | 59 |
88365 | 60 enum define_coding_utf16_arg_index |
61 { | |
62 coding_arg_utf16_bom = coding_arg_max, | |
63 coding_arg_utf16_endian, | |
64 coding_arg_utf16_max | |
17052 | 65 }; |
66 | |
88365 | 67 enum define_coding_ccl_arg_index |
68 { | |
89372
95c081cdbd5f
(enum define_coding_ccl_arg_index): Set the first
Kenichi Handa <handa@m17n.org>
parents:
89330
diff
changeset
|
69 coding_arg_ccl_decoder = coding_arg_max, |
88365 | 70 coding_arg_ccl_encoder, |
71 coding_arg_ccl_valids, | |
72 coding_arg_ccl_max | |
73 }; | |
17052 | 74 |
89886 | 75 /* Hash table for all coding systems. Keys are coding system symbols |
76 and values are spec vectors of the corresponding coding system. A | |
77 spec vector has the form [ ATTRS ALIASES EOL-TYPE ]. ATTRS is a | |
78 vector of attribute of the coding system. ALIASES is a list of | |
79 aliases (symbols) of the coding system. EOL-TYPE is `unix', `dos', | |
80 `mac' or a vector of coding systems (symbols). */ | |
81 | |
88365 | 82 extern Lisp_Object Vcoding_system_hash_table; |
83 | |
89886 | 84 |
88365 | 85 /* Enumeration of coding system type. */ |
17052 | 86 |
88365 | 87 enum coding_system_type |
17052 | 88 { |
88365 | 89 coding_type_charset, |
90 coding_type_utf_8, | |
91 coding_type_utf_16, | |
92 coding_type_iso_2022, | |
93 coding_type_emacs_mule, | |
94 coding_type_sjis, | |
95 coding_type_ccl, | |
96 coding_type_raw_text, | |
97 coding_type_undecided, | |
98 coding_type_max | |
99 }; | |
100 | |
101 | |
102 /* Enumeration of end-of-line format type. */ | |
103 | |
104 enum end_of_line_type | |
105 { | |
106 eol_lf, /* Line-feed only, same as Emacs' internal | |
107 format. */ | |
108 eol_crlf, /* Sequence of carriage-return and | |
109 line-feed. */ | |
110 eol_cr, /* Carriage-return only. */ | |
111 eol_any, /* Accept any of above. Produce line-feed | |
112 only. */ | |
113 eol_undecided, /* This value is used to denote that the | |
114 eol-type is not yet undecided. */ | |
115 eol_type_max | |
17052 | 116 }; |
117 | |
88365 | 118 /* Enumeration of index to an attribute vector of a coding system. */ |
17052 | 119 |
88365 | 120 enum coding_attr_index |
121 { | |
122 coding_attr_base_name, | |
123 coding_attr_docstring, | |
124 coding_attr_mnemonic, | |
125 coding_attr_type, | |
126 coding_attr_charset_list, | |
127 coding_attr_ascii_compat, | |
128 coding_attr_decode_tbl, | |
129 coding_attr_encode_tbl, | |
89733
d001bbbe12ce
(enum coding_attr_index): New member coding_attr_trans_tbl.
Kenichi Handa <handa@m17n.org>
parents:
89685
diff
changeset
|
130 coding_attr_trans_tbl, |
88365 | 131 coding_attr_post_read, |
132 coding_attr_pre_write, | |
133 coding_attr_default_char, | |
89483 | 134 coding_attr_for_unibyte, |
88365 | 135 coding_attr_plist, |
17052 | 136 |
88365 | 137 coding_attr_category, |
138 coding_attr_safe_charsets, | |
17052 | 139 |
88365 | 140 /* The followings are extra attributes for each type. */ |
141 coding_attr_charset_valids, | |
17052 | 142 |
88365 | 143 coding_attr_ccl_decoder, |
144 coding_attr_ccl_encoder, | |
145 coding_attr_ccl_valids, | |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
146 |
88365 | 147 coding_attr_iso_initial, |
148 coding_attr_iso_usage, | |
149 coding_attr_iso_request, | |
150 coding_attr_iso_flags, | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
151 |
88365 | 152 coding_attr_utf_16_bom, |
153 coding_attr_utf_16_endian, | |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
154 |
88365 | 155 coding_attr_emacs_mule_full, |
156 | |
157 coding_attr_last_index | |
17052 | 158 }; |
159 | |
160 | |
89886 | 161 /* Macros to access an element of an attribute vector. */ |
17052 | 162 |
88365 | 163 #define CODING_ATTR_BASE_NAME(attrs) AREF (attrs, coding_attr_base_name) |
164 #define CODING_ATTR_TYPE(attrs) AREF (attrs, coding_attr_type) | |
165 #define CODING_ATTR_CHARSET_LIST(attrs) AREF (attrs, coding_attr_charset_list) | |
166 #define CODING_ATTR_MNEMONIC(attrs) AREF (attrs, coding_attr_mnemonic) | |
167 #define CODING_ATTR_DOCSTRING(attrs) AREF (attrs, coding_attr_docstring) | |
168 #define CODING_ATTR_ASCII_COMPAT(attrs) AREF (attrs, coding_attr_ascii_compat) | |
169 #define CODING_ATTR_DECODE_TBL(attrs) AREF (attrs, coding_attr_decode_tbl) | |
170 #define CODING_ATTR_ENCODE_TBL(attrs) AREF (attrs, coding_attr_encode_tbl) | |
89733
d001bbbe12ce
(enum coding_attr_index): New member coding_attr_trans_tbl.
Kenichi Handa <handa@m17n.org>
parents:
89685
diff
changeset
|
171 #define CODING_ATTR_TRANS_TBL(attrs) AREF (attrs, coding_attr_trans_tbl) |
88365 | 172 #define CODING_ATTR_POST_READ(attrs) AREF (attrs, coding_attr_post_read) |
173 #define CODING_ATTR_PRE_WRITE(attrs) AREF (attrs, coding_attr_pre_write) | |
174 #define CODING_ATTR_DEFAULT_CHAR(attrs) AREF (attrs, coding_attr_default_char) | |
89483 | 175 #define CODING_ATTR_FOR_UNIBYTE(attrs) AREF (attrs, coding_attr_for_unibyte) |
88365 | 176 #define CODING_ATTR_FLUSHING(attrs) AREF (attrs, coding_attr_flushing) |
177 #define CODING_ATTR_PLIST(attrs) AREF (attrs, coding_attr_plist) | |
178 #define CODING_ATTR_CATEGORY(attrs) AREF (attrs, coding_attr_category) | |
179 #define CODING_ATTR_SAFE_CHARSETS(attrs)AREF (attrs, coding_attr_safe_charsets) | |
17052 | 180 |
181 | |
89886 | 182 /* Return the name of a coding system specified by ID. */ |
183 #define CODING_ID_NAME(id) \ | |
184 (HASH_KEY (XHASH_TABLE (Vcoding_system_hash_table), id)) | |
185 | |
186 /* Return the attribute vector of a coding system specified by ID. */ | |
17052 | 187 |
88365 | 188 #define CODING_ID_ATTRS(id) \ |
189 (AREF (HASH_VALUE (XHASH_TABLE (Vcoding_system_hash_table), id), 0)) | |
19284
dd1d7096f59d
(struct iso2022_spec): New member expected_charsets.
Kenichi Handa <handa@m17n.org>
parents:
19279
diff
changeset
|
190 |
89886 | 191 /* Return the list of aliases of a coding system specified by ID. */ |
192 | |
88365 | 193 #define CODING_ID_ALIASES(id) \ |
194 (AREF (HASH_VALUE (XHASH_TABLE (Vcoding_system_hash_table), id), 1)) | |
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
195 |
89886 | 196 /* Return the eol-type of a coding system specified by ID. */ |
197 | |
88365 | 198 #define CODING_ID_EOL_TYPE(id) \ |
199 (AREF (HASH_VALUE (XHASH_TABLE (Vcoding_system_hash_table), id), 2)) | |
200 | |
89886 | 201 |
202 /* Return the spec vector of CODING_SYSTEM_SYMBOL. */ | |
17052 | 203 |
88365 | 204 #define CODING_SYSTEM_SPEC(coding_system_symbol) \ |
205 (Fgethash (coding_system_symbol, Vcoding_system_hash_table, Qnil)) | |
206 | |
89886 | 207 |
208 /* Return the ID of CODING_SYSTEM_SYMBOL. */ | |
17052 | 209 |
88365 | 210 #define CODING_SYSTEM_ID(coding_system_symbol) \ |
211 hash_lookup (XHASH_TABLE (Vcoding_system_hash_table), \ | |
212 coding_system_symbol, NULL) | |
213 | |
89886 | 214 /* Return 1 iff CODING_SYSTEM_SYMBOL is a coding system. */ |
17052 | 215 |
90270
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
216 #define CODING_SYSTEM_P(coding_system_symbol) \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
217 (CODING_SYSTEM_ID (coding_system_symbol) >= 0 \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
218 || (! NILP (coding_system_symbol) \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
219 && ! NILP (Fcoding_system_p (coding_system_symbol)))) |
88365 | 220 |
89886 | 221 /* Check if X is a coding system or not. */ |
222 | |
89483 | 223 #define CHECK_CODING_SYSTEM(x) \ |
88365 | 224 do { \ |
90270
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
225 if (CODING_SYSTEM_ID (x) < 0 \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
226 && NILP (Fcheck_coding_system (x))) \ |
89483 | 227 wrong_type_argument (Qcoding_system_p, (x)); \ |
88365 | 228 } while (0) |
229 | |
17052 | 230 |
89886 | 231 /* Check if X is a coding system or not. If it is, set SEPC to the |
232 spec vector of the coding system. */ | |
233 | |
88365 | 234 #define CHECK_CODING_SYSTEM_GET_SPEC(x, spec) \ |
235 do { \ | |
236 spec = CODING_SYSTEM_SPEC (x); \ | |
237 if (NILP (spec)) \ | |
90270
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
238 { \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
239 Fcheck_coding_system (x); \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
240 spec = CODING_SYSTEM_SPEC (x); \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
241 } \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
242 if (NILP (spec)) \ |
88365 | 243 x = wrong_type_argument (Qcoding_system_p, (x)); \ |
244 } while (0) | |
245 | |
18001
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
246 |
89886 | 247 /* Check if X is a coding system or not. If it is, set ID to the |
248 ID of the coding system. */ | |
249 | |
88365 | 250 #define CHECK_CODING_SYSTEM_GET_ID(x, id) \ |
251 do \ | |
252 { \ | |
253 id = CODING_SYSTEM_ID (x); \ | |
254 if (id < 0) \ | |
90270
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
255 { \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
256 Fcheck_coding_system (x); \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
257 id = CODING_SYSTEM_ID (x); \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
258 } \ |
e7efdba36b32
(CODING_SYSTEM_P): If ID is not available, call
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
259 if (id < 0) \ |
88365 | 260 x = wrong_type_argument (Qcoding_system_p, (x)); \ |
261 } while (0) | |
17052 | 262 |
263 | |
264 /*** GENERAL section ***/ | |
265 | |
88365 | 266 /* Enumeration of result code of code conversion. */ |
267 enum coding_result_code | |
17052 | 268 { |
88365 | 269 CODING_RESULT_SUCCESS, |
270 CODING_RESULT_INSUFFICIENT_SRC, | |
271 CODING_RESULT_INSUFFICIENT_DST, | |
272 CODING_RESULT_INCONSISTENT_EOL, | |
89685
8970a5ea5efc
(enum coding_result_code): Delete
Kenichi Handa <handa@m17n.org>
parents:
89666
diff
changeset
|
273 CODING_RESULT_INVALID_SRC, |
88365 | 274 CODING_RESULT_INTERRUPT, |
275 CODING_RESULT_INSUFFICIENT_MEM | |
17052 | 276 }; |
277 | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
278 |
21031 | 279 /* Macros used for the member `mode' of the struct coding_system. */ |
17052 | 280 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
281 /* If set, recover the original CR or LF of the already decoded text |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
282 when the decoding routine encounters an inconsistent eol format. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
283 #define CODING_MODE_INHIBIT_INCONSISTENT_EOL 0x01 |
17052 | 284 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
285 /* If set, the decoding/encoding routines treat the current data as |
89172 | 286 the last block of the whole text to be converted, and do the |
287 appropriate finishing job. */ | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
288 #define CODING_MODE_LAST_BLOCK 0x02 |
17052 | 289 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
290 /* If set, it means that the current source text is in a buffer which |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
291 enables selective display. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
292 #define CODING_MODE_SELECTIVE_DISPLAY 0x04 |
17052 | 293 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
294 /* This flag is used by the decoding/encoding routines on the fly. If |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
295 set, it means that right-to-left text is being processed. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
296 #define CODING_MODE_DIRECTION 0x08 |
17052 | 297 |
88365 | 298 #define CODING_MODE_FIXED_DESTINATION 0x10 |
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
299 |
89886 | 300 /* If set, it means that the encoding routines produces some safe |
301 ASCII characters (usually '?') for unsupported characters. */ | |
88365 | 302 #define CODING_MODE_SAFE_ENCODING 0x20 |
19364
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
303 |
88365 | 304 /* Structure of the field `spec.iso_2022' in the structure |
305 `coding_system'. */ | |
306 struct iso_2022_spec | |
307 { | |
88688 | 308 /* Bit-wise-or of CODING_ISO_FLAG_XXX. */ |
88365 | 309 unsigned flags; |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
310 |
17052 | 311 /* The current graphic register invoked to each graphic plane. */ |
312 int current_invocation[2]; | |
313 | |
88365 | 314 /* The current charset designated to each graphic register. The |
315 value -1 means that not charset is designated, -2 means that | |
316 there was an invalid designation previously. */ | |
17052 | 317 int current_designation[4]; |
318 | |
319 /* Set to 1 temporarily only when graphic register 2 or 3 is invoked | |
320 by single-shift while encoding. */ | |
321 int single_shifting; | |
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
322 |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
323 /* Set to 1 temporarily only when processing at beginning of line. */ |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
324 int bol; |
17052 | 325 }; |
326 | |
88365 | 327 struct ccl_spec; |
17052 | 328 |
88365 | 329 enum utf_16_bom_type |
17052 | 330 { |
88365 | 331 utf_16_detect_bom, |
332 utf_16_without_bom, | |
333 utf_16_with_bom | |
334 }; | |
335 | |
336 enum utf_16_endian_type | |
337 { | |
338 utf_16_big_endian, | |
339 utf_16_little_endian | |
17052 | 340 }; |
341 | |
88365 | 342 struct utf_16_spec |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
343 { |
88365 | 344 enum utf_16_bom_type bom; |
345 enum utf_16_endian_type endian; | |
346 int surrogate; | |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
347 }; |
17052 | 348 |
89330
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
349 struct coding_detection_info |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
350 { |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
351 /* Values of these members are bitwise-OR of CATEGORY_MASK_XXXs. */ |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
352 /* Which categories are already checked. */ |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
353 int checked; |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
354 /* Which categories are strongly found. */ |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
355 int found; |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
356 /* Which categories are rejected. */ |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
357 int rejected; |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
358 }; |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
359 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
360 |
17052 | 361 struct coding_system |
362 { | |
88365 | 363 /* ID number of the coding system. This is an index to |
364 Vcoding_system_hash_table. This value is set by | |
365 setup_coding_system. At the early stage of building time, this | |
366 value is -1 in the array coding_categories to indicate that no | |
367 coding-system of that category is yet defined. */ | |
368 int id; | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
369 |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
370 /* Flag bits of the coding system. The meaning of each bit is common |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
371 to all types of coding systems. */ |
88365 | 372 int common_flags; |
17052 | 373 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
374 /* Mode bits of the coding system. See the comments of the macros |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
375 CODING_MODE_XXX. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
376 unsigned int mode; |
17052 | 377 |
378 /* Detailed information specific to each type of coding system. */ | |
88365 | 379 union |
17052 | 380 { |
88365 | 381 struct iso_2022_spec iso_2022; |
382 struct ccl_spec *ccl; /* Defined in ccl.h. */ | |
383 struct utf_16_spec utf_16; | |
384 int emacs_mule_full_support; | |
17052 | 385 } spec; |
386 | |
88365 | 387 int max_charset_id; |
388 char *safe_charsets; | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
389 |
88365 | 390 /* The following two members specify how binary 8-bit code 128..255 |
391 are represented in source and destination text respectively. 1 | |
392 means they are represented by 2-byte sequence, 0 means they are | |
393 represented by 1-byte as is (see the comment in character.h). */ | |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
394 unsigned src_multibyte : 1; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
395 unsigned dst_multibyte : 1; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
396 |
21320
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
397 /* How may heading bytes we can skip for decoding. This is set to |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
398 -1 in setup_coding_system, and updated by detect_coding. So, |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
399 when this is equal to the byte length of the text being |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
400 converted, we can skip the actual conversion process. */ |
88365 | 401 int head_ascii; |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
402 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
403 /* The following members are set by encoding/decoding routine. */ |
88365 | 404 EMACS_INT produced, produced_char, consumed, consumed_char; |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
405 |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
406 /* Number of error source data found in a decoding routine. */ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
407 int errors; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
408 |
88365 | 409 /* Store the positions of error source data. */ |
410 EMACS_INT *error_positions; | |
20930
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
411 |
88365 | 412 /* Finish status of code conversion. */ |
413 enum coding_result_code result; | |
35530
cb627d09f8c3
(struct coding_system): New member suppress_error.
Kenichi Handa <handa@m17n.org>
parents:
34152
diff
changeset
|
414 |
88365 | 415 EMACS_INT src_pos, src_pos_byte, src_chars, src_bytes; |
416 Lisp_Object src_object; | |
89483 | 417 const unsigned char *source; |
20930
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
418 |
88365 | 419 EMACS_INT dst_pos, dst_pos_byte, dst_bytes; |
420 Lisp_Object dst_object; | |
421 unsigned char *destination; | |
35530
cb627d09f8c3
(struct coding_system): New member suppress_error.
Kenichi Handa <handa@m17n.org>
parents:
34152
diff
changeset
|
422 |
89886 | 423 /* Set to 1 iff the source of conversion is not in the member |
424 `charbuf', but at `src_object'. */ | |
88365 | 425 int chars_at_source; |
426 | |
427 /* If an element is non-negative, it is a character code. | |
428 | |
429 If it is in the range -128..-1, it is a 8-bit character code | |
430 minus 256. | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
431 |
88365 | 432 If it is less than -128, it specifies the start of an annotation |
433 chunk. The length of the chunk is -128 minus the value of the | |
434 element. The following elements are OFFSET, ANNOTATION-TYPE, and | |
435 a sequence of actual data for the annotation. OFFSET is a | |
436 character position offset from dst_pos or src_pos, | |
437 ANNOTATION-TYPE specfies the meaning of the annotation and how to | |
438 handle the following data.. */ | |
439 int *charbuf; | |
440 int charbuf_size, charbuf_used; | |
17052 | 441 |
88365 | 442 /* Set to 1 if charbuf contains an annotation. */ |
443 int annotated; | |
444 | |
445 unsigned char carryover[64]; | |
446 int carryover_bytes; | |
17052 | 447 |
88365 | 448 int default_char; |
449 | |
89330
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
450 int (*detector) P_ ((struct coding_system *, |
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
451 struct coding_detection_info *)); |
88365 | 452 void (*decoder) P_ ((struct coding_system *)); |
453 int (*encoder) P_ ((struct coding_system *)); | |
17052 | 454 }; |
455 | |
88365 | 456 /* Meanings of bits in the member `common_flags' of the structure |
457 coding_system. The lowest 8 bits are reserved for various kind of | |
458 annotations (currently two of them are used). */ | |
459 #define CODING_ANNOTATION_MASK 0x00FF | |
460 #define CODING_ANNOTATE_COMPOSITION_MASK 0x0001 | |
461 #define CODING_ANNOTATE_DIRECTION_MASK 0x0002 | |
89330
ee0338e83a2b
(struct coding_detection_info): New structure.
Kenichi Handa <handa@m17n.org>
parents:
89172
diff
changeset
|
462 #define CODING_ANNOTATE_CHARSET_MASK 0x0003 |
88365 | 463 #define CODING_FOR_UNIBYTE_MASK 0x0100 |
464 #define CODING_REQUIRE_FLUSHING_MASK 0x0200 | |
465 #define CODING_REQUIRE_DECODING_MASK 0x0400 | |
466 #define CODING_REQUIRE_ENCODING_MASK 0x0800 | |
467 #define CODING_REQUIRE_DETECTION_MASK 0x1000 | |
468 #define CODING_RESET_AT_BOL_MASK 0x2000 | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
469 |
88365 | 470 /* Return 1 if the coding context CODING requires annotaion |
471 handling. */ | |
472 #define CODING_REQUIRE_ANNOTATION(coding) \ | |
473 ((coding)->common_flags & CODING_ANNOTATION_MASK) | |
474 | |
475 /* Return 1 if the coding context CODING prefers decoding into unibyte. */ | |
476 #define CODING_FOR_UNIBYTE(coding) \ | |
477 ((coding)->common_flags & CODING_FOR_UNIBYTE_MASK) | |
478 | |
479 /* Return 1 if the coding context CODING requires specific code to be | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
480 attached at the tail of converted text. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
481 #define CODING_REQUIRE_FLUSHING(coding) \ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
482 ((coding)->common_flags & CODING_REQUIRE_FLUSHING_MASK) |
17052 | 483 |
88365 | 484 /* Return 1 if the coding context CODING requires code conversion on |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
485 decoding. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
486 #define CODING_REQUIRE_DECODING(coding) \ |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
487 ((coding)->dst_multibyte \ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
488 || (coding)->common_flags & CODING_REQUIRE_DECODING_MASK) |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
489 |
88365 | 490 |
491 /* Return 1 if the coding context CODING requires code conversion on | |
90431
884c305a9799
(CODING_REQUIRE_ENCODING): Comment sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90395
diff
changeset
|
492 encoding. |
884c305a9799
(CODING_REQUIRE_ENCODING): Comment sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90395
diff
changeset
|
493 The non-multibyte part of the condition is to support encoding of |
884c305a9799
(CODING_REQUIRE_ENCODING): Comment sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90395
diff
changeset
|
494 unibyte strings/buffers generated by string-as-unibyte or |
884c305a9799
(CODING_REQUIRE_ENCODING): Comment sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90395
diff
changeset
|
495 (set-buffer-multibyte nil) from multibyte strings/buffers. */ |
88365 | 496 #define CODING_REQUIRE_ENCODING(coding) \ |
497 ((coding)->src_multibyte \ | |
498 || (coding)->common_flags & CODING_REQUIRE_ENCODING_MASK \ | |
499 || (coding)->mode & CODING_MODE_SELECTIVE_DISPLAY) | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
500 |
88365 | 501 |
502 /* Return 1 if the coding context CODING requires some kind of code | |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
503 detection. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
504 #define CODING_REQUIRE_DETECTION(coding) \ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
505 ((coding)->common_flags & CODING_REQUIRE_DETECTION_MASK) |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
506 |
88365 | 507 /* Return 1 if the coding context CODING requires code conversion on |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
508 decoding or some kind of code detection. */ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
509 #define CODING_MAY_REQUIRE_DECODING(coding) \ |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
510 (CODING_REQUIRE_DECODING (coding) \ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
511 || CODING_REQUIRE_DETECTION (coding)) |
17052 | 512 |
513 /* Macros to decode or encode a character of JISX0208 in SJIS. S1 and | |
514 S2 are the 1st and 2nd position-codes of JISX0208 in SJIS coding | |
515 system. C1 and C2 are the 1st and 2nd position codes of Emacs' | |
516 internal format. */ | |
517 | |
88365 | 518 #define SJIS_TO_JIS(code) \ |
519 do { \ | |
520 int s1, s2, j1, j2; \ | |
521 \ | |
522 s1 = (code) >> 8, s2 = (code) & 0xFF; \ | |
523 \ | |
524 if (s2 >= 0x9F) \ | |
525 (j1 = s1 * 2 - (s1 >= 0xE0 ? 0x160 : 0xE0), \ | |
526 j2 = s2 - 0x7E); \ | |
527 else \ | |
528 (j1 = s1 * 2 - ((s1 >= 0xE0) ? 0x161 : 0xE1), \ | |
529 j2 = s2 - ((s2 >= 0x7F) ? 0x20 : 0x1F)); \ | |
530 (code) = (j1 << 8) | j2; \ | |
17052 | 531 } while (0) |
532 | |
89765
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
533 #define SJIS_TO_JIS2(code) \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
534 do { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
535 int s1, s2, j1, j2; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
536 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
537 s1 = (code) >> 8, s2 = (code) & 0xFF; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
538 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
539 if (s2 >= 0x9F) \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
540 { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
541 j1 = (s1 == 0xF0 ? 0x28 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
542 : s1 == 0xF1 ? 0x24 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
543 : s1 == 0xF2 ? 0x2C \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
544 : s1 == 0xF3 ? 0x2E \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
545 : 0x6E + (s1 - 0xF4) * 2); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
546 j2 = s2 - 0x7E; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
547 } \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
548 else \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
549 { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
550 j1 = (s1 <= 0xF2 ? 0x21 + (s1 - 0xF0) * 2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
551 : s1 <= 0xF4 ? 0x2D + (s1 - 0xF3) * 2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
552 : 0x6F + (s1 - 0xF5) * 2); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
553 j2 = s2 - ((s2 >= 0x7F ? 0x20 : 0x1F)); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
554 } \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
555 (code) = (j1 << 8) | j2; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
556 } while (0) |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
557 |
88365 | 558 |
559 #define JIS_TO_SJIS(code) \ | |
17052 | 560 do { \ |
88365 | 561 int s1, s2, j1, j2; \ |
562 \ | |
563 j1 = (code) >> 8, j2 = (code) & 0xFF; \ | |
564 if (j1 & 1) \ | |
565 (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x71 : 0xB1), \ | |
566 s2 = j2 + ((j2 >= 0x60) ? 0x20 : 0x1F)); \ | |
17052 | 567 else \ |
88365 | 568 (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x70 : 0xB0), \ |
569 s2 = j2 + 0x7E); \ | |
88498
1dd66ce3fc9c
(JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
570 (code) = (s1 << 8) | s2; \ |
17052 | 571 } while (0) |
572 | |
89765
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
573 #define JIS_TO_SJIS2(code) \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
574 do { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
575 int s1, s2, j1, j2; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
576 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
577 j1 = (code) >> 8, j2 = (code) & 0xFF; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
578 if (j1 & 1) \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
579 { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
580 s1 = (j1 <= 0x25 ? 0xF0 + (j1 - 0x21) / 2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
581 : j1 <= 0x27 ? 0xF3 + (j1 - 0x2D) / 2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
582 : 0xF5 + (j1 - 0x6F) / 2); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
583 s2 = j2 + ((j2 >= 0x60) ? 0x20 : 0x1F); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
584 } \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
585 else \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
586 { \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
587 s1 = (j1 == 0x28 ? 0xF0 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
588 : j1 == 0x24 ? 0xF1 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
589 : j1 == 0x2C ? 0xF2 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
590 : j1 == 0x2E ? 0xF3 \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
591 : 0xF4 + (j1 - 0x6E) / 2); \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
592 s2 = j2 + 0x7E; \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
593 } \ |
b06a8c2162e5
(SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
Kenichi Handa <handa@m17n.org>
parents:
89733
diff
changeset
|
594 (code) = (s1 << 8) | s2; \ |
17052 | 595 } while (0) |
596 | |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
597 /* Encode the file name NAME using the specified coding system |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
598 for file names, if any. */ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
599 #define ENCODE_FILE(name) \ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
600 (! NILP (Vfile_name_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
601 && !EQ (Vfile_name_coding_system, make_number (0)) \ |
22342 | 602 ? code_convert_string_norecord (name, Vfile_name_coding_system, 1) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
603 : (! NILP (Vdefault_file_name_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
604 && !EQ (Vdefault_file_name_coding_system, make_number (0)) \ |
22342 | 605 ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 1) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
606 : name)) |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
607 |
88365 | 608 |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
609 /* Decode the file name NAME using the specified coding system |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
610 for file names, if any. */ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
611 #define DECODE_FILE(name) \ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
612 (! NILP (Vfile_name_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
613 && !EQ (Vfile_name_coding_system, make_number (0)) \ |
22342 | 614 ? code_convert_string_norecord (name, Vfile_name_coding_system, 0) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
615 : (! NILP (Vdefault_file_name_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
616 && !EQ (Vdefault_file_name_coding_system, make_number (0)) \ |
22342 | 617 ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 0) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
618 : name)) |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
619 |
88365 | 620 |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
621 /* Encode the string STR using the specified coding system |
60657
aa6d20307ac6
(ENCODE_SYSTEM, DECODE_SYSTEM) [!WINDOWSNT]: Use the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58636
diff
changeset
|
622 for system functions, if any. */ |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
623 #define ENCODE_SYSTEM(str) \ |
41323
084520255528
(Vw32_system_coding_system) [WINDOWSNT]: Remove.
Jason Rumney <jasonr@gnu.org>
parents:
39574
diff
changeset
|
624 (! NILP (Vlocale_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
625 && !EQ (Vlocale_coding_system, make_number (0)) \ |
41323
084520255528
(Vw32_system_coding_system) [WINDOWSNT]: Remove.
Jason Rumney <jasonr@gnu.org>
parents:
39574
diff
changeset
|
626 ? code_convert_string_norecord (str, Vlocale_coding_system, 1) \ |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
627 : str) |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
628 |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
629 /* Decode the string STR using the specified coding system |
60657
aa6d20307ac6
(ENCODE_SYSTEM, DECODE_SYSTEM) [!WINDOWSNT]: Use the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58636
diff
changeset
|
630 for system functions, if any. */ |
66463
e791e75479c9
(DECODE_SYSTEM): Fix argument name; name->str.
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
631 #define DECODE_SYSTEM(str) \ |
41323
084520255528
(Vw32_system_coding_system) [WINDOWSNT]: Remove.
Jason Rumney <jasonr@gnu.org>
parents:
39574
diff
changeset
|
632 (! NILP (Vlocale_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
633 && !EQ (Vlocale_coding_system, make_number (0)) \ |
41323
084520255528
(Vw32_system_coding_system) [WINDOWSNT]: Remove.
Jason Rumney <jasonr@gnu.org>
parents:
39574
diff
changeset
|
634 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \ |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
635 : str) |
39574
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
636 |
89506 | 637 /* Used by the gtk menu code. Note that this encodes utf-8, not |
638 utf-8-emacs, so it's not a no-op. */ | |
51407 | 639 #define ENCODE_UTF_8(str) code_convert_string_norecord (str, Qutf_8, 1) |
640 | |
17052 | 641 /* Extern declarations. */ |
89666
7d38a63951c0
(make_conversion_work_buffer): Delete extern.
Kenichi Handa <handa@m17n.org>
parents:
89506
diff
changeset
|
642 extern Lisp_Object code_conversion_save P_ ((int, int)); |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
643 extern int decoding_buffer_size P_ ((struct coding_system *, int)); |
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
644 extern int encoding_buffer_size P_ ((struct coding_system *, int)); |
88365 | 645 extern void setup_coding_system P_ ((Lisp_Object, struct coding_system *)); |
90060
637c6bc8a26f
(coding_charset_list): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
646 extern Lisp_Object coding_charset_list P_ ((struct coding_system *)); |
88365 | 647 extern void detect_coding P_ ((struct coding_system *)); |
88848
a55219c46b8c
(code_convert_region): Fix prototype.
Dave Love <fx@gnu.org>
parents:
88688
diff
changeset
|
648 extern Lisp_Object code_convert_region P_ ((Lisp_Object, Lisp_Object, |
88365 | 649 Lisp_Object, Lisp_Object, |
650 int, int)); | |
651 extern Lisp_Object code_convert_string P_ ((Lisp_Object, Lisp_Object, | |
652 Lisp_Object, int, int, int)); | |
29438
8c825a8566f5
Declare code_convert_string_norecord.
Dave Love <fx@gnu.org>
parents:
29310
diff
changeset
|
653 extern Lisp_Object code_convert_string_norecord P_ ((Lisp_Object, Lisp_Object, |
8c825a8566f5
Declare code_convert_string_norecord.
Dave Love <fx@gnu.org>
parents:
29310
diff
changeset
|
654 int)); |
88365 | 655 extern Lisp_Object raw_text_coding_system P_ ((Lisp_Object)); |
656 extern Lisp_Object coding_inherit_eol_type P_ ((Lisp_Object, Lisp_Object)); | |
657 | |
658 extern int decode_coding_gap P_ ((struct coding_system *, | |
659 EMACS_INT, EMACS_INT)); | |
660 extern int encode_coding_gap P_ ((struct coding_system *, | |
661 EMACS_INT, EMACS_INT)); | |
662 extern void decode_coding_object P_ ((struct coding_system *, | |
663 Lisp_Object, EMACS_INT, EMACS_INT, | |
664 EMACS_INT, EMACS_INT, Lisp_Object)); | |
665 extern void encode_coding_object P_ ((struct coding_system *, | |
666 Lisp_Object, EMACS_INT, EMACS_INT, | |
667 EMACS_INT, EMACS_INT, Lisp_Object)); | |
668 | |
89886 | 669 /* Macros for backward compatibility. */ |
670 | |
88365 | 671 #define decode_coding_region(coding, from, to) \ |
672 decode_coding_object (coding, Fcurrent_buffer (), \ | |
673 from, CHAR_TO_BYTE (from), \ | |
674 to, CHAR_TO_BYTE (to), Fcurrent_buffer ()) | |
675 | |
676 | |
677 #define encode_coding_region(coding, from, to) \ | |
678 encode_coding_object (coding, Fcurrent_buffer (), \ | |
679 from, CHAR_TO_BYTE (from), \ | |
680 to, CHAR_TO_BYTE (to), Fcurrent_buffer ()) | |
681 | |
682 | |
683 #define decode_coding_string(coding, string, nocopy) \ | |
684 decode_coding_object (coding, string, 0, 0, XSTRING (string)->size, \ | |
685 STRING_BYTES (XSTRING (string)), Qt) | |
686 | |
687 #define encode_coding_string(coding, string, nocopy) \ | |
688 (encode_coding_object (coding, string, 0, 0, XSTRING (string)->size, \ | |
689 STRING_BYTES (XSTRING (string)), Qt), \ | |
690 (coding)->dst_object) | |
691 | |
692 | |
693 #define decode_coding_c_string(coding, src, bytes, dst_object) \ | |
694 do { \ | |
695 (coding)->source = (src); \ | |
696 (coding)->src_chars = (coding)->src_bytes = (bytes); \ | |
697 decode_coding_object ((coding), Qnil, 0, 0, (bytes), (bytes), \ | |
698 (dst_object)); \ | |
699 } while (0) | |
700 | |
701 | |
702 extern Lisp_Object preferred_coding_system P_ (()); | |
703 | |
704 | |
89483 | 705 extern Lisp_Object Qutf_8, Qutf_8_emacs; |
706 | |
17052 | 707 extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; |
88365 | 708 extern Lisp_Object Qcoding_system_p; |
709 extern Lisp_Object Qraw_text, Qemacs_mule, Qno_conversion, Qundecided; | |
710 extern Lisp_Object Qiso_2022; | |
17052 | 711 extern Lisp_Object Qbuffer_file_coding_system; |
88365 | 712 |
713 extern Lisp_Object Qunix, Qdos, Qmac; | |
17052 | 714 |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
715 extern Lisp_Object Qtranslation_table; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
716 extern Lisp_Object Qtranslation_table_id; |
22118
42e2ffa98618
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21901
diff
changeset
|
717 |
24201
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
718 /* Mnemonic strings to indicate each type of end-of-line. */ |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
719 extern Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
720 /* Mnemonic string to indicate type of end-of-line is not yet decided. */ |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
721 extern Lisp_Object eol_mnemonic_undecided; |
17052 | 722 |
723 #ifdef emacs | |
724 extern Lisp_Object Qfile_coding_system; | |
64251
3de1b955c31a
* coding.c (Qprocess_argument):
Kim F. Storm <storm@cua.dk>
parents:
64084
diff
changeset
|
725 extern Lisp_Object Qcall_process, Qcall_process_region; |
17052 | 726 extern Lisp_Object Qstart_process, Qopen_network_stream; |
34107
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
727 extern Lisp_Object Qwrite_region; |
17052 | 728 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
729 extern char *emacs_strerror P_ ((int)); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
730 |
17052 | 731 /* Coding-system for reading files and receiving data from process. */ |
732 extern Lisp_Object Vcoding_system_for_read; | |
733 /* Coding-system for writing files and sending data to process. */ | |
734 extern Lisp_Object Vcoding_system_for_write; | |
735 /* Coding-system actually used in the latest I/O. */ | |
736 extern Lisp_Object Vlast_coding_system_used; | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
737 /* Coding-system to use with system messages (e.g. strerror). */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
738 extern Lisp_Object Vlocale_coding_system; |
17052 | 739 |
21573
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
740 /* If non-zero, process buffer inherits the coding system used to decode |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
741 the subprocess output. */ |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
742 extern int inherit_process_coding_system; |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
743 |
17052 | 744 /* Coding-system to be used for encoding terminal output. This |
745 structure contains information of a coding-system specified by the | |
746 function `set-terminal-coding-system'. */ | |
747 extern struct coding_system terminal_coding; | |
748 | |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
749 /* Coding system to be used to encode text for terminal display when |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
750 terminal coding system is nil. */ |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
751 extern struct coding_system safe_terminal_coding; |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
752 |
17052 | 753 /* Coding-system of what is sent from terminal keyboard. This |
754 structure contains information of a coding-system specified by the | |
755 function `set-keyboard-coding-system'. */ | |
756 extern struct coding_system keyboard_coding; | |
757 | |
18181
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
758 /* Default coding systems used for process I/O. */ |
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
759 extern Lisp_Object Vdefault_process_coding_system; |
17052 | 760 |
88365 | 761 /* Function to call to force a user to force select a propert coding |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
762 system. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
763 extern Lisp_Object Vselect_safe_coding_system_function; |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
764 |
48875
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
765 /* If nonzero, on writing a file, Vselect_safe_coding_system_function |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
766 is called even if Vcoding_system_for_write is non-nil. */ |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
767 extern int coding_system_require_warning; |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
768 |
21901
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
769 /* Coding system for file names, or nil if none. */ |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
770 extern Lisp_Object Vfile_name_coding_system; |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
771 |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
772 /* Coding system for file names used only when |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
773 Vfile_name_coding_system is nil. */ |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
774 extern Lisp_Object Vdefault_file_name_coding_system; |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
775 |
17052 | 776 #endif |
777 | |
34107
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
778 /* Error signaled when there's a problem with detecting coding system */ |
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
779 extern Lisp_Object Qcoding_system_error; |
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
780 |
88365 | 781 extern char emacs_mule_bytes[256]; |
782 extern int emacs_mule_string_char P_ ((unsigned char *)); | |
783 | |
29571
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
784 #endif /* EMACS_CODING_H */ |
52401 | 785 |
786 /* arch-tag: 2bc3b4fa-6870-4f64-8135-b962b2d290e4 | |
787 (do not change this comment) */ |