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