Mercurial > emacs
annotate src/coding.c @ 20122:923e1f635ace
No need to include <float.h> before "lisp.h",
as the latter no longer defines DBL_DIG.
author | Paul Eggert <eggert@twinsun.com> |
---|---|
date | Thu, 23 Oct 1997 04:29:36 +0000 |
parents | c017642863c2 |
children | 402b6e5f4b58 |
rev | line source |
---|---|
17052 | 1 /* Coding system handler (conversion, detection, and etc). |
18269
888bfd80db2c
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18180
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
888bfd80db2c
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18180
diff
changeset
|
3 Licensed to the Free Software Foundation. |
17052 | 4 |
17071 | 5 This file is part of GNU Emacs. |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
9 the Free Software Foundation; either version 2, or (at your option) | |
10 any later version. | |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
17052 | 21 |
22 /*** TABLE OF CONTENTS *** | |
23 | |
24 1. Preamble | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
25 2. Emacs' internal format (emacs-mule) handlers |
17052 | 26 3. ISO2022 handlers |
27 4. Shift-JIS and BIG5 handlers | |
28 5. End-of-line handlers | |
29 6. C library functions | |
30 7. Emacs Lisp library functions | |
31 8. Post-amble | |
32 | |
33 */ | |
34 | |
35 /*** GENERAL NOTE on CODING SYSTEM *** | |
36 | |
37 Coding system is an encoding mechanism of one or more character | |
38 sets. Here's a list of coding systems which Emacs can handle. When | |
39 we say "decode", it means converting some other coding system to | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
40 Emacs' internal format (emacs-internal), and when we say "encode", |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
41 it means converting the coding system emacs-mule to some other |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
42 coding system. |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
43 |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
44 0. Emacs' internal format (emacs-mule) |
17052 | 45 |
46 Emacs itself holds a multi-lingual character in a buffer and a string | |
18766 | 47 in a special format. Details are described in section 2. |
17052 | 48 |
49 1. ISO2022 | |
50 | |
51 The most famous coding system for multiple character sets. X's | |
18766 | 52 Compound Text, various EUCs (Extended Unix Code), and coding |
53 systems used in Internet communication such as ISO-2022-JP are | |
54 all variants of ISO2022. Details are described in section 3. | |
17052 | 55 |
56 2. SJIS (or Shift-JIS or MS-Kanji-Code) | |
57 | |
58 A coding system to encode character sets: ASCII, JISX0201, and | |
59 JISX0208. Widely used for PC's in Japan. Details are described in | |
18766 | 60 section 4. |
17052 | 61 |
62 3. BIG5 | |
63 | |
64 A coding system to encode character sets: ASCII and Big5. Widely | |
65 used by Chinese (mainly in Taiwan and Hong Kong). Details are | |
18766 | 66 described in section 4. In this file, when we write "BIG5" |
67 (all uppercase), we mean the coding system, and when we write | |
68 "Big5" (capitalized), we mean the character set. | |
69 | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
70 4. Raw text |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
71 |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
72 A coding system for a text containing random 8-bit code. Emacs does |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
73 no code conversion on such a text except for end-of-line format. |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
74 |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
75 5. Other |
18766 | 76 |
77 If a user wants to read/write a text encoded in a coding system not | |
17052 | 78 listed above, he can supply a decoder and an encoder for it in CCL |
79 (Code Conversion Language) programs. Emacs executes the CCL program | |
80 while reading/writing. | |
81 | |
18766 | 82 Emacs represents a coding-system by a Lisp symbol that has a property |
17052 | 83 `coding-system'. But, before actually using the coding-system, the |
84 information about it is set in a structure of type `struct | |
18766 | 85 coding_system' for rapid processing. See section 6 for more details. |
17052 | 86 |
87 */ | |
88 | |
89 /*** GENERAL NOTES on END-OF-LINE FORMAT *** | |
90 | |
91 How end-of-line of a text is encoded depends on a system. For | |
92 instance, Unix's format is just one byte of `line-feed' code, | |
18766 | 93 whereas DOS's format is two-byte sequence of `carriage-return' and |
17052 | 94 `line-feed' codes. MacOS's format is one byte of `carriage-return'. |
95 | |
18766 | 96 Since text characters encoding and end-of-line encoding are |
97 independent, any coding system described above can take | |
17052 | 98 any format of end-of-line. So, Emacs has information of format of |
18766 | 99 end-of-line in each coding-system. See section 6 for more details. |
17052 | 100 |
101 */ | |
102 | |
103 /*** GENERAL NOTES on `detect_coding_XXX ()' functions *** | |
104 | |
105 These functions check if a text between SRC and SRC_END is encoded | |
106 in the coding system category XXX. Each returns an integer value in | |
107 which appropriate flag bits for the category XXX is set. The flag | |
108 bits are defined in macros CODING_CATEGORY_MASK_XXX. Below is the | |
109 template of these functions. */ | |
110 #if 0 | |
111 int | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
112 detect_coding_emacs_mule (src, src_end) |
17052 | 113 unsigned char *src, *src_end; |
114 { | |
115 ... | |
116 } | |
117 #endif | |
118 | |
119 /*** GENERAL NOTES on `decode_coding_XXX ()' functions *** | |
120 | |
121 These functions decode SRC_BYTES length text at SOURCE encoded in | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
122 CODING to Emacs' internal format (emacs-mule). The resulting text |
18766 | 123 goes to a place pointed to by DESTINATION, the length of which should |
124 not exceed DST_BYTES. The number of bytes actually processed is | |
125 returned as *CONSUMED. The return value is the length of the decoded | |
126 text. Below is a template of these functions. */ | |
17052 | 127 #if 0 |
128 decode_coding_XXX (coding, source, destination, src_bytes, dst_bytes, consumed) | |
129 struct coding_system *coding; | |
130 unsigned char *source, *destination; | |
131 int src_bytes, dst_bytes; | |
132 int *consumed; | |
133 { | |
134 ... | |
135 } | |
136 #endif | |
137 | |
138 /*** GENERAL NOTES on `encode_coding_XXX ()' functions *** | |
139 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
140 These functions encode SRC_BYTES length text at SOURCE of Emacs' |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
141 internal format (emacs-mule) to CODING. The resulting text goes to |
18766 | 142 a place pointed to by DESTINATION, the length of which should not |
143 exceed DST_BYTES. The number of bytes actually processed is | |
144 returned as *CONSUMED. The return value is the length of the | |
145 encoded text. Below is a template of these functions. */ | |
17052 | 146 #if 0 |
147 encode_coding_XXX (coding, source, destination, src_bytes, dst_bytes, consumed) | |
148 struct coding_system *coding; | |
149 unsigned char *source, *destination; | |
150 int src_bytes, dst_bytes; | |
151 int *consumed; | |
152 { | |
153 ... | |
154 } | |
155 #endif | |
156 | |
157 /*** COMMONLY USED MACROS ***/ | |
158 | |
159 /* The following three macros ONE_MORE_BYTE, TWO_MORE_BYTES, and | |
160 THREE_MORE_BYTES safely get one, two, and three bytes from the | |
161 source text respectively. If there are not enough bytes in the | |
162 source, they jump to `label_end_of_loop'. The caller should set | |
163 variables `src' and `src_end' to appropriate areas in advance. */ | |
164 | |
165 #define ONE_MORE_BYTE(c1) \ | |
166 do { \ | |
167 if (src < src_end) \ | |
168 c1 = *src++; \ | |
169 else \ | |
170 goto label_end_of_loop; \ | |
171 } while (0) | |
172 | |
173 #define TWO_MORE_BYTES(c1, c2) \ | |
174 do { \ | |
175 if (src + 1 < src_end) \ | |
176 c1 = *src++, c2 = *src++; \ | |
177 else \ | |
178 goto label_end_of_loop; \ | |
179 } while (0) | |
180 | |
181 #define THREE_MORE_BYTES(c1, c2, c3) \ | |
182 do { \ | |
183 if (src + 2 < src_end) \ | |
184 c1 = *src++, c2 = *src++, c3 = *src++; \ | |
185 else \ | |
186 goto label_end_of_loop; \ | |
187 } while (0) | |
188 | |
189 /* The following three macros DECODE_CHARACTER_ASCII, | |
190 DECODE_CHARACTER_DIMENSION1, and DECODE_CHARACTER_DIMENSION2 put | |
191 the multi-byte form of a character of each class at the place | |
192 pointed by `dst'. The caller should set the variable `dst' to | |
193 point to an appropriate area and the variable `coding' to point to | |
194 the coding-system of the currently decoding text in advance. */ | |
195 | |
196 /* Decode one ASCII character C. */ | |
197 | |
198 #define DECODE_CHARACTER_ASCII(c) \ | |
199 do { \ | |
200 if (COMPOSING_P (coding->composing)) \ | |
201 *dst++ = 0xA0, *dst++ = (c) | 0x80; \ | |
202 else \ | |
203 *dst++ = (c); \ | |
204 } while (0) | |
205 | |
18766 | 206 /* Decode one DIMENSION1 character whose charset is CHARSET and whose |
17052 | 207 position-code is C. */ |
208 | |
209 #define DECODE_CHARACTER_DIMENSION1(charset, c) \ | |
210 do { \ | |
211 unsigned char leading_code = CHARSET_LEADING_CODE_BASE (charset); \ | |
212 if (COMPOSING_P (coding->composing)) \ | |
213 *dst++ = leading_code + 0x20; \ | |
214 else \ | |
215 *dst++ = leading_code; \ | |
216 if (leading_code = CHARSET_LEADING_CODE_EXT (charset)) \ | |
217 *dst++ = leading_code; \ | |
218 *dst++ = (c) | 0x80; \ | |
219 } while (0) | |
220 | |
18766 | 221 /* Decode one DIMENSION2 character whose charset is CHARSET and whose |
17052 | 222 position-codes are C1 and C2. */ |
223 | |
224 #define DECODE_CHARACTER_DIMENSION2(charset, c1, c2) \ | |
225 do { \ | |
226 DECODE_CHARACTER_DIMENSION1 (charset, c1); \ | |
227 *dst++ = (c2) | 0x80; \ | |
228 } while (0) | |
229 | |
230 | |
231 /*** 1. Preamble ***/ | |
232 | |
233 #include <stdio.h> | |
234 | |
235 #ifdef emacs | |
236 | |
237 #include <config.h> | |
238 #include "lisp.h" | |
239 #include "buffer.h" | |
240 #include "charset.h" | |
241 #include "ccl.h" | |
242 #include "coding.h" | |
243 #include "window.h" | |
244 | |
245 #else /* not emacs */ | |
246 | |
247 #include "mulelib.h" | |
248 | |
249 #endif /* not emacs */ | |
250 | |
251 Lisp_Object Qcoding_system, Qeol_type; | |
252 Lisp_Object Qbuffer_file_coding_system; | |
253 Lisp_Object Qpost_read_conversion, Qpre_write_conversion; | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
254 Lisp_Object Qno_conversion, Qundecided; |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
255 Lisp_Object Qcoding_system_history; |
17052 | 256 |
257 extern Lisp_Object Qinsert_file_contents, Qwrite_region; | |
258 Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; | |
259 Lisp_Object Qstart_process, Qopen_network_stream; | |
260 Lisp_Object Qtarget_idx; | |
261 | |
262 /* Mnemonic character of each format of end-of-line. */ | |
263 int eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; | |
264 /* Mnemonic character to indicate format of end-of-line is not yet | |
265 decided. */ | |
266 int eol_mnemonic_undecided; | |
267 | |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
268 /* Format of end-of-line decided by system. This is CODING_EOL_LF on |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
269 Unix, CODING_EOL_CRLF on DOS/Windows, and CODING_EOL_CR on Mac. */ |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
270 int system_eol_type; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
271 |
17052 | 272 #ifdef emacs |
273 | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
274 Lisp_Object Vcoding_system_list, Vcoding_system_alist; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
275 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
276 Lisp_Object Qcoding_system_p, Qcoding_system_error; |
17052 | 277 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
278 /* Coding system emacs-mule is for converting only end-of-line format. */ |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
279 Lisp_Object Qemacs_mule; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
280 |
17052 | 281 /* Coding-systems are handed between Emacs Lisp programs and C internal |
282 routines by the following three variables. */ | |
283 /* Coding-system for reading files and receiving data from process. */ | |
284 Lisp_Object Vcoding_system_for_read; | |
285 /* Coding-system for writing files and sending data to process. */ | |
286 Lisp_Object Vcoding_system_for_write; | |
287 /* Coding-system actually used in the latest I/O. */ | |
288 Lisp_Object Vlast_coding_system_used; | |
289 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
290 /* A vector of length 256 which contains information about special |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
291 Latin codes (espepcially for dealing with Microsoft code). */ |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
292 Lisp_Object Vlatin_extra_code_table; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
293 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
294 /* Flag to inhibit code conversion of end-of-line format. */ |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
295 int inhibit_eol_conversion; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
296 |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
297 /* Coding system to be used to encode text for terminal display. */ |
17052 | 298 struct coding_system terminal_coding; |
299 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
300 /* Coding system to be used to encode text for terminal display when |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
301 terminal coding system is nil. */ |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
302 struct coding_system safe_terminal_coding; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
303 |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
304 /* Coding system of what is sent from terminal keyboard. */ |
17052 | 305 struct coding_system keyboard_coding; |
306 | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
307 Lisp_Object Vfile_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
308 Lisp_Object Vprocess_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
309 Lisp_Object Vnetwork_coding_system_alist; |
17052 | 310 |
311 #endif /* emacs */ | |
312 | |
313 Lisp_Object Qcoding_category_index; | |
314 | |
315 /* List of symbols `coding-category-xxx' ordered by priority. */ | |
316 Lisp_Object Vcoding_category_list; | |
317 | |
318 /* Table of coding-systems currently assigned to each coding-category. */ | |
319 Lisp_Object coding_category_table[CODING_CATEGORY_IDX_MAX]; | |
320 | |
321 /* Table of names of symbol for each coding-category. */ | |
322 char *coding_category_name[CODING_CATEGORY_IDX_MAX] = { | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
323 "coding-category-emacs-mule", |
17052 | 324 "coding-category-sjis", |
325 "coding-category-iso-7", | |
326 "coding-category-iso-8-1", | |
327 "coding-category-iso-8-2", | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
328 "coding-category-iso-7-else", |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
329 "coding-category-iso-8-else", |
17052 | 330 "coding-category-big5", |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
331 "coding-category-raw-text", |
17052 | 332 "coding-category-binary" |
333 }; | |
334 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
335 /* Flag to tell if we look up unification table on character code |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
336 conversion. */ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
337 Lisp_Object Venable_character_unification; |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
338 /* Standard unification table to look up on decoding (reading). */ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
339 Lisp_Object Vstandard_character_unification_table_for_decode; |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
340 /* Standard unification table to look up on encoding (writing). */ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
341 Lisp_Object Vstandard_character_unification_table_for_encode; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
342 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
343 Lisp_Object Qcharacter_unification_table; |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
344 Lisp_Object Qcharacter_unification_table_for_decode; |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
345 Lisp_Object Qcharacter_unification_table_for_encode; |
17052 | 346 |
347 /* Alist of charsets vs revision number. */ | |
348 Lisp_Object Vcharset_revision_alist; | |
349 | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
350 /* Default coding systems used for process I/O. */ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
351 Lisp_Object Vdefault_process_coding_system; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
352 |
17052 | 353 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
354 /*** 2. Emacs internal format (emacs-mule) handlers ***/ |
17052 | 355 |
356 /* Emacs' internal format for encoding multiple character sets is a | |
18766 | 357 kind of multi-byte encoding, i.e. characters are encoded by |
358 variable-length sequences of one-byte codes. ASCII characters | |
359 and control characters (e.g. `tab', `newline') are represented by | |
360 one-byte sequences which are their ASCII codes, in the range 0x00 | |
361 through 0x7F. The other characters are represented by a sequence | |
362 of `base leading-code', optional `extended leading-code', and one | |
363 or two `position-code's. The length of the sequence is determined | |
364 by the base leading-code. Leading-code takes the range 0x80 | |
365 through 0x9F, whereas extended leading-code and position-code take | |
366 the range 0xA0 through 0xFF. See `charset.h' for more details | |
367 about leading-code and position-code. | |
368 | |
369 There's one exception to this rule. Special leading-code | |
17052 | 370 `leading-code-composition' denotes that the following several |
371 characters should be composed into one character. Leading-codes of | |
372 components (except for ASCII) are added 0x20. An ASCII character | |
373 component is represented by a 2-byte sequence of `0xA0' and | |
18766 | 374 `ASCII-code + 0x80'. See also the comments in `charset.h' for the |
375 details of composite character. Hence, we can summarize the code | |
17052 | 376 range as follows: |
377 | |
378 --- CODE RANGE of Emacs' internal format --- | |
379 (character set) (range) | |
380 ASCII 0x00 .. 0x7F | |
381 ELSE (1st byte) 0x80 .. 0x9F | |
382 (rest bytes) 0xA0 .. 0xFF | |
383 --------------------------------------------- | |
384 | |
385 */ | |
386 | |
387 enum emacs_code_class_type emacs_code_class[256]; | |
388 | |
389 /* Go to the next statement only if *SRC is accessible and the code is | |
390 greater than 0xA0. */ | |
391 #define CHECK_CODE_RANGE_A0_FF \ | |
392 do { \ | |
393 if (src >= src_end) \ | |
394 goto label_end_of_switch; \ | |
395 else if (*src++ < 0xA0) \ | |
396 return 0; \ | |
397 } while (0) | |
398 | |
399 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
400 Check if a text is encoded in Emacs' internal format. If it is, | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
401 return CODING_CATEGORY_MASK_EMASC_MULE, else return 0. */ |
17052 | 402 |
403 int | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
404 detect_coding_emacs_mule (src, src_end) |
17052 | 405 unsigned char *src, *src_end; |
406 { | |
407 unsigned char c; | |
408 int composing = 0; | |
409 | |
410 while (src < src_end) | |
411 { | |
412 c = *src++; | |
413 | |
414 if (composing) | |
415 { | |
416 if (c < 0xA0) | |
417 composing = 0; | |
418 else | |
419 c -= 0x20; | |
420 } | |
421 | |
422 switch (emacs_code_class[c]) | |
423 { | |
424 case EMACS_ascii_code: | |
425 case EMACS_linefeed_code: | |
426 break; | |
427 | |
428 case EMACS_control_code: | |
429 if (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) | |
430 return 0; | |
431 break; | |
432 | |
433 case EMACS_invalid_code: | |
434 return 0; | |
435 | |
436 case EMACS_leading_code_composition: /* c == 0x80 */ | |
437 if (composing) | |
438 CHECK_CODE_RANGE_A0_FF; | |
439 else | |
440 composing = 1; | |
441 break; | |
442 | |
443 case EMACS_leading_code_4: | |
444 CHECK_CODE_RANGE_A0_FF; | |
445 /* fall down to check it two more times ... */ | |
446 | |
447 case EMACS_leading_code_3: | |
448 CHECK_CODE_RANGE_A0_FF; | |
449 /* fall down to check it one more time ... */ | |
450 | |
451 case EMACS_leading_code_2: | |
452 CHECK_CODE_RANGE_A0_FF; | |
453 break; | |
454 | |
455 default: | |
456 label_end_of_switch: | |
457 break; | |
458 } | |
459 } | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
460 return CODING_CATEGORY_MASK_EMACS_MULE; |
17052 | 461 } |
462 | |
463 | |
464 /*** 3. ISO2022 handlers ***/ | |
465 | |
466 /* The following note describes the coding system ISO2022 briefly. | |
18766 | 467 Since the intention of this note is to help in understanding of |
468 the programs in this file, some parts are NOT ACCURATE or OVERLY | |
17052 | 469 SIMPLIFIED. For the thorough understanding, please refer to the |
470 original document of ISO2022. | |
471 | |
472 ISO2022 provides many mechanisms to encode several character sets | |
18766 | 473 in 7-bit and 8-bit environment. If one chooses 7-bite environment, |
17052 | 474 all text is encoded by codes of less than 128. This may make the |
18766 | 475 encoded text a little bit longer, but the text gets more stability |
476 to pass through several gateways (some of them strip off the MSB). | |
477 | |
478 There are two kinds of character set: control character set and | |
17052 | 479 graphic character set. The former contains control characters such |
480 as `newline' and `escape' to provide control functions (control | |
18766 | 481 functions are provided also by escape sequences). The latter |
17052 | 482 contains graphic characters such as ' A' and '-'. Emacs recognizes |
483 two control character sets and many graphic character sets. | |
484 | |
485 Graphic character sets are classified into one of the following | |
486 four classes, DIMENSION1_CHARS94, DIMENSION1_CHARS96, | |
487 DIMENSION2_CHARS94, DIMENSION2_CHARS96 according to the number of | |
488 bytes (DIMENSION) and the number of characters in one dimension | |
489 (CHARS) of the set. In addition, each character set is assigned an | |
490 identification tag (called "final character" and denoted as <F> | |
491 here after) which is unique in each class. <F> of each character | |
492 set is decided by ECMA(*) when it is registered in ISO. Code range | |
493 of <F> is 0x30..0x7F (0x30..0x3F are for private use only). | |
494 | |
495 Note (*): ECMA = European Computer Manufacturers Association | |
496 | |
497 Here are examples of graphic character set [NAME(<F>)]: | |
498 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ... | |
499 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ... | |
500 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ... | |
501 o DIMENSION2_CHARS96 -- none for the moment | |
502 | |
503 A code area (1byte=8bits) is divided into 4 areas, C0, GL, C1, and GR. | |
504 C0 [0x00..0x1F] -- control character plane 0 | |
505 GL [0x20..0x7F] -- graphic character plane 0 | |
506 C1 [0x80..0x9F] -- control character plane 1 | |
507 GR [0xA0..0xFF] -- graphic character plane 1 | |
508 | |
509 A control character set is directly designated and invoked to C0 or | |
510 C1 by an escape sequence. The most common case is that ISO646's | |
511 control character set is designated/invoked to C0 and ISO6429's | |
512 control character set is designated/invoked to C1, and usually | |
513 these designations/invocations are omitted in a coded text. With | |
514 7-bit environment, only C0 can be used, and a control character for | |
515 C1 is encoded by an appropriate escape sequence to fit in the | |
516 environment. All control characters for C1 are defined the | |
517 corresponding escape sequences. | |
518 | |
519 A graphic character set is at first designated to one of four | |
520 graphic registers (G0 through G3), then these graphic registers are | |
521 invoked to GL or GR. These designations and invocations can be | |
522 done independently. The most common case is that G0 is invoked to | |
523 GL, G1 is invoked to GR, and ASCII is designated to G0, and usually | |
524 these invocations and designations are omitted in a coded text. | |
525 With 7-bit environment, only GL can be used. | |
526 | |
527 When a graphic character set of CHARS94 is invoked to GL, code 0x20 | |
528 and 0x7F of GL area work as control characters SPACE and DEL | |
529 respectively, and code 0xA0 and 0xFF of GR area should not be used. | |
530 | |
531 There are two ways of invocation: locking-shift and single-shift. | |
532 With locking-shift, the invocation lasts until the next different | |
533 invocation, whereas with single-shift, the invocation works only | |
534 for the following character and doesn't affect locking-shift. | |
535 Invocations are done by the following control characters or escape | |
536 sequences. | |
537 | |
538 ---------------------------------------------------------------------- | |
539 function control char escape sequence description | |
540 ---------------------------------------------------------------------- | |
541 SI (shift-in) 0x0F none invoke G0 to GL | |
19118
16ef8c28e4e0
(detect_coding_mask): Include CODING_CATEGORY_MASK_BINARY in the
Richard M. Stallman <rms@gnu.org>
parents:
19068
diff
changeset
|
542 SO (shift-out) 0x0E none invoke G1 to GL |
17052 | 543 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL |
544 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL | |
545 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 into GL | |
546 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 into GL | |
547 ---------------------------------------------------------------------- | |
548 The first four are for locking-shift. Control characters for these | |
549 functions are defined by macros ISO_CODE_XXX in `coding.h'. | |
550 | |
551 Designations are done by the following escape sequences. | |
552 ---------------------------------------------------------------------- | |
553 escape sequence description | |
554 ---------------------------------------------------------------------- | |
555 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0 | |
556 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1 | |
557 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2 | |
558 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3 | |
559 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*) | |
560 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1 | |
561 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2 | |
562 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3 | |
563 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**) | |
564 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1 | |
565 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2 | |
566 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3 | |
567 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*) | |
568 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1 | |
569 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2 | |
570 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3 | |
571 ---------------------------------------------------------------------- | |
572 | |
573 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set | |
574 of dimension 1, chars 94, and final character <F>, and etc. | |
575 | |
576 Note (*): Although these designations are not allowed in ISO2022, | |
577 Emacs accepts them on decoding, and produces them on encoding | |
578 CHARS96 character set in a coding system which is characterized as | |
579 7-bit environment, non-locking-shift, and non-single-shift. | |
580 | |
581 Note (**): If <F> is '@', 'A', or 'B', the intermediate character | |
582 '(' can be omitted. We call this as "short-form" here after. | |
583 | |
584 Now you may notice that there are a lot of ways for encoding the | |
18766 | 585 same multilingual text in ISO2022. Actually, there exists many |
17052 | 586 coding systems such as Compound Text (used in X's inter client |
587 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR | |
588 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian | |
589 localized platforms), and all of these are variants of ISO2022. | |
590 | |
591 In addition to the above, Emacs handles two more kinds of escape | |
592 sequences: ISO6429's direction specification and Emacs' private | |
593 sequence for specifying character composition. | |
594 | |
595 ISO6429's direction specification takes the following format: | |
596 o CSI ']' -- end of the current direction | |
597 o CSI '0' ']' -- end of the current direction | |
598 o CSI '1' ']' -- start of left-to-right text | |
599 o CSI '2' ']' -- start of right-to-left text | |
600 The control character CSI (0x9B: control sequence introducer) is | |
601 abbreviated to the escape sequence ESC '[' in 7-bit environment. | |
602 | |
603 Character composition specification takes the following format: | |
604 o ESC '0' -- start character composition | |
605 o ESC '1' -- end character composition | |
606 Since these are not standard escape sequences of any ISO, the use | |
607 of them for these meaning is restricted to Emacs only. */ | |
608 | |
609 enum iso_code_class_type iso_code_class[256]; | |
610 | |
611 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
612 Check if a text is encoded in ISO2022. If it is, returns an | |
613 integer in which appropriate flag bits any of: | |
614 CODING_CATEGORY_MASK_ISO_7 | |
615 CODING_CATEGORY_MASK_ISO_8_1 | |
616 CODING_CATEGORY_MASK_ISO_8_2 | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
617 CODING_CATEGORY_MASK_ISO_7_ELSE |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
618 CODING_CATEGORY_MASK_ISO_8_ELSE |
17052 | 619 are set. If a code which should never appear in ISO2022 is found, |
620 returns 0. */ | |
621 | |
622 int | |
623 detect_coding_iso2022 (src, src_end) | |
624 unsigned char *src, *src_end; | |
625 { | |
18310
a97ed8efcb6a
(detect_coding_iso2022): Initilize mask correctly.
Kenichi Handa <handa@m17n.org>
parents:
18269
diff
changeset
|
626 int mask = (CODING_CATEGORY_MASK_ISO_7 |
a97ed8efcb6a
(detect_coding_iso2022): Initilize mask correctly.
Kenichi Handa <handa@m17n.org>
parents:
18269
diff
changeset
|
627 | CODING_CATEGORY_MASK_ISO_8_1 |
a97ed8efcb6a
(detect_coding_iso2022): Initilize mask correctly.
Kenichi Handa <handa@m17n.org>
parents:
18269
diff
changeset
|
628 | CODING_CATEGORY_MASK_ISO_8_2 |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
629 | CODING_CATEGORY_MASK_ISO_7_ELSE |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
630 | CODING_CATEGORY_MASK_ISO_8_ELSE |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
631 ); |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
632 int g1 = 0; /* 1 iff designating to G1. */ |
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
633 int c, i; |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
634 struct coding_system coding_iso_8_1, coding_iso_8_2; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
635 |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
636 /* Coding systems of these categories may accept latin extra codes. */ |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
637 setup_coding_system |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
638 (XSYMBOL (coding_category_table[CODING_CATEGORY_IDX_ISO_8_1])->value, |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
639 &coding_iso_8_1); |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
640 setup_coding_system |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
641 (XSYMBOL (coding_category_table[CODING_CATEGORY_IDX_ISO_8_2])->value, |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
642 &coding_iso_8_2); |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
643 |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
644 while (mask && src < src_end) |
17052 | 645 { |
646 c = *src++; | |
647 switch (c) | |
648 { | |
649 case ISO_CODE_ESC: | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
650 if (src >= src_end) |
17052 | 651 break; |
652 c = *src++; | |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
653 if ((c >= '(' && c <= '/')) |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
654 { |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
655 /* Designation sequence for a charset of dimension 1. */ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
656 if (src >= src_end) |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
657 break; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
658 c = *src++; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
659 if (c < ' ' || c >= 0x80) |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
660 /* Invalid designation sequence. */ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
661 return 0; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
662 } |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
663 else if (c == '$') |
17052 | 664 { |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
665 /* Designation sequence for a charset of dimension 2. */ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
666 if (src >= src_end) |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
667 break; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
668 c = *src++; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
669 if (c >= '@' && c <= 'B') |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
670 /* Designation for JISX0208.1978, GB2312, or JISX0208. */ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
671 ; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
672 else if (c >= '(' && c <= '/') |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
673 { |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
674 if (src >= src_end) |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
675 break; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
676 c = *src++; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
677 if (c < ' ' || c >= 0x80) |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
678 /* Invalid designation sequence. */ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
679 return 0; |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
680 } |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
681 else |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
682 /* Invalid designation sequence. */ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
683 return 0; |
17052 | 684 } |
685 else if (c == 'N' || c == 'O' || c == 'n' || c == 'o') | |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
686 /* Locking shift. */ |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
687 mask &= (CODING_CATEGORY_MASK_ISO_7_ELSE |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
688 | CODING_CATEGORY_MASK_ISO_8_ELSE); |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
689 else if (c == '0' || c == '1' || c == '2') |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
690 /* Start/end composition. */ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
691 ; |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
692 else |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
693 /* Invalid escape sequence. */ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
694 return 0; |
17052 | 695 break; |
696 | |
697 case ISO_CODE_SO: | |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
698 mask &= (CODING_CATEGORY_MASK_ISO_7_ELSE |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
699 | CODING_CATEGORY_MASK_ISO_8_ELSE); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
700 break; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
701 |
17052 | 702 case ISO_CODE_CSI: |
703 case ISO_CODE_SS2: | |
704 case ISO_CODE_SS3: | |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
705 { |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
706 int newmask = CODING_CATEGORY_MASK_ISO_8_ELSE; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
707 |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
708 if (VECTORP (Vlatin_extra_code_table) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
709 && !NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
710 { |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
711 if (coding_iso_8_1.flags & CODING_FLAG_ISO_LATIN_EXTRA) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
712 newmask |= CODING_CATEGORY_MASK_ISO_8_1; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
713 if (coding_iso_8_2.flags & CODING_FLAG_ISO_LATIN_EXTRA) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
714 newmask |= CODING_CATEGORY_MASK_ISO_8_2; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
715 } |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
716 mask &= newmask; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
717 } |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
718 break; |
17052 | 719 |
720 default: | |
721 if (c < 0x80) | |
722 break; | |
723 else if (c < 0xA0) | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
724 { |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
725 if (VECTORP (Vlatin_extra_code_table) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
726 && !NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
727 { |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
728 int newmask = 0; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
729 |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
730 if (coding_iso_8_1.flags & CODING_FLAG_ISO_LATIN_EXTRA) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
731 newmask |= CODING_CATEGORY_MASK_ISO_8_1; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
732 if (coding_iso_8_2.flags & CODING_FLAG_ISO_LATIN_EXTRA) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
733 newmask |= CODING_CATEGORY_MASK_ISO_8_2; |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
734 mask &= newmask; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
735 } |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
736 else |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
737 return 0; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
738 } |
17052 | 739 else |
740 { | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
741 unsigned char *src_begin = src; |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
742 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
743 mask &= ~(CODING_CATEGORY_MASK_ISO_7 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
744 | CODING_CATEGORY_MASK_ISO_7_ELSE); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
745 while (src < src_end && *src >= 0xA0) |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
746 src++; |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
747 if ((src - src_begin - 1) & 1 && src < src_end) |
17052 | 748 mask &= ~CODING_CATEGORY_MASK_ISO_8_2; |
749 } | |
750 break; | |
751 } | |
752 } | |
753 | |
754 return mask; | |
755 } | |
756 | |
757 /* Decode a character of which charset is CHARSET and the 1st position | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
758 code is C1. If dimension of CHARSET is 2, the 2nd position code is |
17052 | 759 fetched from SRC and set to C2. If CHARSET is negative, it means |
760 that we are decoding ill formed text, and what we can do is just to | |
761 read C1 as is. */ | |
762 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
763 #define DECODE_ISO_CHARACTER(charset, c1) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
764 do { \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
765 int c_alt, charset_alt = (charset); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
766 if (COMPOSING_HEAD_P (coding->composing)) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
767 { \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
768 *dst++ = LEADING_CODE_COMPOSITION; \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
769 if (COMPOSING_WITH_RULE_P (coding->composing)) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
770 /* To tell composition rules are embeded. */ \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
771 *dst++ = 0xFF; \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
772 coding->composing += 2; \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
773 } \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
774 if ((charset) >= 0) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
775 { \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
776 if (CHARSET_DIMENSION (charset) == 2) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
777 ONE_MORE_BYTE (c2); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
778 if (!NILP (unification_table) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
779 && ((c_alt = unify_char (unification_table, \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
780 -1, (charset), c1, c2)) >= 0)) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
781 SPLIT_CHAR (c_alt, charset_alt, c1, c2); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
782 } \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
783 if (charset_alt == CHARSET_ASCII || charset_alt < 0) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
784 DECODE_CHARACTER_ASCII (c1); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
785 else if (CHARSET_DIMENSION (charset_alt) == 1) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
786 DECODE_CHARACTER_DIMENSION1 (charset_alt, c1); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
787 else \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
788 DECODE_CHARACTER_DIMENSION2 (charset_alt, c1, c2); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
789 if (COMPOSING_WITH_RULE_P (coding->composing)) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
790 /* To tell a composition rule follows. */ \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
791 coding->composing = COMPOSING_WITH_RULE_RULE; \ |
17052 | 792 } while (0) |
793 | |
794 /* Set designation state into CODING. */ | |
795 #define DECODE_DESIGNATION(reg, dimension, chars, final_char) \ | |
796 do { \ | |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
797 int charset = ISO_CHARSET_TABLE (make_number (dimension), \ |
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
798 make_number (chars), \ |
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
799 make_number (final_char)); \ |
17052 | 800 if (charset >= 0) \ |
801 { \ | |
802 if (coding->direction == 1 \ | |
803 && CHARSET_REVERSE_CHARSET (charset) >= 0) \ | |
804 charset = CHARSET_REVERSE_CHARSET (charset); \ | |
805 CODING_SPEC_ISO_DESIGNATION (coding, reg) = charset; \ | |
806 } \ | |
807 } while (0) | |
808 | |
809 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ | |
810 | |
811 int | |
812 decode_coding_iso2022 (coding, source, destination, | |
813 src_bytes, dst_bytes, consumed) | |
814 struct coding_system *coding; | |
815 unsigned char *source, *destination; | |
816 int src_bytes, dst_bytes; | |
817 int *consumed; | |
818 { | |
819 unsigned char *src = source; | |
820 unsigned char *src_end = source + src_bytes; | |
821 unsigned char *dst = destination; | |
822 unsigned char *dst_end = destination + dst_bytes; | |
823 /* Since the maximum bytes produced by each loop is 7, we subtract 6 | |
824 from DST_END to assure that overflow checking is necessary only | |
825 at the head of loop. */ | |
826 unsigned char *adjusted_dst_end = dst_end - 6; | |
827 int charset; | |
828 /* Charsets invoked to graphic plane 0 and 1 respectively. */ | |
829 int charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); | |
830 int charset1 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 1); | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
831 Lisp_Object unification_table |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
832 = coding->character_unification_table_for_decode; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
833 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
834 if (!NILP (Venable_character_unification) && NILP (unification_table)) |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
835 unification_table = Vstandard_character_unification_table_for_decode; |
17052 | 836 |
837 while (src < src_end && dst < adjusted_dst_end) | |
838 { | |
839 /* SRC_BASE remembers the start position in source in each loop. | |
840 The loop will be exited when there's not enough source text | |
841 to analyze long escape sequence or 2-byte code (within macros | |
842 ONE_MORE_BYTE or TWO_MORE_BYTES). In that case, SRC is reset | |
843 to SRC_BASE before exiting. */ | |
844 unsigned char *src_base = src; | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
845 int c1 = *src++, c2; |
17052 | 846 |
847 switch (iso_code_class [c1]) | |
848 { | |
849 case ISO_0x20_or_0x7F: | |
850 if (!coding->composing | |
851 && (charset0 < 0 || CHARSET_CHARS (charset0) == 94)) | |
852 { | |
853 /* This is SPACE or DEL. */ | |
854 *dst++ = c1; | |
855 break; | |
856 } | |
857 /* This is a graphic character, we fall down ... */ | |
858 | |
859 case ISO_graphic_plane_0: | |
860 if (coding->composing == COMPOSING_WITH_RULE_RULE) | |
861 { | |
862 /* This is a composition rule. */ | |
863 *dst++ = c1 | 0x80; | |
864 coding->composing = COMPOSING_WITH_RULE_TAIL; | |
865 } | |
866 else | |
867 DECODE_ISO_CHARACTER (charset0, c1); | |
868 break; | |
869 | |
870 case ISO_0xA0_or_0xFF: | |
871 if (charset1 < 0 || CHARSET_CHARS (charset1) == 94) | |
872 { | |
873 /* Invalid code. */ | |
874 *dst++ = c1; | |
875 break; | |
876 } | |
877 /* This is a graphic character, we fall down ... */ | |
878 | |
879 case ISO_graphic_plane_1: | |
880 DECODE_ISO_CHARACTER (charset1, c1); | |
881 break; | |
882 | |
883 case ISO_control_code: | |
884 /* All ISO2022 control characters in this class have the | |
885 same representation in Emacs internal format. */ | |
886 *dst++ = c1; | |
887 break; | |
888 | |
889 case ISO_carriage_return: | |
890 if (coding->eol_type == CODING_EOL_CR) | |
891 { | |
892 *dst++ = '\n'; | |
893 } | |
894 else if (coding->eol_type == CODING_EOL_CRLF) | |
895 { | |
896 ONE_MORE_BYTE (c1); | |
897 if (c1 == ISO_CODE_LF) | |
898 *dst++ = '\n'; | |
899 else | |
900 { | |
901 src--; | |
902 *dst++ = c1; | |
903 } | |
904 } | |
905 else | |
906 { | |
907 *dst++ = c1; | |
908 } | |
909 break; | |
910 | |
911 case ISO_shift_out: | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
912 if (CODING_SPEC_ISO_DESIGNATION (coding, 1) < 0) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
913 goto label_invalid_escape_sequence; |
17052 | 914 CODING_SPEC_ISO_INVOCATION (coding, 0) = 1; |
915 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); | |
916 break; | |
917 | |
918 case ISO_shift_in: | |
919 CODING_SPEC_ISO_INVOCATION (coding, 0) = 0; | |
920 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); | |
921 break; | |
922 | |
923 case ISO_single_shift_2_7: | |
924 case ISO_single_shift_2: | |
925 /* SS2 is handled as an escape sequence of ESC 'N' */ | |
926 c1 = 'N'; | |
927 goto label_escape_sequence; | |
928 | |
929 case ISO_single_shift_3: | |
930 /* SS2 is handled as an escape sequence of ESC 'O' */ | |
931 c1 = 'O'; | |
932 goto label_escape_sequence; | |
933 | |
934 case ISO_control_sequence_introducer: | |
935 /* CSI is handled as an escape sequence of ESC '[' ... */ | |
936 c1 = '['; | |
937 goto label_escape_sequence; | |
938 | |
939 case ISO_escape: | |
940 ONE_MORE_BYTE (c1); | |
941 label_escape_sequence: | |
942 /* Escape sequences handled by Emacs are invocation, | |
943 designation, direction specification, and character | |
944 composition specification. */ | |
945 switch (c1) | |
946 { | |
947 case '&': /* revision of following character set */ | |
948 ONE_MORE_BYTE (c1); | |
949 if (!(c1 >= '@' && c1 <= '~')) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
950 goto label_invalid_escape_sequence; |
17052 | 951 ONE_MORE_BYTE (c1); |
952 if (c1 != ISO_CODE_ESC) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
953 goto label_invalid_escape_sequence; |
17052 | 954 ONE_MORE_BYTE (c1); |
955 goto label_escape_sequence; | |
956 | |
957 case '$': /* designation of 2-byte character set */ | |
958 ONE_MORE_BYTE (c1); | |
959 if (c1 >= '@' && c1 <= 'B') | |
960 { /* designation of JISX0208.1978, GB2312.1980, | |
961 or JISX0208.1980 */ | |
962 DECODE_DESIGNATION (0, 2, 94, c1); | |
963 } | |
964 else if (c1 >= 0x28 && c1 <= 0x2B) | |
965 { /* designation of DIMENSION2_CHARS94 character set */ | |
966 ONE_MORE_BYTE (c2); | |
967 DECODE_DESIGNATION (c1 - 0x28, 2, 94, c2); | |
968 } | |
969 else if (c1 >= 0x2C && c1 <= 0x2F) | |
970 { /* designation of DIMENSION2_CHARS96 character set */ | |
971 ONE_MORE_BYTE (c2); | |
972 DECODE_DESIGNATION (c1 - 0x2C, 2, 96, c2); | |
973 } | |
974 else | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
975 goto label_invalid_escape_sequence; |
17052 | 976 break; |
977 | |
978 case 'n': /* invocation of locking-shift-2 */ | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
979 if (CODING_SPEC_ISO_DESIGNATION (coding, 2) < 0) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
980 goto label_invalid_escape_sequence; |
17052 | 981 CODING_SPEC_ISO_INVOCATION (coding, 0) = 2; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
982 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); |
17052 | 983 break; |
984 | |
985 case 'o': /* invocation of locking-shift-3 */ | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
986 if (CODING_SPEC_ISO_DESIGNATION (coding, 3) < 0) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
987 goto label_invalid_escape_sequence; |
17052 | 988 CODING_SPEC_ISO_INVOCATION (coding, 0) = 3; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
989 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); |
17052 | 990 break; |
991 | |
992 case 'N': /* invocation of single-shift-2 */ | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
993 if (CODING_SPEC_ISO_DESIGNATION (coding, 2) < 0) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
994 goto label_invalid_escape_sequence; |
17052 | 995 ONE_MORE_BYTE (c1); |
996 charset = CODING_SPEC_ISO_DESIGNATION (coding, 2); | |
997 DECODE_ISO_CHARACTER (charset, c1); | |
998 break; | |
999 | |
1000 case 'O': /* invocation of single-shift-3 */ | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1001 if (CODING_SPEC_ISO_DESIGNATION (coding, 3) < 0) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1002 goto label_invalid_escape_sequence; |
17052 | 1003 ONE_MORE_BYTE (c1); |
1004 charset = CODING_SPEC_ISO_DESIGNATION (coding, 3); | |
1005 DECODE_ISO_CHARACTER (charset, c1); | |
1006 break; | |
1007 | |
1008 case '0': /* start composing without embeded rules */ | |
1009 coding->composing = COMPOSING_NO_RULE_HEAD; | |
1010 break; | |
1011 | |
1012 case '1': /* end composing */ | |
1013 coding->composing = COMPOSING_NO; | |
1014 break; | |
1015 | |
1016 case '2': /* start composing with embeded rules */ | |
1017 coding->composing = COMPOSING_WITH_RULE_HEAD; | |
1018 break; | |
1019 | |
1020 case '[': /* specification of direction */ | |
1021 /* For the moment, nested direction is not supported. | |
1022 So, the value of `coding->direction' is 0 or 1: 0 | |
1023 means left-to-right, 1 means right-to-left. */ | |
1024 ONE_MORE_BYTE (c1); | |
1025 switch (c1) | |
1026 { | |
1027 case ']': /* end of the current direction */ | |
1028 coding->direction = 0; | |
1029 | |
1030 case '0': /* end of the current direction */ | |
1031 case '1': /* start of left-to-right direction */ | |
1032 ONE_MORE_BYTE (c1); | |
1033 if (c1 == ']') | |
1034 coding->direction = 0; | |
1035 else | |
1036 goto label_invalid_escape_sequence; | |
1037 break; | |
1038 | |
1039 case '2': /* start of right-to-left direction */ | |
1040 ONE_MORE_BYTE (c1); | |
1041 if (c1 == ']') | |
1042 coding->direction= 1; | |
1043 else | |
1044 goto label_invalid_escape_sequence; | |
1045 break; | |
1046 | |
1047 default: | |
1048 goto label_invalid_escape_sequence; | |
1049 } | |
1050 break; | |
1051 | |
1052 default: | |
1053 if (c1 >= 0x28 && c1 <= 0x2B) | |
1054 { /* designation of DIMENSION1_CHARS94 character set */ | |
1055 ONE_MORE_BYTE (c2); | |
1056 DECODE_DESIGNATION (c1 - 0x28, 1, 94, c2); | |
1057 } | |
1058 else if (c1 >= 0x2C && c1 <= 0x2F) | |
1059 { /* designation of DIMENSION1_CHARS96 character set */ | |
1060 ONE_MORE_BYTE (c2); | |
1061 DECODE_DESIGNATION (c1 - 0x2C, 1, 96, c2); | |
1062 } | |
1063 else | |
1064 { | |
1065 goto label_invalid_escape_sequence; | |
1066 } | |
1067 } | |
1068 /* We must update these variables now. */ | |
1069 charset0 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 0); | |
1070 charset1 = CODING_SPEC_ISO_PLANE_CHARSET (coding, 1); | |
1071 break; | |
1072 | |
1073 label_invalid_escape_sequence: | |
1074 { | |
1075 int length = src - src_base; | |
1076 | |
1077 bcopy (src_base, dst, length); | |
1078 dst += length; | |
1079 } | |
1080 } | |
1081 continue; | |
1082 | |
1083 label_end_of_loop: | |
1084 coding->carryover_size = src - src_base; | |
1085 bcopy (src_base, coding->carryover, coding->carryover_size); | |
1086 src = src_base; | |
1087 break; | |
1088 } | |
1089 | |
1090 /* If this is the last block of the text to be decoded, we had | |
1091 better just flush out all remaining codes in the text although | |
1092 they are not valid characters. */ | |
1093 if (coding->last_block) | |
1094 { | |
1095 bcopy (src, dst, src_end - src); | |
1096 dst += (src_end - src); | |
1097 src = src_end; | |
1098 } | |
1099 *consumed = src - source; | |
1100 return dst - destination; | |
1101 } | |
1102 | |
18766 | 1103 /* ISO2022 encoding stuff. */ |
17052 | 1104 |
1105 /* | |
18766 | 1106 It is not enough to say just "ISO2022" on encoding, we have to |
17052 | 1107 specify more details. In Emacs, each coding-system of ISO2022 |
1108 variant has the following specifications: | |
1109 1. Initial designation to G0 thru G3. | |
1110 2. Allows short-form designation? | |
1111 3. ASCII should be designated to G0 before control characters? | |
1112 4. ASCII should be designated to G0 at end of line? | |
1113 5. 7-bit environment or 8-bit environment? | |
1114 6. Use locking-shift? | |
1115 7. Use Single-shift? | |
1116 And the following two are only for Japanese: | |
1117 8. Use ASCII in place of JIS0201-1976-Roman? | |
1118 9. Use JISX0208-1983 in place of JISX0208-1978? | |
1119 These specifications are encoded in `coding->flags' as flag bits | |
1120 defined by macros CODING_FLAG_ISO_XXX. See `coding.h' for more | |
18766 | 1121 details. |
17052 | 1122 */ |
1123 | |
1124 /* Produce codes (escape sequence) for designating CHARSET to graphic | |
1125 register REG. If <final-char> of CHARSET is '@', 'A', or 'B' and | |
1126 the coding system CODING allows, produce designation sequence of | |
1127 short-form. */ | |
1128 | |
1129 #define ENCODE_DESIGNATION(charset, reg, coding) \ | |
1130 do { \ | |
1131 unsigned char final_char = CHARSET_ISO_FINAL_CHAR (charset); \ | |
1132 char *intermediate_char_94 = "()*+"; \ | |
1133 char *intermediate_char_96 = ",-./"; \ | |
1134 Lisp_Object temp \ | |
1135 = Fassq (make_number (charset), Vcharset_revision_alist); \ | |
1136 if (! NILP (temp)) \ | |
1137 { \ | |
1138 *dst++ = ISO_CODE_ESC; \ | |
1139 *dst++ = '&'; \ | |
1140 *dst++ = XINT (XCONS (temp)->cdr) + '@'; \ | |
1141 } \ | |
1142 *dst++ = ISO_CODE_ESC; \ | |
1143 if (CHARSET_DIMENSION (charset) == 1) \ | |
1144 { \ | |
1145 if (CHARSET_CHARS (charset) == 94) \ | |
1146 *dst++ = (unsigned char) (intermediate_char_94[reg]); \ | |
1147 else \ | |
1148 *dst++ = (unsigned char) (intermediate_char_96[reg]); \ | |
1149 } \ | |
1150 else \ | |
1151 { \ | |
1152 *dst++ = '$'; \ | |
1153 if (CHARSET_CHARS (charset) == 94) \ | |
1154 { \ | |
1155 if (! (coding->flags & CODING_FLAG_ISO_SHORT_FORM) \ | |
1156 || reg != 0 \ | |
1157 || final_char < '@' || final_char > 'B') \ | |
1158 *dst++ = (unsigned char) (intermediate_char_94[reg]); \ | |
1159 } \ | |
1160 else \ | |
1161 *dst++ = (unsigned char) (intermediate_char_96[reg]); \ | |
1162 } \ | |
1163 *dst++ = final_char; \ | |
1164 CODING_SPEC_ISO_DESIGNATION (coding, reg) = charset; \ | |
1165 } while (0) | |
1166 | |
1167 /* The following two macros produce codes (control character or escape | |
1168 sequence) for ISO2022 single-shift functions (single-shift-2 and | |
1169 single-shift-3). */ | |
1170 | |
1171 #define ENCODE_SINGLE_SHIFT_2 \ | |
1172 do { \ | |
1173 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \ | |
1174 *dst++ = ISO_CODE_ESC, *dst++ = 'N'; \ | |
1175 else \ | |
1176 *dst++ = ISO_CODE_SS2; \ | |
1177 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
1178 } while (0) | |
1179 | |
1180 #define ENCODE_SINGLE_SHIFT_3 \ | |
1181 do { \ | |
1182 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \ | |
1183 *dst++ = ISO_CODE_ESC, *dst++ = 'O'; \ | |
1184 else \ | |
1185 *dst++ = ISO_CODE_SS3; \ | |
1186 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
1187 } while (0) | |
1188 | |
1189 /* The following four macros produce codes (control character or | |
1190 escape sequence) for ISO2022 locking-shift functions (shift-in, | |
1191 shift-out, locking-shift-2, and locking-shift-3). */ | |
1192 | |
1193 #define ENCODE_SHIFT_IN \ | |
1194 do { \ | |
1195 *dst++ = ISO_CODE_SI; \ | |
1196 CODING_SPEC_ISO_INVOCATION (coding, 0) = 0; \ | |
1197 } while (0) | |
1198 | |
1199 #define ENCODE_SHIFT_OUT \ | |
1200 do { \ | |
1201 *dst++ = ISO_CODE_SO; \ | |
1202 CODING_SPEC_ISO_INVOCATION (coding, 0) = 1; \ | |
1203 } while (0) | |
1204 | |
1205 #define ENCODE_LOCKING_SHIFT_2 \ | |
1206 do { \ | |
1207 *dst++ = ISO_CODE_ESC, *dst++ = 'n'; \ | |
1208 CODING_SPEC_ISO_INVOCATION (coding, 0) = 2; \ | |
1209 } while (0) | |
1210 | |
1211 #define ENCODE_LOCKING_SHIFT_3 \ | |
1212 do { \ | |
1213 *dst++ = ISO_CODE_ESC, *dst++ = 'o'; \ | |
1214 CODING_SPEC_ISO_INVOCATION (coding, 0) = 3; \ | |
1215 } while (0) | |
1216 | |
18766 | 1217 /* Produce codes for a DIMENSION1 character whose character set is |
1218 CHARSET and whose position-code is C1. Designation and invocation | |
17052 | 1219 sequences are also produced in advance if necessary. */ |
1220 | |
1221 | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1222 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1223 do { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1224 if (CODING_SPEC_ISO_SINGLE_SHIFTING (coding)) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1225 { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1226 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1227 *dst++ = c1 & 0x7F; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1228 else \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1229 *dst++ = c1 | 0x80; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1230 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 0; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1231 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1232 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1233 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 0)) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1234 { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1235 *dst++ = c1 & 0x7F; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1236 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1237 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1238 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 1)) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1239 { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1240 *dst++ = c1 | 0x80; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1241 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1242 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1243 else if (coding->flags & CODING_FLAG_ISO_SAFE \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1244 && !CODING_SPEC_ISO_EXPECTED_CHARSETS (coding)[charset]) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1245 { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1246 /* We should not encode this character, instead produce one or \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1247 two `?'s. */ \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1248 *dst++ = CODING_INHIBIT_CHARACTER_SUBSTITUTION; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1249 if (CHARSET_WIDTH (charset) == 2) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1250 *dst++ = CODING_INHIBIT_CHARACTER_SUBSTITUTION; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1251 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1252 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1253 else \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1254 /* Since CHARSET is not yet invoked to any graphic planes, we \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1255 must invoke it, or, at first, designate it to some graphic \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1256 register. Then repeat the loop to actually produce the \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1257 character. */ \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1258 dst = encode_invocation_designation (charset, coding, dst); \ |
17052 | 1259 } while (1) |
1260 | |
18766 | 1261 /* Produce codes for a DIMENSION2 character whose character set is |
1262 CHARSET and whose position-codes are C1 and C2. Designation and | |
17052 | 1263 invocation codes are also produced in advance if necessary. */ |
1264 | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1265 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1266 do { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1267 if (CODING_SPEC_ISO_SINGLE_SHIFTING (coding)) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1268 { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1269 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1270 *dst++ = c1 & 0x7F, *dst++ = c2 & 0x7F; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1271 else \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1272 *dst++ = c1 | 0x80, *dst++ = c2 | 0x80; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1273 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 0; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1274 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1275 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1276 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 0)) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1277 { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1278 *dst++ = c1 & 0x7F, *dst++= c2 & 0x7F; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1279 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1280 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1281 else if (charset == CODING_SPEC_ISO_PLANE_CHARSET (coding, 1)) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1282 { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1283 *dst++ = c1 | 0x80, *dst++= c2 | 0x80; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1284 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1285 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1286 else if (coding->flags & CODING_FLAG_ISO_SAFE \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1287 && !CODING_SPEC_ISO_EXPECTED_CHARSETS (coding)[charset]) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1288 { \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1289 /* We should not encode this character, instead produce one or \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1290 two `?'s. */ \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1291 *dst++ = CODING_INHIBIT_CHARACTER_SUBSTITUTION; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1292 if (CHARSET_WIDTH (charset) == 2) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1293 *dst++ = CODING_INHIBIT_CHARACTER_SUBSTITUTION; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1294 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1295 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1296 else \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1297 /* Since CHARSET is not yet invoked to any graphic planes, we \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1298 must invoke it, or, at first, designate it to some graphic \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1299 register. Then repeat the loop to actually produce the \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1300 character. */ \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
1301 dst = encode_invocation_designation (charset, coding, dst); \ |
17052 | 1302 } while (1) |
1303 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1304 #define ENCODE_ISO_CHARACTER(charset, c1, c2) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1305 do { \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1306 int c_alt, charset_alt; \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1307 if (!NILP (unification_table) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1308 && ((c_alt = unify_char (unification_table, -1, charset, c1, c2)) \ |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1309 >= 0)) \ |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1310 SPLIT_CHAR (c_alt, charset_alt, c1, c2); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1311 else \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1312 charset_alt = charset; \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1313 if (CHARSET_DIMENSION (charset_alt) == 1) \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1314 ENCODE_ISO_CHARACTER_DIMENSION1 (charset_alt, c1); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1315 else \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1316 ENCODE_ISO_CHARACTER_DIMENSION2 (charset_alt, c1, c2); \ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1317 } while (0) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1318 |
17052 | 1319 /* Produce designation and invocation codes at a place pointed by DST |
1320 to use CHARSET. The element `spec.iso2022' of *CODING is updated. | |
1321 Return new DST. */ | |
1322 | |
1323 unsigned char * | |
1324 encode_invocation_designation (charset, coding, dst) | |
1325 int charset; | |
1326 struct coding_system *coding; | |
1327 unsigned char *dst; | |
1328 { | |
1329 int reg; /* graphic register number */ | |
1330 | |
1331 /* At first, check designations. */ | |
1332 for (reg = 0; reg < 4; reg++) | |
1333 if (charset == CODING_SPEC_ISO_DESIGNATION (coding, reg)) | |
1334 break; | |
1335 | |
1336 if (reg >= 4) | |
1337 { | |
1338 /* CHARSET is not yet designated to any graphic registers. */ | |
1339 /* At first check the requested designation. */ | |
1340 reg = CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset); | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
1341 if (reg == CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION) |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
1342 /* Since CHARSET requests no special designation, designate it |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
1343 to graphic register 0. */ |
17052 | 1344 reg = 0; |
1345 | |
1346 ENCODE_DESIGNATION (charset, reg, coding); | |
1347 } | |
1348 | |
1349 if (CODING_SPEC_ISO_INVOCATION (coding, 0) != reg | |
1350 && CODING_SPEC_ISO_INVOCATION (coding, 1) != reg) | |
1351 { | |
1352 /* Since the graphic register REG is not invoked to any graphic | |
1353 planes, invoke it to graphic plane 0. */ | |
1354 switch (reg) | |
1355 { | |
1356 case 0: /* graphic register 0 */ | |
1357 ENCODE_SHIFT_IN; | |
1358 break; | |
1359 | |
1360 case 1: /* graphic register 1 */ | |
1361 ENCODE_SHIFT_OUT; | |
1362 break; | |
1363 | |
1364 case 2: /* graphic register 2 */ | |
1365 if (coding->flags & CODING_FLAG_ISO_SINGLE_SHIFT) | |
1366 ENCODE_SINGLE_SHIFT_2; | |
1367 else | |
1368 ENCODE_LOCKING_SHIFT_2; | |
1369 break; | |
1370 | |
1371 case 3: /* graphic register 3 */ | |
1372 if (coding->flags & CODING_FLAG_ISO_SINGLE_SHIFT) | |
1373 ENCODE_SINGLE_SHIFT_3; | |
1374 else | |
1375 ENCODE_LOCKING_SHIFT_3; | |
1376 break; | |
1377 } | |
1378 } | |
1379 return dst; | |
1380 } | |
1381 | |
1382 /* The following two macros produce codes for indicating composition. */ | |
1383 #define ENCODE_COMPOSITION_NO_RULE_START *dst++ = ISO_CODE_ESC, *dst++ = '0' | |
1384 #define ENCODE_COMPOSITION_WITH_RULE_START *dst++ = ISO_CODE_ESC, *dst++ = '2' | |
1385 #define ENCODE_COMPOSITION_END *dst++ = ISO_CODE_ESC, *dst++ = '1' | |
1386 | |
1387 /* The following three macros produce codes for indicating direction | |
1388 of text. */ | |
1389 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \ | |
1390 do { \ | |
1391 if (coding->flags == CODING_FLAG_ISO_SEVEN_BITS) \ | |
1392 *dst++ = ISO_CODE_ESC, *dst++ = '['; \ | |
1393 else \ | |
1394 *dst++ = ISO_CODE_CSI; \ | |
1395 } while (0) | |
1396 | |
1397 #define ENCODE_DIRECTION_R2L \ | |
1398 ENCODE_CONTROL_SEQUENCE_INTRODUCER, *dst++ = '2', *dst++ = ']' | |
1399 | |
1400 #define ENCODE_DIRECTION_L2R \ | |
1401 ENCODE_CONTROL_SEQUENCE_INTRODUCER, *dst++ = '0', *dst++ = ']' | |
1402 | |
1403 /* Produce codes for designation and invocation to reset the graphic | |
1404 planes and registers to initial state. */ | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1405 #define ENCODE_RESET_PLANE_AND_REGISTER \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1406 do { \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1407 int reg; \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1408 if (CODING_SPEC_ISO_INVOCATION (coding, 0) != 0) \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1409 ENCODE_SHIFT_IN; \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1410 for (reg = 0; reg < 4; reg++) \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1411 if (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg) >= 0 \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1412 && (CODING_SPEC_ISO_DESIGNATION (coding, reg) \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1413 != CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg))) \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1414 ENCODE_DESIGNATION \ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1415 (CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, reg), reg, coding); \ |
17052 | 1416 } while (0) |
1417 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1418 /* Produce designation sequences of charsets in the line started from |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1419 *SRC to a place pointed by DSTP. |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1420 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1421 If the current block ends before any end-of-line, we may fail to |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1422 find all the necessary *designations. */ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1423 encode_designation_at_bol (coding, table, src, src_end, dstp) |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1424 struct coding_system *coding; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1425 Lisp_Object table; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1426 unsigned char *src, *src_end, **dstp; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1427 { |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1428 int charset, c, found = 0, reg; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1429 /* Table of charsets to be designated to each graphic register. */ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1430 int r[4]; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1431 unsigned char *dst = *dstp; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1432 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1433 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1434 r[reg] = -1; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1435 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1436 while (src < src_end && *src != '\n' && found < 4) |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1437 { |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1438 int bytes = BYTES_BY_CHAR_HEAD (*src); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1439 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1440 if (NILP (table)) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1441 charset = CHARSET_AT (src); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1442 else |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1443 { |
19824
ea89a2408bfa
(encode_designation_at_bol): Fix type of local vars C1, C2.
Richard M. Stallman <rms@gnu.org>
parents:
19815
diff
changeset
|
1444 int c_alt; |
ea89a2408bfa
(encode_designation_at_bol): Fix type of local vars C1, C2.
Richard M. Stallman <rms@gnu.org>
parents:
19815
diff
changeset
|
1445 unsigned char c1, c2; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1446 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1447 SPLIT_STRING(src, bytes, charset, c1, c2); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1448 if ((c_alt = unify_char (table, -1, charset, c1, c2)) >= 0) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1449 charset = CHAR_CHARSET (c_alt); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1450 } |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1451 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1452 reg = CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset); |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
1453 if (r[reg] == CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION) |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1454 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1455 found++; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1456 r[reg] = charset; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1457 } |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1458 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1459 src += bytes; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1460 } |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1461 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1462 if (found) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1463 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1464 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1465 if (r[reg] >= 0 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1466 && CODING_SPEC_ISO_DESIGNATION (coding, reg) != r[reg]) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1467 ENCODE_DESIGNATION (r[reg], reg, coding); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1468 *dstp = dst; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1469 } |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1470 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1471 |
17052 | 1472 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */ |
1473 | |
1474 int | |
1475 encode_coding_iso2022 (coding, source, destination, | |
1476 src_bytes, dst_bytes, consumed) | |
1477 struct coding_system *coding; | |
1478 unsigned char *source, *destination; | |
1479 int src_bytes, dst_bytes; | |
1480 int *consumed; | |
1481 { | |
1482 unsigned char *src = source; | |
1483 unsigned char *src_end = source + src_bytes; | |
1484 unsigned char *dst = destination; | |
1485 unsigned char *dst_end = destination + dst_bytes; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1486 /* Since the maximum bytes produced by each loop is 20, we subtract 19 |
17052 | 1487 from DST_END to assure overflow checking is necessary only at the |
1488 head of loop. */ | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1489 unsigned char *adjusted_dst_end = dst_end - 19; |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1490 Lisp_Object unification_table |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1491 = coding->character_unification_table_for_encode; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1492 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1493 if (!NILP (Venable_character_unification) && NILP (unification_table)) |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1494 unification_table = Vstandard_character_unification_table_for_encode; |
17052 | 1495 |
1496 while (src < src_end && dst < adjusted_dst_end) | |
1497 { | |
1498 /* SRC_BASE remembers the start position in source in each loop. | |
1499 The loop will be exited when there's not enough source text | |
1500 to analyze multi-byte codes (within macros ONE_MORE_BYTE, | |
1501 TWO_MORE_BYTES, and THREE_MORE_BYTES). In that case, SRC is | |
1502 reset to SRC_BASE before exiting. */ | |
1503 unsigned char *src_base = src; | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1504 int charset, c1, c2, c3, c4; |
17052 | 1505 |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1506 if (coding->flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1507 && CODING_SPEC_ISO_BOL (coding)) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1508 { |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1509 /* We have to produce designation sequences if any now. */ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1510 encode_designation_at_bol (coding, unification_table, |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1511 src, src_end, &dst); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1512 CODING_SPEC_ISO_BOL (coding) = 0; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1513 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1514 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1515 c1 = *src++; |
17052 | 1516 /* If we are seeing a component of a composite character, we are |
1517 seeing a leading-code specially encoded for composition, or a | |
1518 composition rule if composing with rule. We must set C1 | |
1519 to a normal leading-code or an ASCII code. If we are not at | |
1520 a composed character, we must reset the composition state. */ | |
1521 if (COMPOSING_P (coding->composing)) | |
1522 { | |
1523 if (c1 < 0xA0) | |
1524 { | |
1525 /* We are not in a composite character any longer. */ | |
1526 coding->composing = COMPOSING_NO; | |
1527 ENCODE_COMPOSITION_END; | |
1528 } | |
1529 else | |
1530 { | |
1531 if (coding->composing == COMPOSING_WITH_RULE_RULE) | |
1532 { | |
1533 *dst++ = c1 & 0x7F; | |
1534 coding->composing = COMPOSING_WITH_RULE_HEAD; | |
1535 continue; | |
1536 } | |
1537 else if (coding->composing == COMPOSING_WITH_RULE_HEAD) | |
1538 coding->composing = COMPOSING_WITH_RULE_RULE; | |
1539 if (c1 == 0xA0) | |
1540 { | |
1541 /* This is an ASCII component. */ | |
1542 ONE_MORE_BYTE (c1); | |
1543 c1 &= 0x7F; | |
1544 } | |
1545 else | |
1546 /* This is a leading-code of non ASCII component. */ | |
1547 c1 -= 0x20; | |
1548 } | |
1549 } | |
1550 | |
1551 /* Now encode one character. C1 is a control character, an | |
1552 ASCII character, or a leading-code of multi-byte character. */ | |
1553 switch (emacs_code_class[c1]) | |
1554 { | |
1555 case EMACS_ascii_code: | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1556 ENCODE_ISO_CHARACTER (CHARSET_ASCII, c1, /* dummy */ c2); |
17052 | 1557 break; |
1558 | |
1559 case EMACS_control_code: | |
1560 if (coding->flags & CODING_FLAG_ISO_RESET_AT_CNTL) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1561 ENCODE_RESET_PLANE_AND_REGISTER; |
17052 | 1562 *dst++ = c1; |
1563 break; | |
1564 | |
1565 case EMACS_carriage_return_code: | |
1566 if (!coding->selective) | |
1567 { | |
1568 if (coding->flags & CODING_FLAG_ISO_RESET_AT_CNTL) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1569 ENCODE_RESET_PLANE_AND_REGISTER; |
17052 | 1570 *dst++ = c1; |
1571 break; | |
1572 } | |
1573 /* fall down to treat '\r' as '\n' ... */ | |
1574 | |
1575 case EMACS_linefeed_code: | |
1576 if (coding->flags & CODING_FLAG_ISO_RESET_AT_EOL) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1577 ENCODE_RESET_PLANE_AND_REGISTER; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1578 if (coding->flags & CODING_FLAG_ISO_INIT_AT_BOL) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1579 bcopy (coding->spec.iso2022.initial_designation, |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1580 coding->spec.iso2022.current_designation, |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1581 sizeof coding->spec.iso2022.initial_designation); |
17052 | 1582 if (coding->eol_type == CODING_EOL_LF |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
1583 || coding->eol_type == CODING_EOL_UNDECIDED) |
17052 | 1584 *dst++ = ISO_CODE_LF; |
1585 else if (coding->eol_type == CODING_EOL_CRLF) | |
1586 *dst++ = ISO_CODE_CR, *dst++ = ISO_CODE_LF; | |
1587 else | |
1588 *dst++ = ISO_CODE_CR; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1589 CODING_SPEC_ISO_BOL (coding) = 1; |
17052 | 1590 break; |
1591 | |
1592 case EMACS_leading_code_2: | |
1593 ONE_MORE_BYTE (c2); | |
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1594 if (c2 < 0xA0) |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1595 { |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1596 /* invalid sequence */ |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1597 *dst++ = c1; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1598 *dst++ = c2; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1599 } |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1600 else |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1601 ENCODE_ISO_CHARACTER (c1, c2, /* dummy */ c3); |
17052 | 1602 break; |
1603 | |
1604 case EMACS_leading_code_3: | |
1605 TWO_MORE_BYTES (c2, c3); | |
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1606 if (c2 < 0xA0 || c3 < 0xA0) |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1607 { |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1608 /* invalid sequence */ |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1609 *dst++ = c1; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1610 *dst++ = c2; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1611 *dst++ = c3; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1612 } |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1613 else if (c1 < LEADING_CODE_PRIVATE_11) |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1614 ENCODE_ISO_CHARACTER (c1, c2, c3); |
17052 | 1615 else |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1616 ENCODE_ISO_CHARACTER (c2, c3, /* dummy */ c4); |
17052 | 1617 break; |
1618 | |
1619 case EMACS_leading_code_4: | |
1620 THREE_MORE_BYTES (c2, c3, c4); | |
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1621 if (c2 < 0xA0 || c3 < 0xA0 || c4 < 0xA0) |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1622 { |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1623 /* invalid sequence */ |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1624 *dst++ = c1; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1625 *dst++ = c2; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1626 *dst++ = c3; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1627 *dst++ = c4; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1628 } |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1629 else |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1630 ENCODE_ISO_CHARACTER (c2, c3, c4); |
17052 | 1631 break; |
1632 | |
1633 case EMACS_leading_code_composition: | |
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1634 ONE_MORE_BYTE (c2); |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1635 if (c2 < 0xA0) |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1636 { |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1637 /* invalid sequence */ |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1638 *dst++ = c1; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1639 *dst++ = c2; |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1640 } |
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
1641 else if (c2 == 0xFF) |
17052 | 1642 { |
1643 coding->composing = COMPOSING_WITH_RULE_HEAD; | |
1644 ENCODE_COMPOSITION_WITH_RULE_START; | |
1645 } | |
1646 else | |
1647 { | |
1648 /* Rewind one byte because it is a character code of | |
1649 composition elements. */ | |
1650 src--; | |
1651 coding->composing = COMPOSING_NO_RULE_HEAD; | |
1652 ENCODE_COMPOSITION_NO_RULE_START; | |
1653 } | |
1654 break; | |
1655 | |
1656 case EMACS_invalid_code: | |
1657 *dst++ = c1; | |
1658 break; | |
1659 } | |
1660 continue; | |
1661 label_end_of_loop: | |
19068
36b06087dc31
(encode_coding_iso2022): When source data ends not at
Kenichi Handa <handa@m17n.org>
parents:
19052
diff
changeset
|
1662 /* We reach here because the source date ends not at character |
36b06087dc31
(encode_coding_iso2022): When source data ends not at
Kenichi Handa <handa@m17n.org>
parents:
19052
diff
changeset
|
1663 boundary. */ |
36b06087dc31
(encode_coding_iso2022): When source data ends not at
Kenichi Handa <handa@m17n.org>
parents:
19052
diff
changeset
|
1664 coding->carryover_size = src_end - src_base; |
17052 | 1665 bcopy (src_base, coding->carryover, coding->carryover_size); |
19068
36b06087dc31
(encode_coding_iso2022): When source data ends not at
Kenichi Handa <handa@m17n.org>
parents:
19052
diff
changeset
|
1666 src = src_end; |
17052 | 1667 break; |
1668 } | |
1669 | |
1670 /* If this is the last block of the text to be encoded, we must | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1671 reset graphic planes and registers to the initial state. */ |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1672 if (src >= src_end && coding->last_block) |
17052 | 1673 { |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1674 ENCODE_RESET_PLANE_AND_REGISTER; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1675 if (coding->carryover_size > 0 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1676 && coding->carryover_size < (dst_end - dst)) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1677 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1678 bcopy (coding->carryover, dst, coding->carryover_size); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1679 dst += coding->carryover_size; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1680 coding->carryover_size = 0; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
1681 } |
17052 | 1682 } |
1683 *consumed = src - source; | |
1684 return dst - destination; | |
1685 } | |
1686 | |
1687 | |
1688 /*** 4. SJIS and BIG5 handlers ***/ | |
1689 | |
18766 | 1690 /* Although SJIS and BIG5 are not ISO's coding system, they are used |
17052 | 1691 quite widely. So, for the moment, Emacs supports them in the bare |
1692 C code. But, in the future, they may be supported only by CCL. */ | |
1693 | |
1694 /* SJIS is a coding system encoding three character sets: ASCII, right | |
1695 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded | |
1696 as is. A character of charset katakana-jisx0201 is encoded by | |
1697 "position-code + 0x80". A character of charset japanese-jisx0208 | |
1698 is encoded in 2-byte but two position-codes are divided and shifted | |
1699 so that it fit in the range below. | |
1700 | |
1701 --- CODE RANGE of SJIS --- | |
1702 (character set) (range) | |
1703 ASCII 0x00 .. 0x7F | |
1704 KATAKANA-JISX0201 0xA0 .. 0xDF | |
1705 JISX0208 (1st byte) 0x80 .. 0x9F and 0xE0 .. 0xFF | |
1706 (2nd byte) 0x40 .. 0xFF | |
1707 ------------------------------- | |
1708 | |
1709 */ | |
1710 | |
1711 /* BIG5 is a coding system encoding two character sets: ASCII and | |
1712 Big5. An ASCII character is encoded as is. Big5 is a two-byte | |
1713 character set and is encoded in two-byte. | |
1714 | |
1715 --- CODE RANGE of BIG5 --- | |
1716 (character set) (range) | |
1717 ASCII 0x00 .. 0x7F | |
1718 Big5 (1st byte) 0xA1 .. 0xFE | |
1719 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE | |
1720 -------------------------- | |
1721 | |
1722 Since the number of characters in Big5 is larger than maximum | |
1723 characters in Emacs' charset (96x96), it can't be handled as one | |
1724 charset. So, in Emacs, Big5 is divided into two: `charset-big5-1' | |
1725 and `charset-big5-2'. Both are DIMENSION2 and CHARS94. The former | |
1726 contains frequently used characters and the latter contains less | |
1727 frequently used characters. */ | |
1728 | |
1729 /* Macros to decode or encode a character of Big5 in BIG5. B1 and B2 | |
1730 are the 1st and 2nd position-codes of Big5 in BIG5 coding system. | |
1731 C1 and C2 are the 1st and 2nd position-codes of of Emacs' internal | |
1732 format. CHARSET is `charset_big5_1' or `charset_big5_2'. */ | |
1733 | |
1734 /* Number of Big5 characters which have the same code in 1st byte. */ | |
1735 #define BIG5_SAME_ROW (0xFF - 0xA1 + 0x7F - 0x40) | |
1736 | |
1737 #define DECODE_BIG5(b1, b2, charset, c1, c2) \ | |
1738 do { \ | |
1739 unsigned int temp \ | |
1740 = (b1 - 0xA1) * BIG5_SAME_ROW + b2 - (b2 < 0x7F ? 0x40 : 0x62); \ | |
1741 if (b1 < 0xC9) \ | |
1742 charset = charset_big5_1; \ | |
1743 else \ | |
1744 { \ | |
1745 charset = charset_big5_2; \ | |
1746 temp -= (0xC9 - 0xA1) * BIG5_SAME_ROW; \ | |
1747 } \ | |
1748 c1 = temp / (0xFF - 0xA1) + 0x21; \ | |
1749 c2 = temp % (0xFF - 0xA1) + 0x21; \ | |
1750 } while (0) | |
1751 | |
1752 #define ENCODE_BIG5(charset, c1, c2, b1, b2) \ | |
1753 do { \ | |
1754 unsigned int temp = (c1 - 0x21) * (0xFF - 0xA1) + (c2 - 0x21); \ | |
1755 if (charset == charset_big5_2) \ | |
1756 temp += BIG5_SAME_ROW * (0xC9 - 0xA1); \ | |
1757 b1 = temp / BIG5_SAME_ROW + 0xA1; \ | |
1758 b2 = temp % BIG5_SAME_ROW; \ | |
1759 b2 += b2 < 0x3F ? 0x40 : 0x62; \ | |
1760 } while (0) | |
1761 | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1762 #define DECODE_SJIS_BIG5_CHARACTER(charset, c1, c2) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1763 do { \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1764 int c_alt, charset_alt = (charset); \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1765 if (!NILP (unification_table) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1766 && ((c_alt = unify_char (unification_table, \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1767 -1, (charset), c1, c2)) >= 0)) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1768 SPLIT_CHAR (c_alt, charset_alt, c1, c2); \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1769 if (charset_alt == CHARSET_ASCII || charset_alt < 0) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1770 DECODE_CHARACTER_ASCII (c1); \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1771 else if (CHARSET_DIMENSION (charset_alt) == 1) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1772 DECODE_CHARACTER_DIMENSION1 (charset_alt, c1); \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1773 else \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1774 DECODE_CHARACTER_DIMENSION2 (charset_alt, c1, c2); \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1775 } while (0) |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1776 |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1777 #define ENCODE_SJIS_BIG5_CHARACTER(charset, c1, c2) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1778 do { \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1779 int c_alt, charset_alt; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1780 if (!NILP (unification_table) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1781 && ((c_alt = unify_char (unification_table, -1, charset, c1, c2)) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1782 >= 0)) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1783 SPLIT_CHAR (c_alt, charset_alt, c1, c2); \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1784 else \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1785 charset_alt = charset; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1786 if (charset_alt == charset_ascii) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1787 *dst++ = c1; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1788 else if (CHARSET_DIMENSION (charset_alt) == 1) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1789 { \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1790 if (sjis_p && charset_alt == charset_katakana_jisx0201) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1791 *dst++ = c1; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1792 else \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1793 *dst++ = charset_alt, *dst++ = c1; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1794 } \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1795 else \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1796 { \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1797 c1 &= 0x7F, c2 &= 0x7F; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1798 if (sjis_p && charset_alt == charset_jisx0208) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1799 { \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1800 unsigned char s1, s2; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1801 \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1802 ENCODE_SJIS (c1, c2, s1, s2); \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1803 *dst++ = s1, *dst++ = s2; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1804 } \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1805 else if (!sjis_p \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1806 && (charset_alt == charset_big5_1 \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1807 || charset_alt == charset_big5_2)) \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1808 { \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1809 unsigned char b1, b2; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1810 \ |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
1811 ENCODE_BIG5 (charset_alt, c1, c2, b1, b2); \ |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1812 *dst++ = b1, *dst++ = b2; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1813 } \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1814 else \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1815 *dst++ = charset_alt, *dst++ = c1, *dst++ = c2; \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1816 } \ |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1817 } while (0); |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1818 |
17052 | 1819 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
1820 Check if a text is encoded in SJIS. If it is, return | |
1821 CODING_CATEGORY_MASK_SJIS, else return 0. */ | |
1822 | |
1823 int | |
1824 detect_coding_sjis (src, src_end) | |
1825 unsigned char *src, *src_end; | |
1826 { | |
1827 unsigned char c; | |
1828 | |
1829 while (src < src_end) | |
1830 { | |
1831 c = *src++; | |
1832 if (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) | |
1833 return 0; | |
1834 if ((c >= 0x80 && c < 0xA0) || c >= 0xE0) | |
1835 { | |
1836 if (src < src_end && *src++ < 0x40) | |
1837 return 0; | |
1838 } | |
1839 } | |
1840 return CODING_CATEGORY_MASK_SJIS; | |
1841 } | |
1842 | |
1843 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
1844 Check if a text is encoded in BIG5. If it is, return | |
1845 CODING_CATEGORY_MASK_BIG5, else return 0. */ | |
1846 | |
1847 int | |
1848 detect_coding_big5 (src, src_end) | |
1849 unsigned char *src, *src_end; | |
1850 { | |
1851 unsigned char c; | |
1852 | |
1853 while (src < src_end) | |
1854 { | |
1855 c = *src++; | |
1856 if (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) | |
1857 return 0; | |
1858 if (c >= 0xA1) | |
1859 { | |
1860 if (src >= src_end) | |
1861 break; | |
1862 c = *src++; | |
1863 if (c < 0x40 || (c >= 0x7F && c <= 0xA0)) | |
1864 return 0; | |
1865 } | |
1866 } | |
1867 return CODING_CATEGORY_MASK_BIG5; | |
1868 } | |
1869 | |
1870 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". | |
1871 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */ | |
1872 | |
1873 int | |
1874 decode_coding_sjis_big5 (coding, source, destination, | |
1875 src_bytes, dst_bytes, consumed, sjis_p) | |
1876 struct coding_system *coding; | |
1877 unsigned char *source, *destination; | |
1878 int src_bytes, dst_bytes; | |
1879 int *consumed; | |
1880 int sjis_p; | |
1881 { | |
1882 unsigned char *src = source; | |
1883 unsigned char *src_end = source + src_bytes; | |
1884 unsigned char *dst = destination; | |
1885 unsigned char *dst_end = destination + dst_bytes; | |
1886 /* Since the maximum bytes produced by each loop is 4, we subtract 3 | |
1887 from DST_END to assure overflow checking is necessary only at the | |
1888 head of loop. */ | |
1889 unsigned char *adjusted_dst_end = dst_end - 3; | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1890 Lisp_Object unification_table |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1891 = coding->character_unification_table_for_decode; |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1892 |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1893 if (!NILP (Venable_character_unification) && NILP (unification_table)) |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1894 unification_table = Vstandard_character_unification_table_for_decode; |
17052 | 1895 |
1896 while (src < src_end && dst < adjusted_dst_end) | |
1897 { | |
1898 /* SRC_BASE remembers the start position in source in each loop. | |
1899 The loop will be exited when there's not enough source text | |
1900 to analyze two-byte character (within macro ONE_MORE_BYTE). | |
1901 In that case, SRC is reset to SRC_BASE before exiting. */ | |
1902 unsigned char *src_base = src; | |
1903 unsigned char c1 = *src++, c2, c3, c4; | |
1904 | |
1905 if (c1 == '\r') | |
1906 { | |
1907 if (coding->eol_type == CODING_EOL_CRLF) | |
1908 { | |
1909 ONE_MORE_BYTE (c2); | |
1910 if (c2 == '\n') | |
1911 *dst++ = c2; | |
1912 else | |
1913 /* To process C2 again, SRC is subtracted by 1. */ | |
1914 *dst++ = c1, src--; | |
1915 } | |
1916 else | |
1917 *dst++ = c1; | |
1918 } | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1919 else if (c1 < 0x20) |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1920 *dst++ = c1; |
17052 | 1921 else if (c1 < 0x80) |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1922 DECODE_SJIS_BIG5_CHARACTER (charset_ascii, c1, /* dummy */ c2); |
17052 | 1923 else if (c1 < 0xA0 || c1 >= 0xE0) |
1924 { | |
1925 /* SJIS -> JISX0208, BIG5 -> Big5 (only if 0xE0 <= c1 < 0xFF) */ | |
1926 if (sjis_p) | |
1927 { | |
1928 ONE_MORE_BYTE (c2); | |
1929 DECODE_SJIS (c1, c2, c3, c4); | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1930 DECODE_SJIS_BIG5_CHARACTER (charset_jisx0208, c3, c4); |
17052 | 1931 } |
1932 else if (c1 >= 0xE0 && c1 < 0xFF) | |
1933 { | |
1934 int charset; | |
1935 | |
1936 ONE_MORE_BYTE (c2); | |
1937 DECODE_BIG5 (c1, c2, charset, c3, c4); | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1938 DECODE_SJIS_BIG5_CHARACTER (charset, c3, c4); |
17052 | 1939 } |
1940 else /* Invalid code */ | |
1941 *dst++ = c1; | |
1942 } | |
1943 else | |
1944 { | |
1945 /* SJIS -> JISX0201-Kana, BIG5 -> Big5 */ | |
1946 if (sjis_p) | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1947 DECODE_SJIS_BIG5_CHARACTER (charset_katakana_jisx0201, c1, /* dummy */ c2); |
17052 | 1948 else |
1949 { | |
1950 int charset; | |
1951 | |
1952 ONE_MORE_BYTE (c2); | |
1953 DECODE_BIG5 (c1, c2, charset, c3, c4); | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1954 DECODE_SJIS_BIG5_CHARACTER (charset, c3, c4); |
17052 | 1955 } |
1956 } | |
1957 continue; | |
1958 | |
1959 label_end_of_loop: | |
1960 coding->carryover_size = src - src_base; | |
1961 bcopy (src_base, coding->carryover, coding->carryover_size); | |
1962 src = src_base; | |
1963 break; | |
1964 } | |
1965 | |
1966 *consumed = src - source; | |
1967 return dst - destination; | |
1968 } | |
1969 | |
1970 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". | |
1971 This function can encode `charset_ascii', `charset_katakana_jisx0201', | |
1972 `charset_jisx0208', `charset_big5_1', and `charset_big5-2'. We are | |
1973 sure that all these charsets are registered as official charset | |
1974 (i.e. do not have extended leading-codes). Characters of other | |
1975 charsets are produced without any encoding. If SJIS_P is 1, encode | |
1976 SJIS text, else encode BIG5 text. */ | |
1977 | |
1978 int | |
1979 encode_coding_sjis_big5 (coding, source, destination, | |
1980 src_bytes, dst_bytes, consumed, sjis_p) | |
1981 struct coding_system *coding; | |
1982 unsigned char *source, *destination; | |
1983 int src_bytes, dst_bytes; | |
1984 int *consumed; | |
1985 int sjis_p; | |
1986 { | |
1987 unsigned char *src = source; | |
1988 unsigned char *src_end = source + src_bytes; | |
1989 unsigned char *dst = destination; | |
1990 unsigned char *dst_end = destination + dst_bytes; | |
1991 /* Since the maximum bytes produced by each loop is 2, we subtract 1 | |
1992 from DST_END to assure overflow checking is necessary only at the | |
1993 head of loop. */ | |
1994 unsigned char *adjusted_dst_end = dst_end - 1; | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1995 Lisp_Object unification_table |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1996 = coding->character_unification_table_for_encode; |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1997 |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1998 if (!NILP (Venable_character_unification) && NILP (unification_table)) |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
1999 unification_table = Vstandard_character_unification_table_for_encode; |
17052 | 2000 |
2001 while (src < src_end && dst < adjusted_dst_end) | |
2002 { | |
2003 /* SRC_BASE remembers the start position in source in each loop. | |
2004 The loop will be exited when there's not enough source text | |
2005 to analyze multi-byte codes (within macros ONE_MORE_BYTE and | |
2006 TWO_MORE_BYTES). In that case, SRC is reset to SRC_BASE | |
2007 before exiting. */ | |
2008 unsigned char *src_base = src; | |
2009 unsigned char c1 = *src++, c2, c3, c4; | |
2010 | |
2011 if (coding->composing) | |
2012 { | |
2013 if (c1 == 0xA0) | |
2014 { | |
2015 ONE_MORE_BYTE (c1); | |
2016 c1 &= 0x7F; | |
2017 } | |
2018 else if (c1 >= 0xA0) | |
2019 c1 -= 0x20; | |
2020 else | |
2021 coding->composing = 0; | |
2022 } | |
2023 | |
2024 switch (emacs_code_class[c1]) | |
2025 { | |
2026 case EMACS_ascii_code: | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2027 ENCODE_SJIS_BIG5_CHARACTER (charset_ascii, c1, /* dummy */ c2); |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2028 break; |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2029 |
17052 | 2030 case EMACS_control_code: |
2031 *dst++ = c1; | |
2032 break; | |
2033 | |
2034 case EMACS_carriage_return_code: | |
2035 if (!coding->selective) | |
2036 { | |
2037 *dst++ = c1; | |
2038 break; | |
2039 } | |
2040 /* fall down to treat '\r' as '\n' ... */ | |
2041 | |
2042 case EMACS_linefeed_code: | |
2043 if (coding->eol_type == CODING_EOL_LF | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2044 || coding->eol_type == CODING_EOL_UNDECIDED) |
17052 | 2045 *dst++ = '\n'; |
2046 else if (coding->eol_type == CODING_EOL_CRLF) | |
2047 *dst++ = '\r', *dst++ = '\n'; | |
2048 else | |
2049 *dst++ = '\r'; | |
2050 break; | |
2051 | |
2052 case EMACS_leading_code_2: | |
2053 ONE_MORE_BYTE (c2); | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2054 ENCODE_SJIS_BIG5_CHARACTER (c1, c2, /* dummy */ c3); |
17052 | 2055 break; |
2056 | |
2057 case EMACS_leading_code_3: | |
2058 TWO_MORE_BYTES (c2, c3); | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2059 ENCODE_SJIS_BIG5_CHARACTER (c1, c2, c3); |
17052 | 2060 break; |
2061 | |
2062 case EMACS_leading_code_4: | |
2063 THREE_MORE_BYTES (c2, c3, c4); | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2064 ENCODE_SJIS_BIG5_CHARACTER (c2, c3, c4); |
17052 | 2065 break; |
2066 | |
2067 case EMACS_leading_code_composition: | |
2068 coding->composing = 1; | |
2069 break; | |
2070 | |
2071 default: /* i.e. case EMACS_invalid_code: */ | |
2072 *dst++ = c1; | |
2073 } | |
2074 continue; | |
2075 | |
2076 label_end_of_loop: | |
19068
36b06087dc31
(encode_coding_iso2022): When source data ends not at
Kenichi Handa <handa@m17n.org>
parents:
19052
diff
changeset
|
2077 coding->carryover_size = src_end - src_base; |
17052 | 2078 bcopy (src_base, coding->carryover, coding->carryover_size); |
19068
36b06087dc31
(encode_coding_iso2022): When source data ends not at
Kenichi Handa <handa@m17n.org>
parents:
19052
diff
changeset
|
2079 src = src_end; |
17052 | 2080 break; |
2081 } | |
2082 | |
2083 *consumed = src - source; | |
2084 return dst - destination; | |
2085 } | |
2086 | |
2087 | |
2088 /*** 5. End-of-line handlers ***/ | |
2089 | |
2090 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". | |
2091 This function is called only when `coding->eol_type' is | |
2092 CODING_EOL_CRLF or CODING_EOL_CR. */ | |
2093 | |
2094 decode_eol (coding, source, destination, src_bytes, dst_bytes, consumed) | |
2095 struct coding_system *coding; | |
2096 unsigned char *source, *destination; | |
2097 int src_bytes, dst_bytes; | |
2098 int *consumed; | |
2099 { | |
2100 unsigned char *src = source; | |
2101 unsigned char *src_end = source + src_bytes; | |
2102 unsigned char *dst = destination; | |
2103 unsigned char *dst_end = destination + dst_bytes; | |
2104 int produced; | |
2105 | |
2106 switch (coding->eol_type) | |
2107 { | |
2108 case CODING_EOL_CRLF: | |
2109 { | |
2110 /* Since the maximum bytes produced by each loop is 2, we | |
2111 subtract 1 from DST_END to assure overflow checking is | |
2112 necessary only at the head of loop. */ | |
2113 unsigned char *adjusted_dst_end = dst_end - 1; | |
2114 | |
2115 while (src < src_end && dst < adjusted_dst_end) | |
2116 { | |
2117 unsigned char *src_base = src; | |
2118 unsigned char c = *src++; | |
2119 if (c == '\r') | |
2120 { | |
2121 ONE_MORE_BYTE (c); | |
2122 if (c != '\n') | |
2123 *dst++ = '\r'; | |
17137
bd8d38879c97
(decode_eol): Fix bug of converting CRLF to LF.
Kenichi Handa <handa@m17n.org>
parents:
17119
diff
changeset
|
2124 *dst++ = c; |
17052 | 2125 } |
2126 else | |
2127 *dst++ = c; | |
2128 continue; | |
2129 | |
2130 label_end_of_loop: | |
2131 coding->carryover_size = src - src_base; | |
2132 bcopy (src_base, coding->carryover, coding->carryover_size); | |
2133 src = src_base; | |
2134 break; | |
2135 } | |
2136 *consumed = src - source; | |
2137 produced = dst - destination; | |
2138 break; | |
2139 } | |
2140 | |
2141 case CODING_EOL_CR: | |
2142 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
2143 bcopy (source, destination, produced); | |
2144 dst_end = destination + produced; | |
2145 while (dst < dst_end) | |
2146 if (*dst++ == '\r') dst[-1] = '\n'; | |
2147 *consumed = produced; | |
2148 break; | |
2149 | |
2150 default: /* i.e. case: CODING_EOL_LF */ | |
2151 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
2152 bcopy (source, destination, produced); | |
2153 *consumed = produced; | |
2154 break; | |
2155 } | |
2156 | |
2157 return produced; | |
2158 } | |
2159 | |
2160 /* See "GENERAL NOTES about `encode_coding_XXX ()' functions". Encode | |
2161 format of end-of-line according to `coding->eol_type'. If | |
2162 `coding->selective' is 1, code '\r' in source text also means | |
2163 end-of-line. */ | |
2164 | |
2165 encode_eol (coding, source, destination, src_bytes, dst_bytes, consumed) | |
2166 struct coding_system *coding; | |
2167 unsigned char *source, *destination; | |
2168 int src_bytes, dst_bytes; | |
2169 int *consumed; | |
2170 { | |
2171 unsigned char *src = source; | |
2172 unsigned char *dst = destination; | |
2173 int produced; | |
2174 | |
2175 if (src_bytes <= 0) | |
2176 return 0; | |
2177 | |
2178 switch (coding->eol_type) | |
2179 { | |
2180 case CODING_EOL_LF: | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2181 case CODING_EOL_UNDECIDED: |
17052 | 2182 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; |
2183 bcopy (source, destination, produced); | |
2184 if (coding->selective) | |
2185 { | |
2186 int i = produced; | |
2187 while (i--) | |
2188 if (*dst++ == '\r') dst[-1] = '\n'; | |
2189 } | |
2190 *consumed = produced; | |
2191 | |
2192 case CODING_EOL_CRLF: | |
2193 { | |
2194 unsigned char c; | |
2195 unsigned char *src_end = source + src_bytes; | |
2196 unsigned char *dst_end = destination + dst_bytes; | |
2197 /* Since the maximum bytes produced by each loop is 2, we | |
2198 subtract 1 from DST_END to assure overflow checking is | |
2199 necessary only at the head of loop. */ | |
2200 unsigned char *adjusted_dst_end = dst_end - 1; | |
2201 | |
2202 while (src < src_end && dst < adjusted_dst_end) | |
2203 { | |
2204 c = *src++; | |
2205 if (c == '\n' || (c == '\r' && coding->selective)) | |
2206 *dst++ = '\r', *dst++ = '\n'; | |
2207 else | |
2208 *dst++ = c; | |
2209 } | |
2210 produced = dst - destination; | |
2211 *consumed = src - source; | |
2212 break; | |
2213 } | |
2214 | |
2215 default: /* i.e. case CODING_EOL_CR: */ | |
2216 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
2217 bcopy (source, destination, produced); | |
2218 { | |
2219 int i = produced; | |
2220 while (i--) | |
2221 if (*dst++ == '\n') dst[-1] = '\r'; | |
2222 } | |
2223 *consumed = produced; | |
2224 } | |
2225 | |
2226 return produced; | |
2227 } | |
2228 | |
2229 | |
2230 /*** 6. C library functions ***/ | |
2231 | |
2232 /* In Emacs Lisp, coding system is represented by a Lisp symbol which | |
2233 has a property `coding-system'. The value of this property is a | |
2234 vector of length 5 (called as coding-vector). Among elements of | |
2235 this vector, the first (element[0]) and the fifth (element[4]) | |
2236 carry important information for decoding/encoding. Before | |
2237 decoding/encoding, this information should be set in fields of a | |
2238 structure of type `coding_system'. | |
2239 | |
2240 A value of property `coding-system' can be a symbol of another | |
2241 subsidiary coding-system. In that case, Emacs gets coding-vector | |
2242 from that symbol. | |
2243 | |
2244 `element[0]' contains information to be set in `coding->type'. The | |
2245 value and its meaning is as follows: | |
2246 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2247 0 -- coding_type_emacs_mule |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2248 1 -- coding_type_sjis |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2249 2 -- coding_type_iso2022 |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2250 3 -- coding_type_big5 |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2251 4 -- coding_type_ccl encoder/decoder written in CCL |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2252 nil -- coding_type_no_conversion |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2253 t -- coding_type_undecided (automatic conversion on decoding, |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2254 no-conversion on encoding) |
17052 | 2255 |
2256 `element[4]' contains information to be set in `coding->flags' and | |
2257 `coding->spec'. The meaning varies by `coding->type'. | |
2258 | |
2259 If `coding->type' is `coding_type_iso2022', element[4] is a vector | |
2260 of length 32 (of which the first 13 sub-elements are used now). | |
2261 Meanings of these sub-elements are: | |
2262 | |
2263 sub-element[N] where N is 0 through 3: to be set in `coding->spec.iso2022' | |
2264 If the value is an integer of valid charset, the charset is | |
2265 assumed to be designated to graphic register N initially. | |
2266 | |
2267 If the value is minus, it is a minus value of charset which | |
2268 reserves graphic register N, which means that the charset is | |
2269 not designated initially but should be designated to graphic | |
2270 register N just before encoding a character in that charset. | |
2271 | |
2272 If the value is nil, graphic register N is never used on | |
2273 encoding. | |
2274 | |
2275 sub-element[N] where N is 4 through 11: to be set in `coding->flags' | |
2276 Each value takes t or nil. See the section ISO2022 of | |
2277 `coding.h' for more information. | |
2278 | |
2279 If `coding->type' is `coding_type_big5', element[4] is t to denote | |
2280 BIG5-ETen or nil to denote BIG5-HKU. | |
2281 | |
2282 If `coding->type' takes the other value, element[4] is ignored. | |
2283 | |
2284 Emacs Lisp's coding system also carries information about format of | |
2285 end-of-line in a value of property `eol-type'. If the value is | |
2286 integer, 0 means CODING_EOL_LF, 1 means CODING_EOL_CRLF, and 2 | |
2287 means CODING_EOL_CR. If it is not integer, it should be a vector | |
2288 of subsidiary coding systems of which property `eol-type' has one | |
2289 of above values. | |
2290 | |
2291 */ | |
2292 | |
2293 /* Extract information for decoding/encoding from CODING_SYSTEM_SYMBOL | |
2294 and set it in CODING. If CODING_SYSTEM_SYMBOL is invalid, CODING | |
2295 is setup so that no conversion is necessary and return -1, else | |
2296 return 0. */ | |
2297 | |
2298 int | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2299 setup_coding_system (coding_system, coding) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2300 Lisp_Object coding_system; |
17052 | 2301 struct coding_system *coding; |
2302 { | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2303 Lisp_Object coding_spec, plist, type, eol_type; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2304 Lisp_Object val; |
17052 | 2305 |
18766 | 2306 /* At first, set several fields to default values. */ |
17052 | 2307 coding->require_flushing = 0; |
2308 coding->last_block = 0; | |
2309 coding->selective = 0; | |
2310 coding->composing = 0; | |
2311 coding->direction = 0; | |
2312 coding->carryover_size = 0; | |
2313 coding->post_read_conversion = coding->pre_write_conversion = Qnil; | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2314 coding->character_unification_table_for_decode = Qnil; |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2315 coding->character_unification_table_for_encode = Qnil; |
17052 | 2316 |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2317 Vlast_coding_system_used = coding->symbol = coding_system; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2318 eol_type = Qnil; |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2319 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2320 /* Get values of property `coding-system' and `eol-type'. |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2321 Also get values of coding system properties: |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2322 `post-read-conversion', `pre-write-conversion', |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
2323 `character-unification-table-for-decode', |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2324 `character-unification-table-for-encode'. */ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2325 coding_spec = Fget (coding_system, Qcoding_system); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2326 if (!VECTORP (coding_spec) |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2327 || XVECTOR (coding_spec)->size != 5 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2328 || !CONSP (XVECTOR (coding_spec)->contents[3])) |
17052 | 2329 goto label_invalid_coding_system; |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2330 if (!inhibit_eol_conversion) |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2331 eol_type = Fget (coding_system, Qeol_type); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2332 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2333 plist = XVECTOR (coding_spec)->contents[3]; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2334 coding->post_read_conversion = Fplist_get (plist, Qpost_read_conversion); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2335 coding->pre_write_conversion = Fplist_get (plist, Qpre_write_conversion); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2336 val = Fplist_get (plist, Qcharacter_unification_table_for_decode); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2337 if (SYMBOLP (val)) |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2338 val = Fget (val, Qcharacter_unification_table_for_decode); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2339 coding->character_unification_table_for_decode |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2340 = CHAR_TABLE_P (val) ? val : Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2341 val = Fplist_get (plist, Qcharacter_unification_table_for_encode); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2342 if (SYMBOLP (val)) |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2343 val = Fget (val, Qcharacter_unification_table_for_encode); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2344 coding->character_unification_table_for_encode |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2345 = CHAR_TABLE_P (val) ? val : Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2346 |
17052 | 2347 if (VECTORP (eol_type)) |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2348 coding->eol_type = CODING_EOL_UNDECIDED; |
17052 | 2349 else if (XFASTINT (eol_type) == 1) |
2350 coding->eol_type = CODING_EOL_CRLF; | |
2351 else if (XFASTINT (eol_type) == 2) | |
2352 coding->eol_type = CODING_EOL_CR; | |
2353 else | |
2354 coding->eol_type = CODING_EOL_LF; | |
2355 | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2356 type = XVECTOR (coding_spec)->contents[0]; |
17052 | 2357 switch (XFASTINT (type)) |
2358 { | |
2359 case 0: | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2360 coding->type = coding_type_emacs_mule; |
17052 | 2361 break; |
2362 | |
2363 case 1: | |
2364 coding->type = coding_type_sjis; | |
2365 break; | |
2366 | |
2367 case 2: | |
2368 coding->type = coding_type_iso2022; | |
2369 { | |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
2370 Lisp_Object val; |
17052 | 2371 Lisp_Object *flags; |
2372 int i, charset, default_reg_bits = 0; | |
2373 | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2374 val = XVECTOR (coding_spec)->contents[4]; |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
2375 |
17052 | 2376 if (!VECTORP (val) || XVECTOR (val)->size != 32) |
2377 goto label_invalid_coding_system; | |
2378 | |
2379 flags = XVECTOR (val)->contents; | |
2380 coding->flags | |
2381 = ((NILP (flags[4]) ? 0 : CODING_FLAG_ISO_SHORT_FORM) | |
2382 | (NILP (flags[5]) ? 0 : CODING_FLAG_ISO_RESET_AT_EOL) | |
2383 | (NILP (flags[6]) ? 0 : CODING_FLAG_ISO_RESET_AT_CNTL) | |
2384 | (NILP (flags[7]) ? 0 : CODING_FLAG_ISO_SEVEN_BITS) | |
2385 | (NILP (flags[8]) ? 0 : CODING_FLAG_ISO_LOCKING_SHIFT) | |
2386 | (NILP (flags[9]) ? 0 : CODING_FLAG_ISO_SINGLE_SHIFT) | |
2387 | (NILP (flags[10]) ? 0 : CODING_FLAG_ISO_USE_ROMAN) | |
2388 | (NILP (flags[11]) ? 0 : CODING_FLAG_ISO_USE_OLDJIS) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2389 | (NILP (flags[12]) ? 0 : CODING_FLAG_ISO_NO_DIRECTION) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2390 | (NILP (flags[13]) ? 0 : CODING_FLAG_ISO_INIT_AT_BOL) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2391 | (NILP (flags[14]) ? 0 : CODING_FLAG_ISO_DESIGNATE_AT_BOL) |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2392 | (NILP (flags[15]) ? 0 : CODING_FLAG_ISO_SAFE) |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2393 | (NILP (flags[16]) ? 0 : CODING_FLAG_ISO_LATIN_EXTRA) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2394 ); |
17052 | 2395 |
2396 /* Invoke graphic register 0 to plane 0. */ | |
2397 CODING_SPEC_ISO_INVOCATION (coding, 0) = 0; | |
2398 /* Invoke graphic register 1 to plane 1 if we can use full 8-bit. */ | |
2399 CODING_SPEC_ISO_INVOCATION (coding, 1) | |
2400 = (coding->flags & CODING_FLAG_ISO_SEVEN_BITS ? -1 : 1); | |
2401 /* Not single shifting at first. */ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2402 CODING_SPEC_ISO_SINGLE_SHIFTING (coding) = 0; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2403 /* Beginning of buffer should also be regarded as bol. */ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2404 CODING_SPEC_ISO_BOL (coding) = 1; |
17052 | 2405 |
2406 /* Checks FLAGS[REG] (REG = 0, 1, 2 3) and decide designations. | |
2407 FLAGS[REG] can be one of below: | |
2408 integer CHARSET: CHARSET occupies register I, | |
2409 t: designate nothing to REG initially, but can be used | |
2410 by any charsets, | |
2411 list of integer, nil, or t: designate the first | |
2412 element (if integer) to REG initially, the remaining | |
2413 elements (if integer) is designated to REG on request, | |
2414 if an element is t, REG can be used by any charset, | |
2415 nil: REG is never used. */ | |
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17137
diff
changeset
|
2416 for (charset = 0; charset <= MAX_CHARSET; charset++) |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
2417 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
2418 = CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION; |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2419 bzero (CODING_SPEC_ISO_EXPECTED_CHARSETS (coding), MAX_CHARSET + 1); |
17052 | 2420 for (i = 0; i < 4; i++) |
2421 { | |
2422 if (INTEGERP (flags[i]) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2423 && (charset = XINT (flags[i]), CHARSET_VALID_P (charset)) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2424 || (charset = get_charset_id (flags[i])) >= 0) |
17052 | 2425 { |
2426 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = charset; | |
2427 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) = i; | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2428 CODING_SPEC_ISO_EXPECTED_CHARSETS (coding)[charset] = 1; |
17052 | 2429 } |
2430 else if (EQ (flags[i], Qt)) | |
2431 { | |
2432 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = -1; | |
2433 default_reg_bits |= 1 << i; | |
2434 } | |
2435 else if (CONSP (flags[i])) | |
2436 { | |
2437 Lisp_Object tail = flags[i]; | |
2438 | |
2439 if (INTEGERP (XCONS (tail)->car) | |
2440 && (charset = XINT (XCONS (tail)->car), | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2441 CHARSET_VALID_P (charset)) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2442 || (charset = get_charset_id (XCONS (tail)->car)) >= 0) |
17052 | 2443 { |
2444 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = charset; | |
2445 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) =i; | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2446 CODING_SPEC_ISO_EXPECTED_CHARSETS (coding)[charset] = 1; |
17052 | 2447 } |
2448 else | |
2449 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = -1; | |
2450 tail = XCONS (tail)->cdr; | |
2451 while (CONSP (tail)) | |
2452 { | |
2453 if (INTEGERP (XCONS (tail)->car) | |
2454 && (charset = XINT (XCONS (tail)->car), | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2455 CHARSET_VALID_P (charset)) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2456 || (charset = get_charset_id (XCONS (tail)->car)) >= 0) |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2457 { |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2458 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2459 = i; |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2460 CODING_SPEC_ISO_EXPECTED_CHARSETS (coding)[charset] |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2461 = 1; |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2462 } |
17052 | 2463 else if (EQ (XCONS (tail)->car, Qt)) |
2464 default_reg_bits |= 1 << i; | |
2465 tail = XCONS (tail)->cdr; | |
2466 } | |
2467 } | |
2468 else | |
2469 CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i) = -1; | |
2470 | |
2471 CODING_SPEC_ISO_DESIGNATION (coding, i) | |
2472 = CODING_SPEC_ISO_INITIAL_DESIGNATION (coding, i); | |
2473 } | |
2474 | |
2475 if (! (coding->flags & CODING_FLAG_ISO_LOCKING_SHIFT)) | |
2476 { | |
2477 /* REG 1 can be used only by locking shift in 7-bit env. */ | |
2478 if (coding->flags & CODING_FLAG_ISO_SEVEN_BITS) | |
2479 default_reg_bits &= ~2; | |
2480 if (! (coding->flags & CODING_FLAG_ISO_SINGLE_SHIFT)) | |
2481 /* Without any shifting, only REG 0 and 1 can be used. */ | |
2482 default_reg_bits &= 3; | |
2483 } | |
2484 | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2485 for (charset = 0; charset <= MAX_CHARSET; charset++) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2486 if (CHARSET_VALID_P (charset) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2487 && (CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2488 == CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION)) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2489 { |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2490 /* We have not yet decided where to designate CHARSET. */ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2491 int reg_bits = default_reg_bits; |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2492 |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2493 if (CHARSET_CHARS (charset) == 96) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2494 /* A charset of CHARS96 can't be designated to REG 0. */ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2495 reg_bits &= ~1; |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2496 |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2497 if (reg_bits) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2498 /* There exist some default graphic register. */ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2499 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2500 = (reg_bits & 1 |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2501 ? 0 : (reg_bits & 2 ? 1 : (reg_bits & 4 ? 2 : 3))); |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2502 else |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2503 /* We anyway have to designate CHARSET to somewhere. */ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2504 CODING_SPEC_ISO_REQUESTED_DESIGNATION (coding, charset) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2505 = (CHARSET_CHARS (charset) == 94 |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2506 ? 0 |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2507 : ((coding->flags & CODING_FLAG_ISO_LOCKING_SHIFT |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2508 || ! coding->flags & CODING_FLAG_ISO_SEVEN_BITS) |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2509 ? 1 |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2510 : (coding->flags & CODING_FLAG_ISO_SINGLE_SHIFT |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2511 ? 2 : 0))); |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
2512 } |
17052 | 2513 } |
2514 coding->require_flushing = 1; | |
2515 break; | |
2516 | |
2517 case 3: | |
2518 coding->type = coding_type_big5; | |
2519 coding->flags | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2520 = (NILP (XVECTOR (coding_spec)->contents[4]) |
17052 | 2521 ? CODING_FLAG_BIG5_HKU |
2522 : CODING_FLAG_BIG5_ETEN); | |
2523 break; | |
2524 | |
2525 case 4: | |
2526 coding->type = coding_type_ccl; | |
2527 { | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2528 Lisp_Object val = XVECTOR (coding_spec)->contents[4]; |
17052 | 2529 if (CONSP (val) |
2530 && VECTORP (XCONS (val)->car) | |
2531 && VECTORP (XCONS (val)->cdr)) | |
2532 { | |
2533 setup_ccl_program (&(coding->spec.ccl.decoder), XCONS (val)->car); | |
2534 setup_ccl_program (&(coding->spec.ccl.encoder), XCONS (val)->cdr); | |
2535 } | |
2536 else | |
2537 goto label_invalid_coding_system; | |
2538 } | |
2539 coding->require_flushing = 1; | |
2540 break; | |
2541 | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2542 case 5: |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2543 coding->type = coding_type_raw_text; |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2544 break; |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2545 |
17052 | 2546 default: |
2547 if (EQ (type, Qt)) | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2548 coding->type = coding_type_undecided; |
17052 | 2549 else |
2550 coding->type = coding_type_no_conversion; | |
2551 break; | |
2552 } | |
2553 return 0; | |
2554 | |
2555 label_invalid_coding_system: | |
2556 coding->type = coding_type_no_conversion; | |
17485
abfa77a2693b
(setup_coding_system): Setup coding->eol_type as LF
Kenichi Handa <handa@m17n.org>
parents:
17368
diff
changeset
|
2557 coding->eol_type = CODING_EOL_LF; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2558 coding->symbol = coding->pre_write_conversion = coding->post_read_conversion |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2559 = Qnil; |
17052 | 2560 return -1; |
2561 } | |
2562 | |
2563 /* Emacs has a mechanism to automatically detect a coding system if it | |
2564 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But, | |
2565 it's impossible to distinguish some coding systems accurately | |
2566 because they use the same range of codes. So, at first, coding | |
2567 systems are categorized into 7, those are: | |
2568 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2569 o coding-category-emacs-mule |
17052 | 2570 |
2571 The category for a coding system which has the same code range | |
2572 as Emacs' internal format. Assigned the coding-system (Lisp | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2573 symbol) `emacs-mule' by default. |
17052 | 2574 |
2575 o coding-category-sjis | |
2576 | |
2577 The category for a coding system which has the same code range | |
2578 as SJIS. Assigned the coding-system (Lisp | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2579 symbol) `japanese-shift-jis' by default. |
17052 | 2580 |
2581 o coding-category-iso-7 | |
2582 | |
2583 The category for a coding system which has the same code range | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2584 as ISO2022 of 7-bit environment. This doesn't use any locking |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2585 shift and single shift functions. Assigned the coding-system |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2586 (Lisp symbol) `iso-2022-7bit' by default. |
17052 | 2587 |
2588 o coding-category-iso-8-1 | |
2589 | |
2590 The category for a coding system which has the same code range | |
2591 as ISO2022 of 8-bit environment and graphic plane 1 used only | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2592 for DIMENSION1 charset. This doesn't use any locking shift |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2593 and single shift functions. Assigned the coding-system (Lisp |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2594 symbol) `iso-latin-1' by default. |
17052 | 2595 |
2596 o coding-category-iso-8-2 | |
2597 | |
2598 The category for a coding system which has the same code range | |
2599 as ISO2022 of 8-bit environment and graphic plane 1 used only | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2600 for DIMENSION2 charset. This doesn't use any locking shift |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2601 and single shift functions. Assigned the coding-system (Lisp |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2602 symbol) `japanese-iso-8bit' by default. |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2603 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2604 o coding-category-iso-7-else |
17052 | 2605 |
2606 The category for a coding system which has the same code range | |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2607 as ISO2022 of 7-bit environemnt but uses locking shift or |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2608 single shift functions. Assigned the coding-system (Lisp |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2609 symbol) `iso-2022-7bit-lock' by default. |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2610 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2611 o coding-category-iso-8-else |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2612 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2613 The category for a coding system which has the same code range |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2614 as ISO2022 of 8-bit environemnt but uses locking shift or |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2615 single shift functions. Assigned the coding-system (Lisp |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
2616 symbol) `iso-2022-8bit-ss2' by default. |
17052 | 2617 |
2618 o coding-category-big5 | |
2619 | |
2620 The category for a coding system which has the same code range | |
2621 as BIG5. Assigned the coding-system (Lisp symbol) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2622 `cn-big5' by default. |
17052 | 2623 |
2624 o coding-category-binary | |
2625 | |
2626 The category for a coding system not categorized in any of the | |
2627 above. Assigned the coding-system (Lisp symbol) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2628 `no-conversion' by default. |
17052 | 2629 |
2630 Each of them is a Lisp symbol and the value is an actual | |
2631 `coding-system's (this is also a Lisp symbol) assigned by a user. | |
2632 What Emacs does actually is to detect a category of coding system. | |
2633 Then, it uses a `coding-system' assigned to it. If Emacs can't | |
2634 decide only one possible category, it selects a category of the | |
2635 highest priority. Priorities of categories are also specified by a | |
2636 user in a Lisp variable `coding-category-list'. | |
2637 | |
2638 */ | |
2639 | |
2640 /* Detect how a text of length SRC_BYTES pointed by SRC is encoded. | |
2641 If it detects possible coding systems, return an integer in which | |
2642 appropriate flag bits are set. Flag bits are defined by macros | |
2643 CODING_CATEGORY_MASK_XXX in `coding.h'. */ | |
2644 | |
2645 int | |
2646 detect_coding_mask (src, src_bytes) | |
2647 unsigned char *src; | |
2648 int src_bytes; | |
2649 { | |
2650 register unsigned char c; | |
2651 unsigned char *src_end = src + src_bytes; | |
2652 int mask; | |
2653 | |
2654 /* At first, skip all ASCII characters and control characters except | |
2655 for three ISO2022 specific control characters. */ | |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2656 label_loop_detect_coding: |
17052 | 2657 while (src < src_end) |
2658 { | |
2659 c = *src; | |
2660 if (c >= 0x80 | |
2661 || (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)) | |
2662 break; | |
2663 src++; | |
2664 } | |
2665 | |
2666 if (src >= src_end) | |
2667 /* We found nothing other than ASCII. There's nothing to do. */ | |
2668 return CODING_CATEGORY_MASK_ANY; | |
2669 | |
2670 /* The text seems to be encoded in some multilingual coding system. | |
2671 Now, try to find in which coding system the text is encoded. */ | |
2672 if (c < 0x80) | |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2673 { |
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2674 /* i.e. (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) */ |
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2675 /* C is an ISO2022 specific control code of C0. */ |
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2676 mask = detect_coding_iso2022 (src, src_end); |
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2677 src++; |
19743
b228f82192d5
(detect_coding_mask): Re-work previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19688
diff
changeset
|
2678 if (mask == 0) |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2679 /* No valid ISO2022 code follows C. Try again. */ |
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2680 goto label_loop_detect_coding; |
19688
854a46c2aac5
(detect_coding_mask): Add in CODING_CATEGORY_MASK_RAW_TEXT
Richard M. Stallman <rms@gnu.org>
parents:
19613
diff
changeset
|
2681 mask |= CODING_CATEGORY_MASK_RAW_TEXT; |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
2682 } |
17052 | 2683 else if (c < 0xA0) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2684 { |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2685 /* If C is a special latin extra code, |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2686 or is an ISO2022 specific control code of C1 (SS2 or SS3), |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2687 or is an ISO2022 control-sequence-introducer (CSI), |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2688 we should also consider the possibility of ISO2022 codings. */ |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2689 if ((VECTORP (Vlatin_extra_code_table) |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
2690 && !NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2691 || (c == ISO_CODE_SS2 || c == ISO_CODE_SS3) |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2692 || (c == ISO_CODE_CSI |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2693 && (src < src_end |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2694 && (*src == ']' |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2695 || (src + 1 < src_end |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2696 && src[1] == ']' |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2697 && (*src == '0' || *src == '1' || *src == '2')))))) |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2698 mask = (detect_coding_iso2022 (src, src_end) |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2699 | detect_coding_sjis (src, src_end) |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2700 | detect_coding_emacs_mule (src, src_end) |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2701 | CODING_CATEGORY_MASK_RAW_TEXT); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2702 |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2703 else |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2704 /* C is the first byte of SJIS character code, |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2705 or a leading-code of Emacs' internal format (emacs-mule). */ |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2706 mask = (detect_coding_sjis (src, src_end) |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2707 | detect_coding_emacs_mule (src, src_end) |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2708 | CODING_CATEGORY_MASK_RAW_TEXT); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
2709 } |
17052 | 2710 else |
2711 /* C is a character of ISO2022 in graphic plane right, | |
2712 or a SJIS's 1-byte character code (i.e. JISX0201), | |
2713 or the first byte of BIG5's 2-byte code. */ | |
2714 mask = (detect_coding_iso2022 (src, src_end) | |
2715 | detect_coding_sjis (src, src_end) | |
19118
16ef8c28e4e0
(detect_coding_mask): Include CODING_CATEGORY_MASK_BINARY in the
Richard M. Stallman <rms@gnu.org>
parents:
19068
diff
changeset
|
2716 | detect_coding_big5 (src, src_end) |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2717 | CODING_CATEGORY_MASK_RAW_TEXT); |
17052 | 2718 |
2719 return mask; | |
2720 } | |
2721 | |
2722 /* Detect how a text of length SRC_BYTES pointed by SRC is encoded. | |
2723 The information of the detected coding system is set in CODING. */ | |
2724 | |
2725 void | |
2726 detect_coding (coding, src, src_bytes) | |
2727 struct coding_system *coding; | |
2728 unsigned char *src; | |
2729 int src_bytes; | |
2730 { | |
2731 int mask = detect_coding_mask (src, src_bytes); | |
2732 int idx; | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2733 Lisp_Object val = Vcoding_category_list; |
17052 | 2734 |
2735 if (mask == CODING_CATEGORY_MASK_ANY) | |
2736 /* We found nothing other than ASCII. There's nothing to do. */ | |
2737 return; | |
2738 | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2739 /* We found some plausible coding systems. Let's use a coding |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2740 system of the highest priority. */ |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2741 |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2742 if (CONSP (val)) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2743 while (!NILP (val)) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2744 { |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2745 idx = XFASTINT (Fget (XCONS (val)->car, Qcoding_category_index)); |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2746 if ((idx < CODING_CATEGORY_IDX_MAX) && (mask & (1 << idx))) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2747 break; |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2748 val = XCONS (val)->cdr; |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2749 } |
17052 | 2750 else |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2751 val = Qnil; |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2752 |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2753 if (NILP (val)) |
17052 | 2754 { |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2755 /* For unknown reason, `Vcoding_category_list' contains none of |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2756 found categories. Let's use any of them. */ |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2757 for (idx = 0; idx < CODING_CATEGORY_IDX_MAX; idx++) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2758 if (mask & (1 << idx)) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2759 break; |
17052 | 2760 } |
2761 setup_coding_system (XSYMBOL (coding_category_table[idx])->value, coding); | |
2762 } | |
2763 | |
2764 /* Detect how end-of-line of a text of length SRC_BYTES pointed by SRC | |
2765 is encoded. Return one of CODING_EOL_LF, CODING_EOL_CRLF, | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2766 CODING_EOL_CR, and CODING_EOL_UNDECIDED. */ |
17052 | 2767 |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2768 #define MAX_EOL_CHECK_COUNT 3 |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2769 |
17052 | 2770 int |
2771 detect_eol_type (src, src_bytes) | |
2772 unsigned char *src; | |
2773 int src_bytes; | |
2774 { | |
2775 unsigned char *src_end = src + src_bytes; | |
2776 unsigned char c; | |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2777 int total = 0; /* How many end-of-lines are found so far. */ |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2778 int eol_type = CODING_EOL_UNDECIDED; |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2779 int this_eol_type; |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2780 |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2781 while (src < src_end && total < MAX_EOL_CHECK_COUNT) |
17052 | 2782 { |
2783 c = *src++; | |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2784 if (c == '\n' || c == '\r') |
17052 | 2785 { |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2786 total++; |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2787 if (c == '\n') |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2788 this_eol_type = CODING_EOL_LF; |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2789 else if (src >= src_end || *src != '\n') |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2790 this_eol_type = CODING_EOL_CR; |
17052 | 2791 else |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2792 this_eol_type = CODING_EOL_CRLF, src++; |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2793 |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2794 if (eol_type == CODING_EOL_UNDECIDED) |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2795 /* This is the first end-of-line. */ |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2796 eol_type = this_eol_type; |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2797 else if (eol_type != this_eol_type) |
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2798 /* The found type is different from what found before. |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2799 Let's notice the caller about this inconsistency. */ |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2800 return CODING_EOL_INCONSISTENT; |
17052 | 2801 } |
2802 } | |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
2803 |
19181
917138730635
(detect_eol_type): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
19173
diff
changeset
|
2804 return eol_type; |
17052 | 2805 } |
2806 | |
2807 /* Detect how end-of-line of a text of length SRC_BYTES pointed by SRC | |
2808 is encoded. If it detects an appropriate format of end-of-line, it | |
2809 sets the information in *CODING. */ | |
2810 | |
2811 void | |
2812 detect_eol (coding, src, src_bytes) | |
2813 struct coding_system *coding; | |
2814 unsigned char *src; | |
2815 int src_bytes; | |
2816 { | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2817 Lisp_Object val; |
17052 | 2818 int eol_type = detect_eol_type (src, src_bytes); |
2819 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2820 if (eol_type == CODING_EOL_UNDECIDED) |
17052 | 2821 /* We found no end-of-line in the source text. */ |
2822 return; | |
2823 | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2824 if (eol_type == CODING_EOL_INCONSISTENT) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2825 { |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2826 #if 0 |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2827 /* This code is suppressed until we find a better way to |
19613
666288d82ae1
(detect_eol): Do not select no-conversion even if EOL
Kenichi Handa <handa@m17n.org>
parents:
19612
diff
changeset
|
2828 distinguish raw text file and binary file. */ |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2829 |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2830 /* If we have already detected that the coding is raw-text, the |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2831 coding should actually be no-conversion. */ |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2832 if (coding->type == coding_type_raw_text) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2833 { |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2834 setup_coding_system (Qno_conversion, coding); |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2835 return; |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2836 } |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2837 /* Else, let's decode only text code anyway. */ |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2838 #endif /* 0 */ |
19743
b228f82192d5
(detect_coding_mask): Re-work previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19688
diff
changeset
|
2839 eol_type = CODING_EOL_LF; |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2840 } |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2841 |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
2842 val = Fget (coding->symbol, Qeol_type); |
17052 | 2843 if (VECTORP (val) && XVECTOR (val)->size == 3) |
2844 setup_coding_system (XVECTOR (val)->contents[eol_type], coding); | |
2845 } | |
2846 | |
2847 /* See "GENERAL NOTES about `decode_coding_XXX ()' functions". Before | |
2848 decoding, it may detect coding system and format of end-of-line if | |
2849 those are not yet decided. */ | |
2850 | |
2851 int | |
2852 decode_coding (coding, source, destination, src_bytes, dst_bytes, consumed) | |
2853 struct coding_system *coding; | |
2854 unsigned char *source, *destination; | |
2855 int src_bytes, dst_bytes; | |
2856 int *consumed; | |
2857 { | |
2858 int produced; | |
2859 | |
2860 if (src_bytes <= 0) | |
2861 { | |
2862 *consumed = 0; | |
2863 return 0; | |
2864 } | |
2865 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2866 if (coding->type == coding_type_undecided) |
17052 | 2867 detect_coding (coding, source, src_bytes); |
2868 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2869 if (coding->eol_type == CODING_EOL_UNDECIDED) |
17052 | 2870 detect_eol (coding, source, src_bytes); |
2871 | |
2872 coding->carryover_size = 0; | |
2873 switch (coding->type) | |
2874 { | |
2875 case coding_type_no_conversion: | |
2876 label_no_conversion: | |
2877 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
2878 bcopy (source, destination, produced); | |
2879 *consumed = produced; | |
2880 break; | |
2881 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2882 case coding_type_emacs_mule: |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2883 case coding_type_undecided: |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2884 case coding_type_raw_text: |
17052 | 2885 if (coding->eol_type == CODING_EOL_LF |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2886 || coding->eol_type == CODING_EOL_UNDECIDED) |
17052 | 2887 goto label_no_conversion; |
2888 produced = decode_eol (coding, source, destination, | |
2889 src_bytes, dst_bytes, consumed); | |
2890 break; | |
2891 | |
2892 case coding_type_sjis: | |
2893 produced = decode_coding_sjis_big5 (coding, source, destination, | |
2894 src_bytes, dst_bytes, consumed, | |
2895 1); | |
2896 break; | |
2897 | |
2898 case coding_type_iso2022: | |
2899 produced = decode_coding_iso2022 (coding, source, destination, | |
2900 src_bytes, dst_bytes, consumed); | |
2901 break; | |
2902 | |
2903 case coding_type_big5: | |
2904 produced = decode_coding_sjis_big5 (coding, source, destination, | |
2905 src_bytes, dst_bytes, consumed, | |
2906 0); | |
2907 break; | |
2908 | |
2909 case coding_type_ccl: | |
2910 produced = ccl_driver (&coding->spec.ccl.decoder, source, destination, | |
2911 src_bytes, dst_bytes, consumed); | |
2912 break; | |
2913 } | |
2914 | |
2915 return produced; | |
2916 } | |
2917 | |
2918 /* See "GENERAL NOTES about `encode_coding_XXX ()' functions". */ | |
2919 | |
2920 int | |
2921 encode_coding (coding, source, destination, src_bytes, dst_bytes, consumed) | |
2922 struct coding_system *coding; | |
2923 unsigned char *source, *destination; | |
2924 int src_bytes, dst_bytes; | |
2925 int *consumed; | |
2926 { | |
2927 int produced; | |
2928 | |
2929 switch (coding->type) | |
2930 { | |
2931 case coding_type_no_conversion: | |
2932 label_no_conversion: | |
2933 produced = (src_bytes > dst_bytes) ? dst_bytes : src_bytes; | |
2934 if (produced > 0) | |
2935 { | |
2936 bcopy (source, destination, produced); | |
2937 if (coding->selective) | |
2938 { | |
2939 unsigned char *p = destination, *pend = destination + produced; | |
2940 while (p < pend) | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
2941 if (*p++ == '\015') p[-1] = '\n'; |
17052 | 2942 } |
2943 } | |
2944 *consumed = produced; | |
2945 break; | |
2946 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2947 case coding_type_emacs_mule: |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2948 case coding_type_undecided: |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
2949 case coding_type_raw_text: |
17052 | 2950 if (coding->eol_type == CODING_EOL_LF |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
2951 || coding->eol_type == CODING_EOL_UNDECIDED) |
17052 | 2952 goto label_no_conversion; |
2953 produced = encode_eol (coding, source, destination, | |
2954 src_bytes, dst_bytes, consumed); | |
2955 break; | |
2956 | |
2957 case coding_type_sjis: | |
2958 produced = encode_coding_sjis_big5 (coding, source, destination, | |
2959 src_bytes, dst_bytes, consumed, | |
2960 1); | |
2961 break; | |
2962 | |
2963 case coding_type_iso2022: | |
2964 produced = encode_coding_iso2022 (coding, source, destination, | |
2965 src_bytes, dst_bytes, consumed); | |
2966 break; | |
2967 | |
2968 case coding_type_big5: | |
2969 produced = encode_coding_sjis_big5 (coding, source, destination, | |
2970 src_bytes, dst_bytes, consumed, | |
2971 0); | |
2972 break; | |
2973 | |
2974 case coding_type_ccl: | |
2975 produced = ccl_driver (&coding->spec.ccl.encoder, source, destination, | |
2976 src_bytes, dst_bytes, consumed); | |
2977 break; | |
2978 } | |
2979 | |
2980 return produced; | |
2981 } | |
2982 | |
2983 #define CONVERSION_BUFFER_EXTRA_ROOM 256 | |
2984 | |
2985 /* Return maximum size (bytes) of a buffer enough for decoding | |
2986 SRC_BYTES of text encoded in CODING. */ | |
2987 | |
2988 int | |
2989 decoding_buffer_size (coding, src_bytes) | |
2990 struct coding_system *coding; | |
2991 int src_bytes; | |
2992 { | |
2993 int magnification; | |
2994 | |
2995 if (coding->type == coding_type_iso2022) | |
2996 magnification = 3; | |
2997 else if (coding->type == coding_type_ccl) | |
2998 magnification = coding->spec.ccl.decoder.buf_magnification; | |
2999 else | |
3000 magnification = 2; | |
3001 | |
3002 return (src_bytes * magnification + CONVERSION_BUFFER_EXTRA_ROOM); | |
3003 } | |
3004 | |
3005 /* Return maximum size (bytes) of a buffer enough for encoding | |
3006 SRC_BYTES of text to CODING. */ | |
3007 | |
3008 int | |
3009 encoding_buffer_size (coding, src_bytes) | |
3010 struct coding_system *coding; | |
3011 int src_bytes; | |
3012 { | |
3013 int magnification; | |
3014 | |
3015 if (coding->type == coding_type_ccl) | |
3016 magnification = coding->spec.ccl.encoder.buf_magnification; | |
3017 else | |
3018 magnification = 3; | |
3019 | |
3020 return (src_bytes * magnification + CONVERSION_BUFFER_EXTRA_ROOM); | |
3021 } | |
3022 | |
3023 #ifndef MINIMUM_CONVERSION_BUFFER_SIZE | |
3024 #define MINIMUM_CONVERSION_BUFFER_SIZE 1024 | |
3025 #endif | |
3026 | |
3027 char *conversion_buffer; | |
3028 int conversion_buffer_size; | |
3029 | |
3030 /* Return a pointer to a SIZE bytes of buffer to be used for encoding | |
3031 or decoding. Sufficient memory is allocated automatically. If we | |
3032 run out of memory, return NULL. */ | |
3033 | |
3034 char * | |
3035 get_conversion_buffer (size) | |
3036 int size; | |
3037 { | |
3038 if (size > conversion_buffer_size) | |
3039 { | |
3040 char *buf; | |
3041 int real_size = conversion_buffer_size * 2; | |
3042 | |
3043 while (real_size < size) real_size *= 2; | |
3044 buf = (char *) xmalloc (real_size); | |
3045 xfree (conversion_buffer); | |
3046 conversion_buffer = buf; | |
3047 conversion_buffer_size = real_size; | |
3048 } | |
3049 return conversion_buffer; | |
3050 } | |
3051 | |
3052 | |
3053 #ifdef emacs | |
3054 /*** 7. Emacs Lisp library functions ***/ | |
3055 | |
3056 DEFUN ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, | |
3057 "Return t if OBJECT is nil or a coding-system.\n\ | |
3058 See document of make-coding-system for coding-system object.") | |
3059 (obj) | |
3060 Lisp_Object obj; | |
3061 { | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3062 if (NILP (obj)) |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3063 return Qt; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3064 if (!SYMBOLP (obj)) |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3065 return Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3066 /* Get coding-spec vector for OBJ. */ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3067 obj = Fget (obj, Qcoding_system); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3068 return ((VECTORP (obj) && XVECTOR (obj)->size == 5) |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3069 ? Qt : Qnil); |
17052 | 3070 } |
3071 | |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
3072 DEFUN ("read-non-nil-coding-system", Fread_non_nil_coding_system, |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
3073 Sread_non_nil_coding_system, 1, 1, 0, |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3074 "Read a coding system from the minibuffer, prompting with string PROMPT.") |
17052 | 3075 (prompt) |
3076 Lisp_Object prompt; | |
3077 { | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3078 Lisp_Object val; |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
3079 do |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
3080 { |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3081 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil, |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3082 Qt, Qnil, Qcoding_system_history, Qnil, Qnil); |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
3083 } |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
3084 while (XSTRING (val)->size == 0); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3085 return (Fintern (val, Qnil)); |
17052 | 3086 } |
3087 | |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3088 DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, |
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3089 "Read a coding system from the minibuffer, prompting with string PROMPT.\n\ |
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3090 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.") |
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3091 (prompt, default_coding_system) |
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3092 Lisp_Object prompt, default_coding_system; |
17052 | 3093 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
3094 Lisp_Object val; |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3095 if (SYMBOLP (default_coding_system)) |
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3096 XSETSTRING (default_coding_system, XSYMBOL (default_coding_system)->name); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3097 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil, |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3098 Qt, Qnil, Qcoding_system_history, |
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
3099 default_coding_system, Qnil); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3100 return (XSTRING (val)->size == 0 ? Qnil : Fintern (val, Qnil)); |
17052 | 3101 } |
3102 | |
3103 DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | |
3104 1, 1, 0, | |
3105 "Check validity of CODING-SYSTEM.\n\ | |
3106 If valid, return CODING-SYSTEM, else `coding-system-error' is signaled.\n\ | |
3107 CODING-SYSTEM is valid if it is a symbol and has \"coding-system\" property.\n\ | |
3108 The value of property should be a vector of length 5.") | |
3109 (coding_system) | |
3110 Lisp_Object coding_system; | |
3111 { | |
3112 CHECK_SYMBOL (coding_system, 0); | |
3113 if (!NILP (Fcoding_system_p (coding_system))) | |
3114 return coding_system; | |
3115 while (1) | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3116 Fsignal (Qcoding_system_error, Fcons (coding_system, Qnil)); |
17052 | 3117 } |
3118 | |
3119 DEFUN ("detect-coding-region", Fdetect_coding_region, Sdetect_coding_region, | |
3120 2, 2, 0, | |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3121 "Detect coding system of the text in the region between START and END.\n\ |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3122 Return a list of possible coding systems ordered by priority.\n\ |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3123 If only ASCII characters are found, it returns `undecided'\n\ |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3124 or its subsidiary coding system according to a detected end-of-line format.") |
17052 | 3125 (b, e) |
3126 Lisp_Object b, e; | |
3127 { | |
3128 int coding_mask, eol_type; | |
3129 Lisp_Object val; | |
3130 int beg, end; | |
3131 | |
3132 validate_region (&b, &e); | |
3133 beg = XINT (b), end = XINT (e); | |
3134 if (beg < GPT && end >= GPT) move_gap (end); | |
3135 | |
3136 coding_mask = detect_coding_mask (POS_ADDR (beg), end - beg); | |
3137 eol_type = detect_eol_type (POS_ADDR (beg), end - beg); | |
3138 | |
3139 if (coding_mask == CODING_CATEGORY_MASK_ANY) | |
3140 { | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3141 val = Qundecided; |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3142 if (eol_type != CODING_EOL_UNDECIDED |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3143 && eol_type != CODING_EOL_INCONSISTENT) |
17052 | 3144 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
3145 Lisp_Object val2; |
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
3146 val2 = Fget (Qundecided, Qeol_type); |
17052 | 3147 if (VECTORP (val2)) |
3148 val = XVECTOR (val2)->contents[eol_type]; | |
3149 } | |
3150 } | |
3151 else | |
3152 { | |
3153 Lisp_Object val2; | |
3154 | |
3155 /* At first, gather possible coding-systems in VAL in a reverse | |
3156 order. */ | |
3157 val = Qnil; | |
3158 for (val2 = Vcoding_category_list; | |
3159 !NILP (val2); | |
3160 val2 = XCONS (val2)->cdr) | |
3161 { | |
3162 int idx | |
3163 = XFASTINT (Fget (XCONS (val2)->car, Qcoding_category_index)); | |
3164 if (coding_mask & (1 << idx)) | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3165 { |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3166 #if 0 |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3167 /* This code is suppressed until we find a better way to |
19613
666288d82ae1
(detect_eol): Do not select no-conversion even if EOL
Kenichi Handa <handa@m17n.org>
parents:
19612
diff
changeset
|
3168 distinguish raw text file and binary file. */ |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3169 |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3170 if (idx == CODING_CATEGORY_IDX_RAW_TEXT |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3171 && eol_type == CODING_EOL_INCONSISTENT) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3172 val = Fcons (Qno_conversion, val); |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3173 else |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3174 #endif /* 0 */ |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3175 val = Fcons (Fsymbol_value (XCONS (val2)->car), val); |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3176 } |
17052 | 3177 } |
3178 | |
3179 /* Then, change the order of the list, while getting subsidiary | |
3180 coding-systems. */ | |
3181 val2 = val; | |
3182 val = Qnil; | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3183 if (eol_type == CODING_EOL_INCONSISTENT) |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3184 eol_type == CODING_EOL_UNDECIDED; |
17052 | 3185 for (; !NILP (val2); val2 = XCONS (val2)->cdr) |
3186 { | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3187 if (eol_type == CODING_EOL_UNDECIDED) |
17052 | 3188 val = Fcons (XCONS (val2)->car, val); |
3189 else | |
3190 { | |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
3191 Lisp_Object val3; |
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
3192 val3 = Fget (XCONS (val2)->car, Qeol_type); |
17052 | 3193 if (VECTORP (val3)) |
3194 val = Fcons (XVECTOR (val3)->contents[eol_type], val); | |
3195 else | |
3196 val = Fcons (XCONS (val2)->car, val); | |
3197 } | |
3198 } | |
3199 } | |
3200 | |
3201 return val; | |
3202 } | |
3203 | |
3204 /* Scan text in the region between *BEGP and *ENDP, skip characters | |
3205 which we never have to encode to (iff ENCODEP is 1) or decode from | |
3206 coding system CODING at the head and tail, then set BEGP and ENDP | |
3207 to the addresses of start and end of the text we actually convert. */ | |
3208 | |
3209 void | |
3210 shrink_conversion_area (begp, endp, coding, encodep) | |
3211 unsigned char **begp, **endp; | |
3212 struct coding_system *coding; | |
3213 int encodep; | |
3214 { | |
3215 register unsigned char *beg_addr = *begp, *end_addr = *endp; | |
3216 | |
3217 if (coding->eol_type != CODING_EOL_LF | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3218 && coding->eol_type != CODING_EOL_UNDECIDED) |
17052 | 3219 /* Since we anyway have to convert end-of-line format, it is not |
3220 worth skipping at most 100 bytes or so. */ | |
3221 return; | |
3222 | |
3223 if (encodep) /* for encoding */ | |
3224 { | |
3225 switch (coding->type) | |
3226 { | |
3227 case coding_type_no_conversion: | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3228 case coding_type_emacs_mule: |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3229 case coding_type_undecided: |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3230 case coding_type_raw_text: |
17052 | 3231 /* We need no conversion. */ |
3232 *begp = *endp; | |
3233 return; | |
3234 case coding_type_ccl: | |
3235 /* We can't skip any data. */ | |
3236 return; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3237 case coding_type_iso2022: |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3238 if (coding->flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3239 { |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3240 unsigned char *bol = beg_addr; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3241 while (beg_addr < end_addr && *beg_addr < 0x80) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3242 { |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3243 beg_addr++; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3244 if (*(beg_addr - 1) == '\n') |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3245 bol = beg_addr; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3246 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3247 beg_addr = bol; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3248 goto label_skip_tail; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3249 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3250 /* fall down ... */ |
17052 | 3251 default: |
3252 /* We can skip all ASCII characters at the head and tail. */ | |
3253 while (beg_addr < end_addr && *beg_addr < 0x80) beg_addr++; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3254 label_skip_tail: |
17052 | 3255 while (beg_addr < end_addr && *(end_addr - 1) < 0x80) end_addr--; |
3256 break; | |
3257 } | |
3258 } | |
3259 else /* for decoding */ | |
3260 { | |
3261 switch (coding->type) | |
3262 { | |
3263 case coding_type_no_conversion: | |
3264 /* We need no conversion. */ | |
3265 *begp = *endp; | |
3266 return; | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3267 case coding_type_emacs_mule: |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3268 case coding_type_raw_text: |
17052 | 3269 if (coding->eol_type == CODING_EOL_LF) |
3270 { | |
3271 /* We need no conversion. */ | |
3272 *begp = *endp; | |
3273 return; | |
3274 } | |
3275 /* We can skip all but carriage-return. */ | |
3276 while (beg_addr < end_addr && *beg_addr != '\r') beg_addr++; | |
3277 while (beg_addr < end_addr && *(end_addr - 1) != '\r') end_addr--; | |
3278 break; | |
3279 case coding_type_sjis: | |
3280 case coding_type_big5: | |
3281 /* We can skip all ASCII characters at the head. */ | |
3282 while (beg_addr < end_addr && *beg_addr < 0x80) beg_addr++; | |
3283 /* We can skip all ASCII characters at the tail except for | |
3284 the second byte of SJIS or BIG5 code. */ | |
3285 while (beg_addr < end_addr && *(end_addr - 1) < 0x80) end_addr--; | |
3286 if (end_addr != *endp) | |
3287 end_addr++; | |
3288 break; | |
3289 case coding_type_ccl: | |
3290 /* We can't skip any data. */ | |
3291 return; | |
3292 default: /* i.e. case coding_type_iso2022: */ | |
3293 { | |
3294 unsigned char c; | |
3295 | |
3296 /* We can skip all ASCII characters except for a few | |
3297 control codes at the head. */ | |
3298 while (beg_addr < end_addr && (c = *beg_addr) < 0x80 | |
3299 && c != ISO_CODE_CR && c != ISO_CODE_SO | |
3300 && c != ISO_CODE_SI && c != ISO_CODE_ESC) | |
3301 beg_addr++; | |
3302 } | |
3303 break; | |
3304 } | |
3305 } | |
3306 *begp = beg_addr; | |
3307 *endp = end_addr; | |
3308 return; | |
3309 } | |
3310 | |
3311 /* Encode to (iff ENCODEP is 1) or decode form coding system CODING a | |
3312 text between B and E. B and E are buffer position. */ | |
3313 | |
3314 Lisp_Object | |
3315 code_convert_region (b, e, coding, encodep) | |
3316 Lisp_Object b, e; | |
3317 struct coding_system *coding; | |
3318 int encodep; | |
3319 { | |
3320 int beg, end, len, consumed, produced; | |
3321 char *buf; | |
3322 unsigned char *begp, *endp; | |
3323 int pos = PT; | |
3324 | |
3325 validate_region (&b, &e); | |
3326 beg = XINT (b), end = XINT (e); | |
3327 if (beg < GPT && end >= GPT) | |
3328 move_gap (end); | |
3329 | |
3330 if (encodep && !NILP (coding->pre_write_conversion)) | |
3331 { | |
3332 /* We must call a pre-conversion function which may put a new | |
3333 text to be converted in a new buffer. */ | |
3334 struct buffer *old = current_buffer, *new; | |
3335 | |
3336 TEMP_SET_PT (beg); | |
3337 call2 (coding->pre_write_conversion, b, e); | |
3338 if (old != current_buffer) | |
3339 { | |
3340 /* Replace the original text by the text just generated. */ | |
3341 len = ZV - BEGV; | |
3342 new = current_buffer; | |
3343 set_buffer_internal (old); | |
3344 del_range (beg, end); | |
3345 insert_from_buffer (new, 1, len, 0); | |
3346 end = beg + len; | |
3347 } | |
3348 } | |
3349 | |
3350 /* We may be able to shrink the conversion region. */ | |
3351 begp = POS_ADDR (beg); endp = begp + (end - beg); | |
3352 shrink_conversion_area (&begp, &endp, coding, encodep); | |
3353 | |
3354 if (begp == endp) | |
3355 /* We need no conversion. */ | |
3356 len = end - beg; | |
3357 else | |
3358 { | |
3359 beg += begp - POS_ADDR (beg); | |
3360 end = beg + (endp - begp); | |
3361 | |
3362 if (encodep) | |
3363 len = encoding_buffer_size (coding, end - beg); | |
3364 else | |
3365 len = decoding_buffer_size (coding, end - beg); | |
3366 buf = get_conversion_buffer (len); | |
3367 | |
3368 coding->last_block = 1; | |
3369 produced = (encodep | |
3370 ? encode_coding (coding, POS_ADDR (beg), buf, end - beg, len, | |
3371 &consumed) | |
3372 : decode_coding (coding, POS_ADDR (beg), buf, end - beg, len, | |
3373 &consumed)); | |
3374 | |
3375 len = produced + (beg - XINT (b)) + (XINT (e) - end); | |
3376 | |
3377 TEMP_SET_PT (beg); | |
3378 insert (buf, produced); | |
3379 del_range (PT, PT + end - beg); | |
3380 if (pos >= end) | |
3381 pos = PT + (pos - end); | |
3382 else if (pos > beg) | |
3383 pos = beg; | |
3384 TEMP_SET_PT (pos); | |
3385 } | |
3386 | |
3387 if (!encodep && !NILP (coding->post_read_conversion)) | |
3388 { | |
3389 /* We must call a post-conversion function which may alter | |
3390 the text just converted. */ | |
3391 Lisp_Object insval; | |
3392 | |
3393 beg = XINT (b); | |
3394 TEMP_SET_PT (beg); | |
3395 insval = call1 (coding->post_read_conversion, make_number (len)); | |
3396 CHECK_NUMBER (insval, 0); | |
3397 len = XINT (insval); | |
3398 } | |
3399 | |
3400 return make_number (len); | |
3401 } | |
3402 | |
3403 Lisp_Object | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3404 code_convert_string (str, coding, encodep, nocopy) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3405 Lisp_Object str, nocopy; |
17052 | 3406 struct coding_system *coding; |
3407 int encodep; | |
3408 { | |
3409 int len, consumed, produced; | |
3410 char *buf; | |
3411 unsigned char *begp, *endp; | |
3412 int head_skip, tail_skip; | |
3413 struct gcpro gcpro1; | |
3414 | |
3415 if (encodep && !NILP (coding->pre_write_conversion) | |
3416 || !encodep && !NILP (coding->post_read_conversion)) | |
3417 { | |
3418 /* Since we have to call Lisp functions which assume target text | |
3419 is in a buffer, after setting a temporary buffer, call | |
3420 code_convert_region. */ | |
3421 int count = specpdl_ptr - specpdl; | |
3422 int len = XSTRING (str)->size; | |
3423 Lisp_Object result; | |
3424 struct buffer *old = current_buffer; | |
3425 | |
3426 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
3427 temp_output_buffer_setup (" *code-converting-work*"); | |
3428 set_buffer_internal (XBUFFER (Vstandard_output)); | |
3429 insert_from_string (str, 0, len, 0); | |
3430 code_convert_region (make_number (BEGV), make_number (ZV), | |
3431 coding, encodep); | |
3432 result = make_buffer_string (BEGV, ZV, 0); | |
3433 set_buffer_internal (old); | |
3434 return unbind_to (count, result); | |
3435 } | |
3436 | |
3437 /* We may be able to shrink the conversion region. */ | |
3438 begp = XSTRING (str)->data; | |
3439 endp = begp + XSTRING (str)->size; | |
3440 shrink_conversion_area (&begp, &endp, coding, encodep); | |
3441 | |
3442 if (begp == endp) | |
3443 /* We need no conversion. */ | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3444 return (NILP (nocopy) ? Fcopy_sequence (str) : str); |
17052 | 3445 |
3446 head_skip = begp - XSTRING (str)->data; | |
3447 tail_skip = XSTRING (str)->size - head_skip - (endp - begp); | |
3448 | |
3449 GCPRO1 (str); | |
3450 | |
3451 if (encodep) | |
3452 len = encoding_buffer_size (coding, endp - begp); | |
3453 else | |
3454 len = decoding_buffer_size (coding, endp - begp); | |
3455 buf = get_conversion_buffer (len + head_skip + tail_skip); | |
3456 | |
3457 bcopy (XSTRING (str)->data, buf, head_skip); | |
3458 coding->last_block = 1; | |
3459 produced = (encodep | |
3460 ? encode_coding (coding, XSTRING (str)->data + head_skip, | |
3461 buf + head_skip, endp - begp, len, &consumed) | |
3462 : decode_coding (coding, XSTRING (str)->data + head_skip, | |
3463 buf + head_skip, endp - begp, len, &consumed)); | |
3464 bcopy (XSTRING (str)->data + head_skip + (endp - begp), | |
3465 buf + head_skip + produced, | |
3466 tail_skip); | |
3467 | |
3468 UNGCPRO; | |
3469 | |
3470 return make_string (buf, head_skip + produced + tail_skip); | |
3471 } | |
3472 | |
3473 DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3474 3, 3, "r\nzCoding system: ", |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3475 "Decode current region by specified coding system.\n\ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3476 When called from a program, takes three arguments:\n\ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3477 START, END, and CODING-SYSTEM. START END are buffer positions.\n\ |
17052 | 3478 Return length of decoded text.") |
3479 (b, e, coding_system) | |
3480 Lisp_Object b, e, coding_system; | |
3481 { | |
3482 struct coding_system coding; | |
3483 | |
3484 CHECK_NUMBER_COERCE_MARKER (b, 0); | |
3485 CHECK_NUMBER_COERCE_MARKER (e, 1); | |
3486 CHECK_SYMBOL (coding_system, 2); | |
3487 | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3488 if (NILP (coding_system)) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3489 return make_number (XFASTINT (e) - XFASTINT (b)); |
17052 | 3490 if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0) |
3491 error ("Invalid coding-system: %s", XSYMBOL (coding_system)->name->data); | |
3492 | |
3493 return code_convert_region (b, e, &coding, 0); | |
3494 } | |
3495 | |
3496 DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3497 3, 3, "r\nzCoding system: ", |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3498 "Encode current region by specified coding system.\n\ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3499 When called from a program, takes three arguments:\n\ |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3500 START, END, and CODING-SYSTEM. START END are buffer positions.\n\ |
17052 | 3501 Return length of encoded text.") |
3502 (b, e, coding_system) | |
3503 Lisp_Object b, e, coding_system; | |
3504 { | |
3505 struct coding_system coding; | |
3506 | |
3507 CHECK_NUMBER_COERCE_MARKER (b, 0); | |
3508 CHECK_NUMBER_COERCE_MARKER (e, 1); | |
3509 CHECK_SYMBOL (coding_system, 2); | |
3510 | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3511 if (NILP (coding_system)) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3512 return make_number (XFASTINT (e) - XFASTINT (b)); |
17052 | 3513 if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0) |
3514 error ("Invalid coding-system: %s", XSYMBOL (coding_system)->name->data); | |
3515 | |
3516 return code_convert_region (b, e, &coding, 1); | |
3517 } | |
3518 | |
3519 DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3520 2, 3, 0, |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3521 "Decode STRING which is encoded in CODING-SYSTEM, and return the result.\n\ |
19815
e68cab4f1f70
(Fencode_coding_string, Fdecode_coding_string): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
19763
diff
changeset
|
3522 Optional arg NOCOPY non-nil means it is ok to return STRING itself\n\ |
e68cab4f1f70
(Fencode_coding_string, Fdecode_coding_string): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
19763
diff
changeset
|
3523 if the decoding operation is trivial.") |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3524 (string, coding_system, nocopy) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3525 Lisp_Object string, coding_system, nocopy; |
17052 | 3526 { |
3527 struct coding_system coding; | |
3528 | |
3529 CHECK_STRING (string, 0); | |
3530 CHECK_SYMBOL (coding_system, 1); | |
3531 | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3532 if (NILP (coding_system)) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3533 return (NILP (nocopy) ? Fcopy_sequence (string) : string); |
17052 | 3534 if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0) |
3535 error ("Invalid coding-system: %s", XSYMBOL (coding_system)->name->data); | |
3536 | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3537 return code_convert_string (string, &coding, 0, nocopy); |
17052 | 3538 } |
3539 | |
3540 DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3541 2, 3, 0, |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3542 "Encode STRING to CODING-SYSTEM, and return the result.\n\ |
19815
e68cab4f1f70
(Fencode_coding_string, Fdecode_coding_string): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
19763
diff
changeset
|
3543 Optional arg NOCOPY non-nil means it is ok to return STRING itself\n\ |
e68cab4f1f70
(Fencode_coding_string, Fdecode_coding_string): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
19763
diff
changeset
|
3544 if the encoding operation is trivial.") |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3545 (string, coding_system, nocopy) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3546 Lisp_Object string, coding_system, nocopy; |
17052 | 3547 { |
3548 struct coding_system coding; | |
3549 | |
3550 CHECK_STRING (string, 0); | |
3551 CHECK_SYMBOL (coding_system, 1); | |
3552 | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3553 if (NILP (coding_system)) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3554 return (NILP (nocopy) ? Fcopy_sequence (string) : string); |
17052 | 3555 if (setup_coding_system (Fcheck_coding_system (coding_system), &coding) < 0) |
3556 error ("Invalid coding-system: %s", XSYMBOL (coding_system)->name->data); | |
3557 | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3558 return code_convert_string (string, &coding, 1, nocopy); |
17052 | 3559 } |
3560 | |
3561 DEFUN ("decode-sjis-char", Fdecode_sjis_char, Sdecode_sjis_char, 1, 1, 0, | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3562 "Decode a JISX0208 character of shift-jis encoding.\n\ |
17052 | 3563 CODE is the character code in SJIS.\n\ |
3564 Return the corresponding character.") | |
3565 (code) | |
3566 Lisp_Object code; | |
3567 { | |
3568 unsigned char c1, c2, s1, s2; | |
3569 Lisp_Object val; | |
3570 | |
3571 CHECK_NUMBER (code, 0); | |
3572 s1 = (XFASTINT (code)) >> 8, s2 = (XFASTINT (code)) & 0xFF; | |
3573 DECODE_SJIS (s1, s2, c1, c2); | |
3574 XSETFASTINT (val, MAKE_NON_ASCII_CHAR (charset_jisx0208, c1, c2)); | |
3575 return val; | |
3576 } | |
3577 | |
3578 DEFUN ("encode-sjis-char", Fencode_sjis_char, Sencode_sjis_char, 1, 1, 0, | |
3579 "Encode a JISX0208 character CHAR to SJIS coding-system.\n\ | |
3580 Return the corresponding character code in SJIS.") | |
3581 (ch) | |
3582 Lisp_Object ch; | |
3583 { | |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3584 int charset, c1, c2, s1, s2; |
17052 | 3585 Lisp_Object val; |
3586 | |
3587 CHECK_NUMBER (ch, 0); | |
3588 SPLIT_CHAR (XFASTINT (ch), charset, c1, c2); | |
3589 if (charset == charset_jisx0208) | |
3590 { | |
3591 ENCODE_SJIS (c1, c2, s1, s2); | |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3592 XSETFASTINT (val, (s1 << 8) | s2); |
17052 | 3593 } |
3594 else | |
3595 XSETFASTINT (val, 0); | |
3596 return val; | |
3597 } | |
3598 | |
3599 DEFUN ("decode-big5-char", Fdecode_big5_char, Sdecode_big5_char, 1, 1, 0, | |
3600 "Decode a Big5 character CODE of BIG5 coding-system.\n\ | |
3601 CODE is the character code in BIG5.\n\ | |
3602 Return the corresponding character.") | |
3603 (code) | |
3604 Lisp_Object code; | |
3605 { | |
3606 int charset; | |
3607 unsigned char b1, b2, c1, c2; | |
3608 Lisp_Object val; | |
3609 | |
3610 CHECK_NUMBER (code, 0); | |
3611 b1 = (XFASTINT (code)) >> 8, b2 = (XFASTINT (code)) & 0xFF; | |
3612 DECODE_BIG5 (b1, b2, charset, c1, c2); | |
3613 XSETFASTINT (val, MAKE_NON_ASCII_CHAR (charset, c1, c2)); | |
3614 return val; | |
3615 } | |
3616 | |
3617 DEFUN ("encode-big5-char", Fencode_big5_char, Sencode_big5_char, 1, 1, 0, | |
3618 "Encode the Big5 character CHAR to BIG5 coding-system.\n\ | |
3619 Return the corresponding character code in Big5.") | |
3620 (ch) | |
3621 Lisp_Object ch; | |
3622 { | |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3623 int charset, c1, c2, b1, b2; |
17052 | 3624 Lisp_Object val; |
3625 | |
3626 CHECK_NUMBER (ch, 0); | |
3627 SPLIT_CHAR (XFASTINT (ch), charset, c1, c2); | |
3628 if (charset == charset_big5_1 || charset == charset_big5_2) | |
3629 { | |
3630 ENCODE_BIG5 (charset, c1, c2, b1, b2); | |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3631 XSETFASTINT (val, (b1 << 8) | b2); |
17052 | 3632 } |
3633 else | |
3634 XSETFASTINT (val, 0); | |
3635 return val; | |
3636 } | |
3637 | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3638 DEFUN ("set-terminal-coding-system-internal", |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3639 Fset_terminal_coding_system_internal, |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3640 Sset_terminal_coding_system_internal, 1, 1, 0, "") |
17052 | 3641 (coding_system) |
3642 Lisp_Object coding_system; | |
3643 { | |
3644 CHECK_SYMBOL (coding_system, 0); | |
3645 setup_coding_system (Fcheck_coding_system (coding_system), &terminal_coding); | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3646 /* We had better not send unexpected characters to terminal. */ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3647 terminal_coding.flags |= CODING_FLAG_ISO_SAFE; |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
3648 |
17052 | 3649 return Qnil; |
3650 } | |
3651 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3652 DEFUN ("set-safe-terminal-coding-system-internal", |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3653 Fset_safe_terminal_coding_system_internal, |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3654 Sset_safe_terminal_coding_system_internal, 1, 1, 0, "") |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3655 (coding_system) |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3656 Lisp_Object coding_system; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3657 { |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3658 CHECK_SYMBOL (coding_system, 0); |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3659 setup_coding_system (Fcheck_coding_system (coding_system), |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3660 &safe_terminal_coding); |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3661 return Qnil; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3662 } |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3663 |
17052 | 3664 DEFUN ("terminal-coding-system", |
3665 Fterminal_coding_system, Sterminal_coding_system, 0, 0, 0, | |
3666 "Return coding-system of your terminal.") | |
3667 () | |
3668 { | |
3669 return terminal_coding.symbol; | |
3670 } | |
3671 | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3672 DEFUN ("set-keyboard-coding-system-internal", |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3673 Fset_keyboard_coding_system_internal, |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3674 Sset_keyboard_coding_system_internal, 1, 1, 0, "") |
17052 | 3675 (coding_system) |
3676 Lisp_Object coding_system; | |
3677 { | |
3678 CHECK_SYMBOL (coding_system, 0); | |
3679 setup_coding_system (Fcheck_coding_system (coding_system), &keyboard_coding); | |
3680 return Qnil; | |
3681 } | |
3682 | |
3683 DEFUN ("keyboard-coding-system", | |
3684 Fkeyboard_coding_system, Skeyboard_coding_system, 0, 0, 0, | |
3685 "Return coding-system of what is sent from terminal keyboard.") | |
3686 () | |
3687 { | |
3688 return keyboard_coding.symbol; | |
3689 } | |
3690 | |
3691 | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3692 DEFUN ("find-operation-coding-system", Ffind_operation_coding_system, |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3693 Sfind_operation_coding_system, 1, MANY, 0, |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3694 "Choose a coding system for an operation based on the target name.\n\ |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3695 The value names a pair of coding systems: (DECODING-SYSTEM ENCODING-SYSTEM).\n\ |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3696 DECODING-SYSTEM is the coding system to use for decoding\n\ |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3697 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system\n\ |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3698 for encoding (in case OPERATION does encoding).\n\ |
17304
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3699 \n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3700 The first argument OPERATION specifies an I/O primitive:\n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3701 For file I/O, `insert-file-contents' or `write-region'.\n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3702 For process I/O, `call-process', `call-process-region', or `start-process'.\n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3703 For network I/O, `open-network-stream'.\n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3704 \n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3705 The remaining arguments should be the same arguments that were passed\n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3706 to the primitive. Depending on which primitive, one of those arguments\n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3707 is selected as the TARGET. For example, if OPERATION does file I/O,\n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3708 whichever argument specifies the file name is TARGET.\n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3709 \n\ |
ecacd8936926
(Ffind_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
17190
diff
changeset
|
3710 TARGET has a meaning which depends on OPERATION:\n\ |
17052 | 3711 For file I/O, TARGET is a file name.\n\ |
3712 For process I/O, TARGET is a process name.\n\ | |
3713 For network I/O, TARGET is a service name or a port number\n\ | |
3714 \n\ | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3715 This function looks up what specified for TARGET in,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3716 `file-coding-system-alist', `process-coding-system-alist',\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3717 or `network-coding-system-alist' depending on OPERATION.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3718 They may specify a coding system, a cons of coding systems,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3719 or a function symbol to call.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3720 In the last case, we call the function with one argument,\n\ |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3721 which is a list of all the arguments given to this function.") |
17052 | 3722 (nargs, args) |
3723 int nargs; | |
3724 Lisp_Object *args; | |
3725 { | |
3726 Lisp_Object operation, target_idx, target, val; | |
3727 register Lisp_Object chain; | |
3728 | |
3729 if (nargs < 2) | |
3730 error ("Too few arguments"); | |
3731 operation = args[0]; | |
3732 if (!SYMBOLP (operation) | |
3733 || !INTEGERP (target_idx = Fget (operation, Qtarget_idx))) | |
3734 error ("Invalid first arguement"); | |
3735 if (nargs < 1 + XINT (target_idx)) | |
3736 error ("Too few arguments for operation: %s", | |
3737 XSYMBOL (operation)->name->data); | |
3738 target = args[XINT (target_idx) + 1]; | |
3739 if (!(STRINGP (target) | |
3740 || (EQ (operation, Qopen_network_stream) && INTEGERP (target)))) | |
3741 error ("Invalid %dth argument", XINT (target_idx) + 1); | |
3742 | |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
3743 chain = ((EQ (operation, Qinsert_file_contents) |
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
3744 || EQ (operation, Qwrite_region)) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3745 ? Vfile_coding_system_alist |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
3746 : (EQ (operation, Qopen_network_stream) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3747 ? Vnetwork_coding_system_alist |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3748 : Vprocess_coding_system_alist)); |
17052 | 3749 if (NILP (chain)) |
3750 return Qnil; | |
3751 | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3752 for (; CONSP (chain); chain = XCONS (chain)->cdr) |
17052 | 3753 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
3754 Lisp_Object elt; |
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
3755 elt = XCONS (chain)->car; |
17052 | 3756 |
3757 if (CONSP (elt) | |
3758 && ((STRINGP (target) | |
3759 && STRINGP (XCONS (elt)->car) | |
3760 && fast_string_match (XCONS (elt)->car, target) >= 0) | |
3761 || (INTEGERP (target) && EQ (target, XCONS (elt)->car)))) | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3762 { |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3763 val = XCONS (elt)->cdr; |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3764 /* Here, if VAL is both a valid coding system and a valid |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3765 function symbol, we return VAL as a coding system. */ |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3766 if (CONSP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3767 return val; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3768 if (! SYMBOLP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3769 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3770 if (! NILP (Fcoding_system_p (val))) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3771 return Fcons (val, val); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3772 if (! NILP (Ffboundp (val))) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3773 { |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3774 val = call1 (val, Flist (nargs, args)); |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3775 if (CONSP (val)) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3776 return val; |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3777 if (SYMBOLP (val) && ! NILP (Fcoding_system_p (val))) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3778 return Fcons (val, val); |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
3779 } |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3780 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
3781 } |
17052 | 3782 } |
3783 return Qnil; | |
3784 } | |
3785 | |
3786 #endif /* emacs */ | |
3787 | |
3788 | |
3789 /*** 8. Post-amble ***/ | |
3790 | |
3791 init_coding_once () | |
3792 { | |
3793 int i; | |
3794 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
3795 /* Emacs' internal format specific initialize routine. */ |
17052 | 3796 for (i = 0; i <= 0x20; i++) |
3797 emacs_code_class[i] = EMACS_control_code; | |
3798 emacs_code_class[0x0A] = EMACS_linefeed_code; | |
3799 emacs_code_class[0x0D] = EMACS_carriage_return_code; | |
3800 for (i = 0x21 ; i < 0x7F; i++) | |
3801 emacs_code_class[i] = EMACS_ascii_code; | |
3802 emacs_code_class[0x7F] = EMACS_control_code; | |
3803 emacs_code_class[0x80] = EMACS_leading_code_composition; | |
3804 for (i = 0x81; i < 0xFF; i++) | |
3805 emacs_code_class[i] = EMACS_invalid_code; | |
3806 emacs_code_class[LEADING_CODE_PRIVATE_11] = EMACS_leading_code_3; | |
3807 emacs_code_class[LEADING_CODE_PRIVATE_12] = EMACS_leading_code_3; | |
3808 emacs_code_class[LEADING_CODE_PRIVATE_21] = EMACS_leading_code_4; | |
3809 emacs_code_class[LEADING_CODE_PRIVATE_22] = EMACS_leading_code_4; | |
3810 | |
3811 /* ISO2022 specific initialize routine. */ | |
3812 for (i = 0; i < 0x20; i++) | |
3813 iso_code_class[i] = ISO_control_code; | |
3814 for (i = 0x21; i < 0x7F; i++) | |
3815 iso_code_class[i] = ISO_graphic_plane_0; | |
3816 for (i = 0x80; i < 0xA0; i++) | |
3817 iso_code_class[i] = ISO_control_code; | |
3818 for (i = 0xA1; i < 0xFF; i++) | |
3819 iso_code_class[i] = ISO_graphic_plane_1; | |
3820 iso_code_class[0x20] = iso_code_class[0x7F] = ISO_0x20_or_0x7F; | |
3821 iso_code_class[0xA0] = iso_code_class[0xFF] = ISO_0xA0_or_0xFF; | |
3822 iso_code_class[ISO_CODE_CR] = ISO_carriage_return; | |
3823 iso_code_class[ISO_CODE_SO] = ISO_shift_out; | |
3824 iso_code_class[ISO_CODE_SI] = ISO_shift_in; | |
3825 iso_code_class[ISO_CODE_SS2_7] = ISO_single_shift_2_7; | |
3826 iso_code_class[ISO_CODE_ESC] = ISO_escape; | |
3827 iso_code_class[ISO_CODE_SS2] = ISO_single_shift_2; | |
3828 iso_code_class[ISO_CODE_SS3] = ISO_single_shift_3; | |
3829 iso_code_class[ISO_CODE_CSI] = ISO_control_sequence_introducer; | |
3830 | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3831 conversion_buffer_size = MINIMUM_CONVERSION_BUFFER_SIZE; |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3832 conversion_buffer = (char *) xmalloc (MINIMUM_CONVERSION_BUFFER_SIZE); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3833 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3834 setup_coding_system (Qnil, &keyboard_coding); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3835 setup_coding_system (Qnil, &terminal_coding); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3836 setup_coding_system (Qnil, &safe_terminal_coding); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3837 |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3838 #if defined (MSDOS) || defined (WINDOWSNT) |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3839 system_eol_type = CODING_EOL_CRLF; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3840 #else |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3841 system_eol_type = CODING_EOL_LF; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3842 #endif |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3843 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3844 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3845 #ifdef emacs |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3846 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3847 syms_of_coding () |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3848 { |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3849 Qtarget_idx = intern ("target-idx"); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3850 staticpro (&Qtarget_idx); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3851 |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
3852 Qcoding_system_history = intern ("coding-system-history"); |
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
3853 staticpro (&Qcoding_system_history); |
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
3854 Fset (Qcoding_system_history, Qnil); |
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
3855 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3856 /* Target FILENAME is the first argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3857 Fput (Qinsert_file_contents, Qtarget_idx, make_number (0)); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3858 /* Target FILENAME is the third argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3859 Fput (Qwrite_region, Qtarget_idx, make_number (2)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3860 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3861 Qcall_process = intern ("call-process"); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3862 staticpro (&Qcall_process); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3863 /* Target PROGRAM is the first argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3864 Fput (Qcall_process, Qtarget_idx, make_number (0)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3865 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3866 Qcall_process_region = intern ("call-process-region"); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3867 staticpro (&Qcall_process_region); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3868 /* Target PROGRAM is the third argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3869 Fput (Qcall_process_region, Qtarget_idx, make_number (2)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3870 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3871 Qstart_process = intern ("start-process"); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3872 staticpro (&Qstart_process); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3873 /* Target PROGRAM is the third argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3874 Fput (Qstart_process, Qtarget_idx, make_number (2)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3875 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3876 Qopen_network_stream = intern ("open-network-stream"); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3877 staticpro (&Qopen_network_stream); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3878 /* Target SERVICE is the fourth argument. */ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3879 Fput (Qopen_network_stream, Qtarget_idx, make_number (3)); |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
3880 |
17052 | 3881 Qcoding_system = intern ("coding-system"); |
3882 staticpro (&Qcoding_system); | |
3883 | |
3884 Qeol_type = intern ("eol-type"); | |
3885 staticpro (&Qeol_type); | |
3886 | |
3887 Qbuffer_file_coding_system = intern ("buffer-file-coding-system"); | |
3888 staticpro (&Qbuffer_file_coding_system); | |
3889 | |
3890 Qpost_read_conversion = intern ("post-read-conversion"); | |
3891 staticpro (&Qpost_read_conversion); | |
3892 | |
3893 Qpre_write_conversion = intern ("pre-write-conversion"); | |
3894 staticpro (&Qpre_write_conversion); | |
3895 | |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3896 Qno_conversion = intern ("no-conversion"); |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3897 staticpro (&Qno_conversion); |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3898 |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3899 Qundecided = intern ("undecided"); |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3900 staticpro (&Qundecided); |
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
3901 |
17052 | 3902 Qcoding_system_p = intern ("coding-system-p"); |
3903 staticpro (&Qcoding_system_p); | |
3904 | |
3905 Qcoding_system_error = intern ("coding-system-error"); | |
3906 staticpro (&Qcoding_system_error); | |
3907 | |
3908 Fput (Qcoding_system_error, Qerror_conditions, | |
3909 Fcons (Qcoding_system_error, Fcons (Qerror, Qnil))); | |
3910 Fput (Qcoding_system_error, Qerror_message, | |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3911 build_string ("Invalid coding system")); |
17052 | 3912 |
3913 Qcoding_category_index = intern ("coding-category-index"); | |
3914 staticpro (&Qcoding_category_index); | |
3915 | |
3916 { | |
3917 int i; | |
3918 for (i = 0; i < CODING_CATEGORY_IDX_MAX; i++) | |
3919 { | |
3920 coding_category_table[i] = intern (coding_category_name[i]); | |
3921 staticpro (&coding_category_table[i]); | |
3922 Fput (coding_category_table[i], Qcoding_category_index, | |
3923 make_number (i)); | |
3924 } | |
3925 } | |
3926 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3927 Qcharacter_unification_table = intern ("character-unification-table"); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3928 staticpro (&Qcharacter_unification_table); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3929 Fput (Qcharacter_unification_table, Qchar_table_extra_slots, |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3930 make_number (0)); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
3931 |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3932 Qcharacter_unification_table_for_decode |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3933 = intern ("character-unification-table-for-decode"); |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3934 staticpro (&Qcharacter_unification_table_for_decode); |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3935 |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3936 Qcharacter_unification_table_for_encode |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3937 = intern ("character-unification-table-for-encode"); |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3938 staticpro (&Qcharacter_unification_table_for_encode); |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3939 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3940 Qemacs_mule = intern ("emacs-mule"); |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3941 staticpro (&Qemacs_mule); |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
3942 |
17052 | 3943 defsubr (&Scoding_system_p); |
3944 defsubr (&Sread_coding_system); | |
3945 defsubr (&Sread_non_nil_coding_system); | |
3946 defsubr (&Scheck_coding_system); | |
3947 defsubr (&Sdetect_coding_region); | |
3948 defsubr (&Sdecode_coding_region); | |
3949 defsubr (&Sencode_coding_region); | |
3950 defsubr (&Sdecode_coding_string); | |
3951 defsubr (&Sencode_coding_string); | |
3952 defsubr (&Sdecode_sjis_char); | |
3953 defsubr (&Sencode_sjis_char); | |
3954 defsubr (&Sdecode_big5_char); | |
3955 defsubr (&Sencode_big5_char); | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3956 defsubr (&Sset_terminal_coding_system_internal); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3957 defsubr (&Sset_safe_terminal_coding_system_internal); |
17052 | 3958 defsubr (&Sterminal_coding_system); |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
3959 defsubr (&Sset_keyboard_coding_system_internal); |
17052 | 3960 defsubr (&Skeyboard_coding_system); |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
3961 defsubr (&Sfind_operation_coding_system); |
17052 | 3962 |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3963 DEFVAR_LISP ("coding-system-list", &Vcoding_system_list, |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3964 "List of coding systems.\n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3965 \n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3966 Do not alter the value of this variable manually. This variable should be\n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3967 updated by the functions `make-coding-system' and\n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3968 `define-coding-system-alias'."); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3969 Vcoding_system_list = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3970 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3971 DEFVAR_LISP ("coding-system-alist", &Vcoding_system_alist, |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3972 "Alist of coding system names.\n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3973 Each element is one element list of coding system name.\n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3974 This variable is given to `completing-read' as TABLE argument.\n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3975 \n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3976 Do not alter the value of this variable manually. This variable should be\n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3977 updated by the functions `make-coding-system' and\n\ |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3978 `define-coding-system-alias'."); |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3979 Vcoding_system_alist = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
3980 |
17052 | 3981 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list, |
3982 "List of coding-categories (symbols) ordered by priority."); | |
3983 { | |
3984 int i; | |
3985 | |
3986 Vcoding_category_list = Qnil; | |
3987 for (i = CODING_CATEGORY_IDX_MAX - 1; i >= 0; i--) | |
3988 Vcoding_category_list | |
3989 = Fcons (coding_category_table[i], Vcoding_category_list); | |
3990 } | |
3991 | |
3992 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read, | |
19118
16ef8c28e4e0
(detect_coding_mask): Include CODING_CATEGORY_MASK_BINARY in the
Richard M. Stallman <rms@gnu.org>
parents:
19068
diff
changeset
|
3993 "Specify the coding system for read operations.\n\ |
19193
1701f2296f99
(syms_of_coding): Doc syntax fixes.
Richard M. Stallman <rms@gnu.org>
parents:
19181
diff
changeset
|
3994 It is useful to bind this variable with `let', but do not set it globally.\n\ |
17052 | 3995 If the value is a coding system, it is used for decoding on read operation.\n\ |
18910
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3996 If not, an appropriate element is used from one of the coding system alists:\n\ |
19118
16ef8c28e4e0
(detect_coding_mask): Include CODING_CATEGORY_MASK_BINARY in the
Richard M. Stallman <rms@gnu.org>
parents:
19068
diff
changeset
|
3997 There are three such tables, `file-coding-system-alist',\n\ |
18910
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
3998 `process-coding-system-alist', and `network-coding-system-alist'."); |
17052 | 3999 Vcoding_system_for_read = Qnil; |
4000 | |
4001 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write, | |
19118
16ef8c28e4e0
(detect_coding_mask): Include CODING_CATEGORY_MASK_BINARY in the
Richard M. Stallman <rms@gnu.org>
parents:
19068
diff
changeset
|
4002 "Specify the coding system for write operations.\n\ |
19193
1701f2296f99
(syms_of_coding): Doc syntax fixes.
Richard M. Stallman <rms@gnu.org>
parents:
19181
diff
changeset
|
4003 It is useful to bind this variable with `let', but do not set it globally.\n\ |
17052 | 4004 If the value is a coding system, it is used for encoding on write operation.\n\ |
18910
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
4005 If not, an appropriate element is used from one of the coding system alists:\n\ |
19118
16ef8c28e4e0
(detect_coding_mask): Include CODING_CATEGORY_MASK_BINARY in the
Richard M. Stallman <rms@gnu.org>
parents:
19068
diff
changeset
|
4006 There are three such tables, `file-coding-system-alist',\n\ |
18910
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
4007 `process-coding-system-alist', and `network-coding-system-alist'."); |
17052 | 4008 Vcoding_system_for_write = Qnil; |
4009 | |
4010 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, | |
18910
50c89868f8c7
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
18860
diff
changeset
|
4011 "Coding system used in the latest file or process I/O."); |
17052 | 4012 Vlast_coding_system_used = Qnil; |
4013 | |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
4014 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
4015 "*Non-nil inhibit code conversion of end-of-line format in any cases."); |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
4016 inhibit_eol_conversion = 0; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
4017 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4018 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist, |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4019 "Alist to decide a coding system to use for a file I/O operation.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4020 The format is ((PATTERN . VAL) ...),\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4021 where PATTERN is a regular expression matching a file name,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4022 VAL is a coding system, a cons of coding systems, or a function symbol.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4023 If VAL is a coding system, it is used for both decoding and encoding\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4024 the file contents.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4025 If VAL is a cons of coding systems, the car part is used for decoding,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4026 and the cdr part is used for encoding.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4027 If VAL is a function symbol, the function must return a coding system\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4028 or a cons of coding systems which are used as above.\n\ |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4029 \n\ |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
4030 See also the function `find-operation-coding-system'."); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4031 Vfile_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4032 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4033 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist, |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4034 "Alist to decide a coding system to use for a process I/O operation.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4035 The format is ((PATTERN . VAL) ...),\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4036 where PATTERN is a regular expression matching a program name,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4037 VAL is a coding system, a cons of coding systems, or a function symbol.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4038 If VAL is a coding system, it is used for both decoding what received\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4039 from the program and encoding what sent to the program.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4040 If VAL is a cons of coding systems, the car part is used for decoding,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4041 and the cdr part is used for encoding.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4042 If VAL is a function symbol, the function must return a coding system\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4043 or a cons of coding systems which are used as above.\n\ |
17052 | 4044 \n\ |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
4045 See also the function `find-operation-coding-system'."); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4046 Vprocess_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4047 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4048 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist, |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4049 "Alist to decide a coding system to use for a network I/O operation.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4050 The format is ((PATTERN . VAL) ...),\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4051 where PATTERN is a regular expression matching a network service name\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4052 or is a port number to connect to,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4053 VAL is a coding system, a cons of coding systems, or a function symbol.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4054 If VAL is a coding system, it is used for both decoding what received\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4055 from the network stream and encoding what sent to the network stream.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4056 If VAL is a cons of coding systems, the car part is used for decoding,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4057 and the cdr part is used for encoding.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4058 If VAL is a function symbol, the function must return a coding system\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4059 or a cons of coding systems which are used as above.\n\ |
17052 | 4060 \n\ |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
4061 See also the function `find-operation-coding-system'."); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4062 Vnetwork_coding_system_alist = Qnil; |
17052 | 4063 |
4064 DEFVAR_INT ("eol-mnemonic-unix", &eol_mnemonic_unix, | |
4065 "Mnemonic character indicating UNIX-like end-of-line format (i.e. LF) ."); | |
18523
6b5af78c8b21
(syms_of_coding): Change initial values of eol_mnemonic_... variables.
Richard M. Stallman <rms@gnu.org>
parents:
18310
diff
changeset
|
4066 eol_mnemonic_unix = ':'; |
17052 | 4067 |
4068 DEFVAR_INT ("eol-mnemonic-dos", &eol_mnemonic_dos, | |
4069 "Mnemonic character indicating DOS-like end-of-line format (i.e. CRLF)."); | |
18523
6b5af78c8b21
(syms_of_coding): Change initial values of eol_mnemonic_... variables.
Richard M. Stallman <rms@gnu.org>
parents:
18310
diff
changeset
|
4070 eol_mnemonic_dos = '\\'; |
17052 | 4071 |
4072 DEFVAR_INT ("eol-mnemonic-mac", &eol_mnemonic_mac, | |
4073 "Mnemonic character indicating MAC-like end-of-line format (i.e. CR)."); | |
18523
6b5af78c8b21
(syms_of_coding): Change initial values of eol_mnemonic_... variables.
Richard M. Stallman <rms@gnu.org>
parents:
18310
diff
changeset
|
4074 eol_mnemonic_mac = '/'; |
17052 | 4075 |
4076 DEFVAR_INT ("eol-mnemonic-undecided", &eol_mnemonic_undecided, | |
4077 "Mnemonic character indicating end-of-line format is not yet decided."); | |
18523
6b5af78c8b21
(syms_of_coding): Change initial values of eol_mnemonic_... variables.
Richard M. Stallman <rms@gnu.org>
parents:
18310
diff
changeset
|
4078 eol_mnemonic_undecided = ':'; |
17052 | 4079 |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4080 DEFVAR_LISP ("enable-character-unification", &Venable_character_unification, |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4081 "Non-nil means ISO 2022 encoder/decoder do character unification."); |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4082 Venable_character_unification = Qt; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4083 |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
4084 DEFVAR_LISP ("standard-character-unification-table-for-decode", |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
4085 &Vstandard_character_unification_table_for_decode, |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4086 "Table for unifying characters when reading."); |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
4087 Vstandard_character_unification_table_for_decode = Qnil; |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
4088 |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
4089 DEFVAR_LISP ("standard-character-unification-table-for-encode", |
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
4090 &Vstandard_character_unification_table_for_encode, |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4091 "Table for unifying characters when writing."); |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
4092 Vstandard_character_unification_table_for_encode = Qnil; |
17052 | 4093 |
4094 DEFVAR_LISP ("charset-revision-table", &Vcharset_revision_alist, | |
4095 "Alist of charsets vs revision numbers.\n\ | |
4096 While encoding, if a charset (car part of an element) is found,\n\ | |
4097 designate it with the escape sequence identifing revision (cdr part of the element)."); | |
4098 Vcharset_revision_alist = Qnil; | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4099 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4100 DEFVAR_LISP ("default-process-coding-system", |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4101 &Vdefault_process_coding_system, |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4102 "Cons of coding systems used for process I/O by default.\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4103 The car part is used for decoding a process output,\n\ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4104 the cdr part is used for encoding a text to be sent to a process."); |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
4105 Vdefault_process_coding_system = Qnil; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
4106 |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
4107 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table, |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
4108 "Table of extra Latin codes in the range 128..159 (inclusive).\n\ |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
4109 This is a vector of length 256.\n\ |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
4110 If Nth element is non-nil, the existence of code N in a file\n\ |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
4111 \(or output of subprocess) doesn't prevent it to be detected as\n\ |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
4112 a coding system of ISO 2022 variant which has a flag\n\ |
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
4113 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file\n\ |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
4114 or reading output of a subprocess.\n\ |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
4115 Only 128th through 159th elements has a meaning."); |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
4116 Vlatin_extra_code_table = Fmake_vector (make_number (256), Qnil); |
17052 | 4117 } |
4118 | |
4119 #endif /* emacs */ |