Mercurial > emacs
annotate src/coding.c @ 104646:17ba24e6c4d0
Add fixmes.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 27 Aug 2009 16:18:26 +0000 |
parents | bc74846b9a54 |
children | 8143cdf4806f |
rev | line source |
---|---|
88936 | 1 /* Coding system handler (conversion, detection, etc). |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
68567
diff
changeset
|
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, |
100951 | 3 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
73995
diff
changeset
|
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
100951 | 5 2005, 2006, 2007, 2008, 2009 |
67658 | 6 National Institute of Advanced Industrial Science and Technology (AIST) |
7 Registration Number H14PRO021 | |
89483 | 8 Copyright (C) 2003 |
88365 | 9 National Institute of Advanced Industrial Science and Technology (AIST) |
10 Registration Number H13PRO009 | |
17052 | 11 |
17071 | 12 This file is part of GNU Emacs. |
13 | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94944
diff
changeset
|
14 GNU Emacs is free software: you can redistribute it and/or modify |
17071 | 15 it under the terms of the GNU General Public License as published by |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94944
diff
changeset
|
16 the Free Software Foundation, either version 3 of the License, or |
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94944
diff
changeset
|
17 (at your option) any later version. |
17071 | 18 |
19 GNU Emacs is distributed in the hope that it will be useful, | |
20 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 GNU General Public License for more details. | |
23 | |
24 You should have received a copy of the GNU General Public License | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94944
diff
changeset
|
25 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
17052 | 26 |
27 /*** TABLE OF CONTENTS *** | |
28 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
29 0. General comments |
17052 | 30 1. Preamble |
88365 | 31 2. Emacs' internal format (emacs-utf-8) handlers |
32 3. UTF-8 handlers | |
33 4. UTF-16 handlers | |
34 5. Charset-base coding systems handlers | |
35 6. emacs-mule (old Emacs' internal format) handlers | |
36 7. ISO2022 handlers | |
37 8. Shift-JIS and BIG5 handlers | |
38 9. CCL handlers | |
39 10. C library functions | |
40 11. Emacs Lisp library functions | |
41 12. Postamble | |
17052 | 42 |
43 */ | |
44 | |
88365 | 45 /*** 0. General comments *** |
46 | |
47 | |
48 CODING SYSTEM | |
49 | |
88485 | 50 A coding system is an object for an encoding mechanism that contains |
51 information about how to convert byte sequences to character | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
52 sequences and vice versa. When we say "decode", it means converting |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
53 a byte sequence of a specific coding system into a character |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
54 sequence that is represented by Emacs' internal coding system |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
55 `emacs-utf-8', and when we say "encode", it means converting a |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
56 character sequence of emacs-utf-8 to a byte sequence of a specific |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
57 coding system. |
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
58 |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
59 In Emacs Lisp, a coding system is represented by a Lisp symbol. In |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
60 C level, a coding system is represented by a vector of attributes |
88485 | 61 stored in the hash table Vcharset_hash_table. The conversion from |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
62 coding system symbol to attributes vector is done by looking up |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
63 Vcharset_hash_table by the symbol. |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
64 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
65 Coding systems are classified into the following types depending on |
88485 | 66 the encoding mechanism. Here's a brief description of the types. |
88365 | 67 |
68 o UTF-8 | |
69 | |
70 o UTF-16 | |
71 | |
72 o Charset-base coding system | |
73 | |
74 A coding system defined by one or more (coded) character sets. | |
88485 | 75 Decoding and encoding are done by a code converter defined for each |
88365 | 76 character set. |
77 | |
88485 | 78 o Old Emacs internal format (emacs-mule) |
79 | |
80 The coding system adopted by old versions of Emacs (20 and 21). | |
88365 | 81 |
82 o ISO2022-base coding system | |
17052 | 83 |
84 The most famous coding system for multiple character sets. X's | |
88365 | 85 Compound Text, various EUCs (Extended Unix Code), and coding systems |
86 used in the Internet communication such as ISO-2022-JP are all | |
87 variants of ISO2022. | |
88 | |
89 o SJIS (or Shift-JIS or MS-Kanji-Code) | |
42104
d69c2368e549
(DECODE_COMPOSITION_END): Fixed a typo in the last
Sam Steingold <sds@gnu.org>
parents:
42103
diff
changeset
|
90 |
17052 | 91 A coding system to encode character sets: ASCII, JISX0201, and |
92 JISX0208. Widely used for PC's in Japan. Details are described in | |
88365 | 93 section 8. |
94 | |
95 o BIG5 | |
96 | |
97 A coding system to encode character sets: ASCII and Big5. Widely | |
35053 | 98 used for Chinese (mainly in Taiwan and Hong Kong). Details are |
88365 | 99 described in section 8. In this file, when we write "big5" (all |
100 lowercase), we mean the coding system, and when we write "Big5" | |
101 (capitalized), we mean the character set. | |
102 | |
103 o CCL | |
104 | |
88485 | 105 If a user wants to decode/encode text encoded in a coding system |
88365 | 106 not listed above, he can supply a decoder and an encoder for it in |
107 CCL (Code Conversion Language) programs. Emacs executes the CCL | |
108 program while decoding/encoding. | |
109 | |
110 o Raw-text | |
111 | |
88771 | 112 A coding system for text containing raw eight-bit data. Emacs |
88485 | 113 treats each byte of source text as a character (except for |
88365 | 114 end-of-line conversion). |
115 | |
116 o No-conversion | |
117 | |
118 Like raw text, but don't do end-of-line conversion. | |
119 | |
120 | |
121 END-OF-LINE FORMAT | |
122 | |
88485 | 123 How text end-of-line is encoded depends on operating system. For |
88365 | 124 instance, Unix's format is just one byte of LF (line-feed) code, |
18766 | 125 whereas DOS's format is two-byte sequence of `carriage-return' and |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
126 `line-feed' codes. MacOS's format is usually one byte of |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
127 `carriage-return'. |
17052 | 128 |
35053 | 129 Since text character encoding and end-of-line encoding are |
88365 | 130 independent, any coding system described above can take any format |
131 of end-of-line (except for no-conversion). | |
17052 | 132 |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
133 STRUCT CODING_SYSTEM |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
134 |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
135 Before using a coding system for code conversion (i.e. decoding and |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
136 encoding), we setup a structure of type `struct coding_system'. |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
137 This structure keeps various information about a specific code |
88485 | 138 conversion (e.g. the location of source and destination data). |
17052 | 139 |
140 */ | |
141 | |
88365 | 142 /* COMMON MACROS */ |
143 | |
144 | |
17052 | 145 /*** GENERAL NOTES on `detect_coding_XXX ()' functions *** |
146 | |
88365 | 147 These functions check if a byte sequence specified as a source in |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
148 CODING conforms to the format of XXX, and update the members of |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
149 DETECT_INFO. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
150 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
151 Return 1 if the byte sequence conforms to XXX, otherwise return 0. |
88365 | 152 |
153 Below is the template of these functions. */ | |
154 | |
17052 | 155 #if 0 |
88365 | 156 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
157 detect_coding_XXX (coding, detect_info) |
88365 | 158 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
159 struct coding_detection_info *detect_info; |
17052 | 160 { |
90070
95879cc1ed20
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-81
Miles Bader <miles@gnu.org>
diff
changeset
|
161 const unsigned char *src = coding->source; |
95879cc1ed20
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-81
Miles Bader <miles@gnu.org>
diff
changeset
|
162 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 163 int multibytep = coding->src_multibyte; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
164 int consumed_chars = 0; |
88365 | 165 int found = 0; |
166 ...; | |
167 | |
168 while (1) | |
169 { | |
170 /* Get one byte from the source. If the souce is exausted, jump | |
171 to no_more_source:. */ | |
172 ONE_MORE_BYTE (c); | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
173 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
174 if (! __C_conforms_to_XXX___ (c)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
175 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
176 if (! __C_strongly_suggests_XXX__ (c)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
177 found = CATEGORY_MASK_XXX; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
178 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
179 /* The byte sequence is invalid for XXX. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
180 detect_info->rejected |= CATEGORY_MASK_XXX; |
88365 | 181 return 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
182 |
88365 | 183 no_more_source: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
184 /* The source exausted successfully. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
185 detect_info->found |= found; |
88365 | 186 return 1; |
17052 | 187 } |
188 #endif | |
189 | |
190 /*** GENERAL NOTES on `decode_coding_XXX ()' functions *** | |
191 | |
88365 | 192 These functions decode a byte sequence specified as a source by |
193 CODING. The resulting multibyte text goes to a place pointed to by | |
194 CODING->charbuf, the length of which should not exceed | |
195 CODING->charbuf_size; | |
196 | |
197 These functions set the information of original and decoded texts in | |
198 CODING->consumed, CODING->consumed_char, and CODING->charbuf_used. | |
199 They also set CODING->result to one of CODING_RESULT_XXX indicating | |
200 how the decoding is finished. | |
201 | |
202 Below is the template of these functions. */ | |
203 | |
17052 | 204 #if 0 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
205 static void |
88365 | 206 decode_coding_XXXX (coding) |
17052 | 207 struct coding_system *coding; |
208 { | |
90070
95879cc1ed20
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-81
Miles Bader <miles@gnu.org>
diff
changeset
|
209 const unsigned char *src = coding->source + coding->consumed; |
95879cc1ed20
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-81
Miles Bader <miles@gnu.org>
diff
changeset
|
210 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 211 /* SRC_BASE remembers the start position in source in each loop. |
212 The loop will be exited when there's not enough source code, or | |
213 when there's no room in CHARBUF for a decoded character. */ | |
90070
95879cc1ed20
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-81
Miles Bader <miles@gnu.org>
diff
changeset
|
214 const unsigned char *src_base; |
88365 | 215 /* A buffer to produce decoded characters. */ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
216 int *charbuf = coding->charbuf + coding->charbuf_used; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
217 int *charbuf_end = coding->charbuf + coding->charbuf_size; |
88365 | 218 int multibytep = coding->src_multibyte; |
219 | |
220 while (1) | |
221 { | |
222 src_base = src; | |
223 if (charbuf < charbuf_end) | |
224 /* No more room to produce a decoded character. */ | |
225 break; | |
226 ONE_MORE_BYTE (c); | |
227 /* Decode it. */ | |
228 } | |
229 | |
230 no_more_source: | |
231 if (src_base < src_end | |
232 && coding->mode & CODING_MODE_LAST_BLOCK) | |
233 /* If the source ends by partial bytes to construct a character, | |
234 treat them as eight-bit raw data. */ | |
235 while (src_base < src_end && charbuf < charbuf_end) | |
236 *charbuf++ = *src_base++; | |
237 /* Remember how many bytes and characters we consumed. If the | |
238 source is multibyte, the bytes and chars are not identical. */ | |
239 coding->consumed = coding->consumed_char = src_base - coding->source; | |
240 /* Remember how many characters we produced. */ | |
241 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 242 } |
243 #endif | |
244 | |
245 /*** GENERAL NOTES on `encode_coding_XXX ()' functions *** | |
246 | |
88365 | 247 These functions encode SRC_BYTES length text at SOURCE of Emacs' |
248 internal multibyte format by CODING. The resulting byte sequence | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
249 goes to a place pointed to by DESTINATION, the length of which |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
250 should not exceed DST_BYTES. |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
251 |
88365 | 252 These functions set the information of original and encoded texts in |
253 the members produced, produced_char, consumed, and consumed_char of | |
254 the structure *CODING. They also set the member result to one of | |
255 CODING_RESULT_XXX indicating how the encoding finished. | |
256 | |
257 DST_BYTES zero means that source area and destination area are | |
258 overlapped, which means that we can produce a encoded text until it | |
259 reaches at the head of not-yet-encoded source text. | |
260 | |
261 Below is a template of these functions. */ | |
17052 | 262 #if 0 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
263 static void |
88365 | 264 encode_coding_XXX (coding) |
17052 | 265 struct coding_system *coding; |
266 { | |
88365 | 267 int multibytep = coding->dst_multibyte; |
268 int *charbuf = coding->charbuf; | |
269 int *charbuf_end = charbuf->charbuf + coding->charbuf_used; | |
270 unsigned char *dst = coding->destination + coding->produced; | |
271 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
272 unsigned char *adjusted_dst_end = dst_end - _MAX_BYTES_PRODUCED_IN_LOOP_; | |
273 int produced_chars = 0; | |
274 | |
275 for (; charbuf < charbuf_end && dst < adjusted_dst_end; charbuf++) | |
276 { | |
277 int c = *charbuf; | |
278 /* Encode C into DST, and increment DST. */ | |
279 } | |
280 label_no_more_destination: | |
281 /* How many chars and bytes we produced. */ | |
282 coding->produced_char += produced_chars; | |
283 coding->produced = dst - coding->destination; | |
17052 | 284 } |
285 #endif | |
286 | |
287 | |
288 /*** 1. Preamble ***/ | |
289 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
290 #include <config.h> |
17052 | 291 #include <stdio.h> |
292 | |
293 #include "lisp.h" | |
294 #include "buffer.h" | |
88365 | 295 #include "character.h" |
17052 | 296 #include "charset.h" |
88365 | 297 #include "ccl.h" |
26847 | 298 #include "composite.h" |
17052 | 299 #include "coding.h" |
300 #include "window.h" | |
83127
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
301 #include "frame.h" |
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
302 #include "termhooks.h" |
17052 | 303 |
88365 | 304 Lisp_Object Vcoding_system_hash_table; |
305 | |
306 Lisp_Object Qcoding_system, Qcoding_aliases, Qeol_type; | |
88646
d3b1f30e2267
(Qmac): Remove (duplicated) definition.
Dave Love <fx@gnu.org>
parents:
88645
diff
changeset
|
307 Lisp_Object Qunix, Qdos; |
d3b1f30e2267
(Qmac): Remove (duplicated) definition.
Dave Love <fx@gnu.org>
parents:
88645
diff
changeset
|
308 extern Lisp_Object Qmac; /* frame.c */ |
17052 | 309 Lisp_Object Qbuffer_file_coding_system; |
310 Lisp_Object Qpost_read_conversion, Qpre_write_conversion; | |
88365 | 311 Lisp_Object Qdefault_char; |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
312 Lisp_Object Qno_conversion, Qundecided; |
88365 | 313 Lisp_Object Qcharset, Qiso_2022, Qutf_8, Qutf_16, Qshift_jis, Qbig5; |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
314 Lisp_Object Qbig, Qlittle; |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
315 Lisp_Object Qcoding_system_history; |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
316 Lisp_Object Qvalid_codes; |
100303
3e044fa54e4f
* coding.c (QCdefault_char): Rename from QCdefalut_char.
Juanma Barranquero <lekktu@gmail.com>
parents:
100262
diff
changeset
|
317 Lisp_Object QCcategory, QCmnemonic, QCdefault_char; |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
318 Lisp_Object QCdecode_translation_table, QCencode_translation_table; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
319 Lisp_Object QCpost_read_conversion, QCpre_write_conversion; |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
320 Lisp_Object QCascii_compatible_p; |
17052 | 321 |
322 extern Lisp_Object Qinsert_file_contents, Qwrite_region; | |
64251
3de1b955c31a
* coding.c (Qprocess_argument):
Kim F. Storm <storm@cua.dk>
parents:
64084
diff
changeset
|
323 Lisp_Object Qcall_process, Qcall_process_region; |
17052 | 324 Lisp_Object Qstart_process, Qopen_network_stream; |
325 Lisp_Object Qtarget_idx; | |
326 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
327 Lisp_Object Qinsufficient_source, Qinconsistent_eol, Qinvalid_source; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
328 Lisp_Object Qinterrupted, Qinsufficient_memory; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
329 |
79107
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
330 extern Lisp_Object Qcompletion_ignore_case; |
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
331 |
52794
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
332 /* If a symbol has this property, evaluate the value to define the |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
333 symbol as a coding system. */ |
90272
f1df126ec7de
Sync to HEAD for handling autoload-coding-system.
Kenichi Handa <handa@m17n.org>
parents:
90263
diff
changeset
|
334 static Lisp_Object Qcoding_system_define_form; |
f1df126ec7de
Sync to HEAD for handling autoload-coding-system.
Kenichi Handa <handa@m17n.org>
parents:
90263
diff
changeset
|
335 |
89483 | 336 int coding_system_require_warning; |
52794
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
337 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
338 Lisp_Object Vselect_safe_coding_system_function; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
339 |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
340 /* Mnemonic string for each format of end-of-line. */ |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
341 Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
342 /* Mnemonic string to indicate format of end-of-line is not yet |
17052 | 343 decided. */ |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
344 Lisp_Object eol_mnemonic_undecided; |
17052 | 345 |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
346 /* Format of end-of-line decided by system. This is Qunix on |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
347 Unix and Mac, Qdos on DOS/Windows. |
70520
b6740a317343
(setup_coding_system): For invalid coding-system, set
Kenichi Handa <handa@m17n.org>
parents:
69995
diff
changeset
|
348 This has an effect only for external encoding (i.e. for output to |
b6740a317343
(setup_coding_system): For invalid coding-system, set
Kenichi Handa <handa@m17n.org>
parents:
69995
diff
changeset
|
349 file and process), not for in-buffer or Lisp string encoding. */ |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
350 static Lisp_Object system_eol_type; |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
351 |
17052 | 352 #ifdef emacs |
353 | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
354 Lisp_Object Vcoding_system_list, Vcoding_system_alist; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
355 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
356 Lisp_Object Qcoding_system_p, Qcoding_system_error; |
17052 | 357 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
358 /* Coding system emacs-mule and raw-text are for converting only |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
359 end-of-line format. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
360 Lisp_Object Qemacs_mule, Qraw_text; |
89483 | 361 Lisp_Object Qutf_8_emacs; |
51406 | 362 |
17052 | 363 /* Coding-systems are handed between Emacs Lisp programs and C internal |
364 routines by the following three variables. */ | |
365 /* Coding-system for reading files and receiving data from process. */ | |
366 Lisp_Object Vcoding_system_for_read; | |
367 /* Coding-system for writing files and sending data to process. */ | |
368 Lisp_Object Vcoding_system_for_write; | |
369 /* Coding-system actually used in the latest I/O. */ | |
370 Lisp_Object Vlast_coding_system_used; | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
371 /* Set to non-nil when an error is detected while code conversion. */ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
372 Lisp_Object Vlast_code_conversion_error; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
373 /* A vector of length 256 which contains information about special |
22529 | 374 Latin codes (especially for dealing with Microsoft codes). */ |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
375 Lisp_Object Vlatin_extra_code_table; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
376 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
377 /* 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
|
378 int inhibit_eol_conversion; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
379 |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
380 /* Flag to inhibit ISO2022 escape sequence detection. */ |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
381 int inhibit_iso_escape_detection; |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
382 |
101040 | 383 /* Flag to inhibit detection of binary files through null bytes. */ |
384 int inhibit_null_byte_detection; | |
385 | |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
386 /* Flag to make buffer-file-coding-system inherit from process-coding. */ |
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
387 int inherit_process_coding_system; |
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
388 |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
389 /* 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
|
390 terminal coding system is nil. */ |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
391 struct coding_system safe_terminal_coding; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
392 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
393 Lisp_Object Vfile_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
394 Lisp_Object Vprocess_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
395 Lisp_Object Vnetwork_coding_system_alist; |
17052 | 396 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
397 Lisp_Object Vlocale_coding_system; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
398 |
17052 | 399 #endif /* emacs */ |
400 | |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
401 /* Flag to tell if we look up translation table on character code |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
402 conversion. */ |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
403 Lisp_Object Venable_character_translation; |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
404 /* Standard translation table to look up on decoding (reading). */ |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
405 Lisp_Object Vstandard_translation_table_for_decode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
406 /* Standard translation table to look up on encoding (writing). */ |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
407 Lisp_Object Vstandard_translation_table_for_encode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
408 |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
409 Lisp_Object Qtranslation_table; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
410 Lisp_Object Qtranslation_table_id; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
411 Lisp_Object Qtranslation_table_for_decode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
412 Lisp_Object Qtranslation_table_for_encode; |
17052 | 413 |
414 /* Alist of charsets vs revision number. */ | |
88365 | 415 static Lisp_Object Vcharset_revision_table; |
17052 | 416 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
417 /* Default coding systems used for process I/O. */ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
418 Lisp_Object Vdefault_process_coding_system; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
419 |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
420 /* Char table for translating Quail and self-inserting input. */ |
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
421 Lisp_Object Vtranslation_table_for_input; |
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
422 |
88365 | 423 /* Two special coding systems. */ |
424 Lisp_Object Vsjis_coding_system; | |
425 Lisp_Object Vbig5_coding_system; | |
426 | |
427 /* ISO2022 section */ | |
428 | |
429 #define CODING_ISO_INITIAL(coding, reg) \ | |
430 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \ | |
431 coding_attr_iso_initial), \ | |
432 reg))) | |
433 | |
434 | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
435 #define CODING_ISO_REQUEST(coding, charset_id) \ |
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
436 (((charset_id) <= (coding)->max_charset_id \ |
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
437 ? ((coding)->safe_charsets[charset_id] != 255 \ |
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
438 ? (coding)->safe_charsets[charset_id] \ |
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
439 : -1) \ |
88365 | 440 : -1)) |
441 | |
442 | |
443 #define CODING_ISO_FLAGS(coding) \ | |
444 ((coding)->spec.iso_2022.flags) | |
445 #define CODING_ISO_DESIGNATION(coding, reg) \ | |
446 ((coding)->spec.iso_2022.current_designation[reg]) | |
447 #define CODING_ISO_INVOCATION(coding, plane) \ | |
448 ((coding)->spec.iso_2022.current_invocation[plane]) | |
449 #define CODING_ISO_SINGLE_SHIFTING(coding) \ | |
450 ((coding)->spec.iso_2022.single_shifting) | |
451 #define CODING_ISO_BOL(coding) \ | |
452 ((coding)->spec.iso_2022.bol) | |
453 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \ | |
454 CODING_ISO_DESIGNATION ((coding), CODING_ISO_INVOCATION ((coding), (plane))) | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
455 #define CODING_ISO_CMP_STATUS(coding) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
456 (&(coding)->spec.iso_2022.cmp_status) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
457 #define CODING_ISO_EXTSEGMENT_LEN(coding) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
458 ((coding)->spec.iso_2022.ctext_extended_segment_len) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
459 #define CODING_ISO_EMBEDDED_UTF_8(coding) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
460 ((coding)->spec.iso_2022.embedded_utf_8) |
88365 | 461 |
462 /* Control characters of ISO2022. */ | |
463 /* code */ /* function */ | |
464 #define ISO_CODE_LF 0x0A /* line-feed */ | |
465 #define ISO_CODE_CR 0x0D /* carriage-return */ | |
466 #define ISO_CODE_SO 0x0E /* shift-out */ | |
467 #define ISO_CODE_SI 0x0F /* shift-in */ | |
468 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */ | |
469 #define ISO_CODE_ESC 0x1B /* escape */ | |
470 #define ISO_CODE_SS2 0x8E /* single-shift-2 */ | |
471 #define ISO_CODE_SS3 0x8F /* single-shift-3 */ | |
472 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */ | |
473 | |
474 /* All code (1-byte) of ISO2022 is classified into one of the | |
475 followings. */ | |
476 enum iso_code_class_type | |
477 { | |
478 ISO_control_0, /* Control codes in the range | |
479 0x00..0x1F and 0x7F, except for the | |
480 following 5 codes. */ | |
481 ISO_shift_out, /* ISO_CODE_SO (0x0E) */ | |
482 ISO_shift_in, /* ISO_CODE_SI (0x0F) */ | |
483 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */ | |
484 ISO_escape, /* ISO_CODE_SO (0x1B) */ | |
485 ISO_control_1, /* Control codes in the range | |
486 0x80..0x9F, except for the | |
487 following 3 codes. */ | |
488 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */ | |
489 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */ | |
490 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */ | |
491 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */ | |
492 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */ | |
493 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */ | |
494 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */ | |
495 }; | |
496 | |
497 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the | |
498 `iso-flags' attribute of an iso2022 coding system. */ | |
499 | |
500 /* If set, produce long-form designation sequence (e.g. ESC $ ( A) | |
501 instead of the correct short-form sequence (e.g. ESC $ A). */ | |
502 #define CODING_ISO_FLAG_LONG_FORM 0x0001 | |
503 | |
504 /* If set, reset graphic planes and registers at end-of-line to the | |
505 initial state. */ | |
506 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002 | |
507 | |
508 /* If set, reset graphic planes and registers before any control | |
509 characters to the initial state. */ | |
510 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004 | |
511 | |
512 /* If set, encode by 7-bit environment. */ | |
513 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008 | |
514 | |
515 /* If set, use locking-shift function. */ | |
516 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010 | |
517 | |
518 /* If set, use single-shift function. Overwrite | |
519 CODING_ISO_FLAG_LOCKING_SHIFT. */ | |
520 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020 | |
521 | |
522 /* If set, use designation escape sequence. */ | |
523 #define CODING_ISO_FLAG_DESIGNATION 0x0040 | |
524 | |
525 /* If set, produce revision number sequence. */ | |
526 #define CODING_ISO_FLAG_REVISION 0x0080 | |
527 | |
528 /* If set, produce ISO6429's direction specifying sequence. */ | |
529 #define CODING_ISO_FLAG_DIRECTION 0x0100 | |
530 | |
531 /* If set, assume designation states are reset at beginning of line on | |
532 output. */ | |
533 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200 | |
534 | |
535 /* If set, designation sequence should be placed at beginning of line | |
536 on output. */ | |
537 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400 | |
538 | |
539 /* If set, do not encode unsafe charactes on output. */ | |
540 #define CODING_ISO_FLAG_SAFE 0x0800 | |
541 | |
542 /* If set, extra latin codes (128..159) are accepted as a valid code | |
543 on input. */ | |
544 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000 | |
545 | |
546 #define CODING_ISO_FLAG_COMPOSITION 0x2000 | |
547 | |
548 #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 | |
549 | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
550 #define CODING_ISO_FLAG_USE_ROMAN 0x8000 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
551 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
552 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
553 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
554 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000 |
88365 | 555 |
556 /* A character to be produced on output if encoding of the original | |
557 character is prohibited by CODING_ISO_FLAG_SAFE. */ | |
558 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?' | |
559 | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
560 /* UTF-8 section */ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
561 #define CODING_UTF_8_BOM(coding) \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
562 ((coding)->spec.utf_8_bom) |
88365 | 563 |
564 /* UTF-16 section */ | |
565 #define CODING_UTF_16_BOM(coding) \ | |
566 ((coding)->spec.utf_16.bom) | |
567 | |
568 #define CODING_UTF_16_ENDIAN(coding) \ | |
569 ((coding)->spec.utf_16.endian) | |
570 | |
571 #define CODING_UTF_16_SURROGATE(coding) \ | |
572 ((coding)->spec.utf_16.surrogate) | |
573 | |
574 | |
575 /* CCL section */ | |
576 #define CODING_CCL_DECODER(coding) \ | |
577 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder) | |
578 #define CODING_CCL_ENCODER(coding) \ | |
579 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder) | |
580 #define CODING_CCL_VALIDS(coding) \ | |
89483 | 581 (SDATA (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids))) |
88365 | 582 |
88771 | 583 /* Index for each coding category in `coding_categories' */ |
88365 | 584 |
585 enum coding_category | |
586 { | |
587 coding_category_iso_7, | |
588 coding_category_iso_7_tight, | |
589 coding_category_iso_8_1, | |
590 coding_category_iso_8_2, | |
591 coding_category_iso_7_else, | |
592 coding_category_iso_8_else, | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
593 coding_category_utf_8_auto, |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
594 coding_category_utf_8_nosig, |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
595 coding_category_utf_8_sig, |
88365 | 596 coding_category_utf_16_auto, |
597 coding_category_utf_16_be, | |
598 coding_category_utf_16_le, | |
599 coding_category_utf_16_be_nosig, | |
600 coding_category_utf_16_le_nosig, | |
601 coding_category_charset, | |
602 coding_category_sjis, | |
603 coding_category_big5, | |
604 coding_category_ccl, | |
605 coding_category_emacs_mule, | |
606 /* All above are targets of code detection. */ | |
607 coding_category_raw_text, | |
608 coding_category_undecided, | |
609 coding_category_max | |
610 }; | |
611 | |
612 /* Definitions of flag bits used in detect_coding_XXXX. */ | |
613 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7) | |
614 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight) | |
615 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1) | |
616 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2) | |
617 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else) | |
618 #define CATEGORY_MASK_ISO_8_ELSE (1 << coding_category_iso_8_else) | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
619 #define CATEGORY_MASK_UTF_8_AUTO (1 << coding_category_utf_8_auto) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
620 #define CATEGORY_MASK_UTF_8_NOSIG (1 << coding_category_utf_8_nosig) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
621 #define CATEGORY_MASK_UTF_8_SIG (1 << coding_category_utf_8_sig) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
622 #define CATEGORY_MASK_UTF_16_AUTO (1 << coding_category_utf_16_auto) |
88365 | 623 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be) |
624 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le) | |
625 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig) | |
626 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig) | |
627 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset) | |
628 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis) | |
629 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5) | |
630 #define CATEGORY_MASK_CCL (1 << coding_category_ccl) | |
631 #define CATEGORY_MASK_EMACS_MULE (1 << coding_category_emacs_mule) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
632 #define CATEGORY_MASK_RAW_TEXT (1 << coding_category_raw_text) |
88365 | 633 |
634 /* This value is returned if detect_coding_mask () find nothing other | |
635 than ASCII characters. */ | |
636 #define CATEGORY_MASK_ANY \ | |
637 (CATEGORY_MASK_ISO_7 \ | |
638 | CATEGORY_MASK_ISO_7_TIGHT \ | |
639 | CATEGORY_MASK_ISO_8_1 \ | |
640 | CATEGORY_MASK_ISO_8_2 \ | |
641 | CATEGORY_MASK_ISO_7_ELSE \ | |
642 | CATEGORY_MASK_ISO_8_ELSE \ | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
643 | CATEGORY_MASK_UTF_8_AUTO \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
644 | CATEGORY_MASK_UTF_8_NOSIG \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
645 | CATEGORY_MASK_UTF_8_SIG \ |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
646 | CATEGORY_MASK_UTF_16_AUTO \ |
88365 | 647 | CATEGORY_MASK_UTF_16_BE \ |
648 | CATEGORY_MASK_UTF_16_LE \ | |
649 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
650 | CATEGORY_MASK_UTF_16_LE_NOSIG \ | |
651 | CATEGORY_MASK_CHARSET \ | |
652 | CATEGORY_MASK_SJIS \ | |
653 | CATEGORY_MASK_BIG5 \ | |
654 | CATEGORY_MASK_CCL \ | |
655 | CATEGORY_MASK_EMACS_MULE) | |
656 | |
657 | |
658 #define CATEGORY_MASK_ISO_7BIT \ | |
659 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT) | |
660 | |
661 #define CATEGORY_MASK_ISO_8BIT \ | |
662 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2) | |
663 | |
664 #define CATEGORY_MASK_ISO_ELSE \ | |
665 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE) | |
666 | |
667 #define CATEGORY_MASK_ISO_ESCAPE \ | |
668 (CATEGORY_MASK_ISO_7 \ | |
669 | CATEGORY_MASK_ISO_7_TIGHT \ | |
670 | CATEGORY_MASK_ISO_7_ELSE \ | |
671 | CATEGORY_MASK_ISO_8_ELSE) | |
672 | |
673 #define CATEGORY_MASK_ISO \ | |
674 ( CATEGORY_MASK_ISO_7BIT \ | |
675 | CATEGORY_MASK_ISO_8BIT \ | |
676 | CATEGORY_MASK_ISO_ELSE) | |
677 | |
678 #define CATEGORY_MASK_UTF_16 \ | |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
679 (CATEGORY_MASK_UTF_16_AUTO \ |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
680 | CATEGORY_MASK_UTF_16_BE \ |
88365 | 681 | CATEGORY_MASK_UTF_16_LE \ |
682 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
683 | CATEGORY_MASK_UTF_16_LE_NOSIG) | |
684 | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
685 #define CATEGORY_MASK_UTF_8 \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
686 (CATEGORY_MASK_UTF_8_AUTO \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
687 | CATEGORY_MASK_UTF_8_NOSIG \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
688 | CATEGORY_MASK_UTF_8_SIG) |
88365 | 689 |
690 /* List of symbols `coding-category-xxx' ordered by priority. This | |
691 variable is exposed to Emacs Lisp. */ | |
692 static Lisp_Object Vcoding_category_list; | |
693 | |
694 /* Table of coding categories (Lisp symbols). This variable is for | |
695 internal use oly. */ | |
696 static Lisp_Object Vcoding_category_table; | |
697 | |
698 /* Table of coding-categories ordered by priority. */ | |
699 static enum coding_category coding_priorities[coding_category_max]; | |
700 | |
701 /* Nth element is a coding context for the coding system bound to the | |
702 Nth coding category. */ | |
703 static struct coding_system coding_categories[coding_category_max]; | |
704 | |
705 /*** Commonly used macros and functions ***/ | |
706 | |
707 #ifndef min | |
708 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
709 #endif | |
710 #ifndef max | |
711 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
712 #endif | |
713 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
714 #define CODING_GET_INFO(coding, attrs, charset_list) \ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
715 do { \ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
716 (attrs) = CODING_ID_ATTRS ((coding)->id); \ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
717 (charset_list) = CODING_ATTR_CHARSET_LIST (attrs); \ |
88365 | 718 } while (0) |
719 | |
720 | |
721 /* Safely get one byte from the source text pointed by SRC which ends | |
722 at SRC_END, and set C to that byte. If there are not enough bytes | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
723 in the source, it jumps to `no_more_source'. If multibytep is |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
724 nonzero, and a multibyte character is found at SRC, set C to the |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
725 negative value of the character code. The caller should declare |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
726 and set these variables appropriately in advance: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
727 src, src_end, multibytep */ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
728 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
729 #define ONE_MORE_BYTE(c) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
730 do { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
731 if (src == src_end) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
732 { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
733 if (src_base < src) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
734 record_conversion_result \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
735 (coding, CODING_RESULT_INSUFFICIENT_SRC); \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
736 goto no_more_source; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
737 } \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
738 c = *src++; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
739 if (multibytep && (c & 0x80)) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
740 { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
741 if ((c & 0xFE) == 0xC0) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
742 c = ((c & 1) << 6) | *src++; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
743 else \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
744 { \ |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
745 src--; \ |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
746 c = - string_char (src, &src, NULL); \ |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
747 record_conversion_result \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
748 (coding, CODING_RESULT_INVALID_SRC); \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
749 } \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
750 } \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
751 consumed_chars++; \ |
88365 | 752 } while (0) |
753 | |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
754 /* Safely get two bytes from the source text pointed by SRC which ends |
101174 | 755 at SRC_END, and set C1 and C2 to those bytes while skipping the |
756 heading multibyte characters. If there are not enough bytes in the | |
757 source, it jumps to `no_more_source'. If multibytep is nonzero and | |
758 a multibyte character is found for C2, set C2 to the negative value | |
759 of the character code. The caller should declare and set these | |
760 variables appropriately in advance: | |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
761 src, src_end, multibytep |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
762 It is intended that this macro is used in detect_coding_utf_16. */ |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
763 |
101174 | 764 #define TWO_MORE_BYTES(c1, c2) \ |
765 do { \ | |
766 do { \ | |
767 if (src == src_end) \ | |
768 goto no_more_source; \ | |
769 c1 = *src++; \ | |
770 if (multibytep && (c1 & 0x80)) \ | |
771 { \ | |
772 if ((c1 & 0xFE) == 0xC0) \ | |
773 c1 = ((c1 & 1) << 6) | *src++; \ | |
774 else \ | |
775 { \ | |
776 src += BYTES_BY_CHAR_HEAD (c1) - 1; \ | |
777 c1 = -1; \ | |
778 } \ | |
779 } \ | |
780 } while (c1 < 0); \ | |
781 if (src == src_end) \ | |
782 goto no_more_source; \ | |
783 c2 = *src++; \ | |
784 if (multibytep && (c2 & 0x80)) \ | |
785 { \ | |
786 if ((c2 & 0xFE) == 0xC0) \ | |
787 c2 = ((c2 & 1) << 6) | *src++; \ | |
788 else \ | |
789 c2 = -1; \ | |
790 } \ | |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
791 } while (0) |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
792 |
88365 | 793 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
794 #define ONE_MORE_BYTE_NO_CHECK(c) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
795 do { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
796 c = *src++; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
797 if (multibytep && (c & 0x80)) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
798 { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
799 if ((c & 0xFE) == 0xC0) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
800 c = ((c & 1) << 6) | *src++; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
801 else \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
802 { \ |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
803 src--; \ |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
804 c = - string_char (src, &src, NULL); \ |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
805 record_conversion_result \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
806 (coding, CODING_RESULT_INVALID_SRC); \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
807 } \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
808 } \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
809 consumed_chars++; \ |
88365 | 810 } while (0) |
811 | |
812 | |
813 /* Store a byte C in the place pointed by DST and increment DST to the | |
814 next free point, and increment PRODUCED_CHARS. The caller should | |
815 assure that C is 0..127, and declare and set the variable `dst' | |
816 appropriately in advance. | |
817 */ | |
818 | |
819 | |
820 #define EMIT_ONE_ASCII_BYTE(c) \ | |
821 do { \ | |
822 produced_chars++; \ | |
823 *dst++ = (c); \ | |
824 } while (0) | |
825 | |
826 | |
827 /* Like EMIT_ONE_ASCII_BYTE byt store two bytes; C1 and C2. */ | |
828 | |
829 #define EMIT_TWO_ASCII_BYTES(c1, c2) \ | |
830 do { \ | |
831 produced_chars += 2; \ | |
832 *dst++ = (c1), *dst++ = (c2); \ | |
833 } while (0) | |
834 | |
835 | |
836 /* Store a byte C in the place pointed by DST and increment DST to the | |
837 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP is | |
838 nonzero, store in an appropriate multibyte from. The caller should | |
839 declare and set the variables `dst' and `multibytep' appropriately | |
840 in advance. */ | |
841 | |
842 #define EMIT_ONE_BYTE(c) \ | |
843 do { \ | |
844 produced_chars++; \ | |
845 if (multibytep) \ | |
846 { \ | |
847 int ch = (c); \ | |
848 if (ch >= 0x80) \ | |
849 ch = BYTE8_TO_CHAR (ch); \ | |
850 CHAR_STRING_ADVANCE (ch, dst); \ | |
851 } \ | |
852 else \ | |
853 *dst++ = (c); \ | |
854 } while (0) | |
855 | |
856 | |
857 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */ | |
858 | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
859 #define EMIT_TWO_BYTES(c1, c2) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
860 do { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
861 produced_chars += 2; \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
862 if (multibytep) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
863 { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
864 int ch; \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
865 \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
866 ch = (c1); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
867 if (ch >= 0x80) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
868 ch = BYTE8_TO_CHAR (ch); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
869 CHAR_STRING_ADVANCE (ch, dst); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
870 ch = (c2); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
871 if (ch >= 0x80) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
872 ch = BYTE8_TO_CHAR (ch); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
873 CHAR_STRING_ADVANCE (ch, dst); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
874 } \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
875 else \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
876 { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
877 *dst++ = (c1); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
878 *dst++ = (c2); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
879 } \ |
88365 | 880 } while (0) |
881 | |
882 | |
883 #define EMIT_THREE_BYTES(c1, c2, c3) \ | |
884 do { \ | |
885 EMIT_ONE_BYTE (c1); \ | |
886 EMIT_TWO_BYTES (c2, c3); \ | |
887 } while (0) | |
888 | |
889 | |
890 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \ | |
891 do { \ | |
892 EMIT_TWO_BYTES (c1, c2); \ | |
893 EMIT_TWO_BYTES (c3, c4); \ | |
894 } while (0) | |
895 | |
896 | |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
897 /* Prototypes for static functions. */ |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
898 static void record_conversion_result P_ ((struct coding_system *coding, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
899 enum coding_result_code result)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
900 static int detect_coding_utf_8 P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
901 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
902 static void decode_coding_utf_8 P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
903 static int encode_coding_utf_8 P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
904 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
905 static int detect_coding_utf_16 P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
906 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
907 static void decode_coding_utf_16 P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
908 static int encode_coding_utf_16 P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
909 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
910 static int detect_coding_iso_2022 P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
911 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
912 static void decode_coding_iso_2022 P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
913 static int encode_coding_iso_2022 P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
914 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
915 static int detect_coding_emacs_mule P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
916 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
917 static void decode_coding_emacs_mule P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
918 static int encode_coding_emacs_mule P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
919 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
920 static int detect_coding_sjis P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
921 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
922 static void decode_coding_sjis P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
923 static int encode_coding_sjis P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
924 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
925 static int detect_coding_big5 P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
926 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
927 static void decode_coding_big5 P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
928 static int encode_coding_big5 P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
929 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
930 static int detect_coding_ccl P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
931 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
932 static void decode_coding_ccl P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
933 static int encode_coding_ccl P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
934 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
935 static void decode_coding_raw_text P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
936 static int encode_coding_raw_text P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
937 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
938 static void coding_set_source P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
939 static void coding_set_destination P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
940 static void coding_alloc_by_realloc P_ ((struct coding_system *, EMACS_INT)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
941 static void coding_alloc_by_making_gap P_ ((struct coding_system *, |
90772
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
942 EMACS_INT, EMACS_INT)); |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
943 static unsigned char *alloc_destination P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
944 EMACS_INT, unsigned char *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
945 static void setup_iso_safe_charsets P_ ((Lisp_Object)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
946 static unsigned char *encode_designation_at_bol P_ ((struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
947 int *, int *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
948 unsigned char *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
949 static int detect_eol P_ ((const unsigned char *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
950 EMACS_INT, enum coding_category)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
951 static Lisp_Object adjust_coding_eol_type P_ ((struct coding_system *, int)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
952 static void decode_eol P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
953 static Lisp_Object get_translation_table P_ ((Lisp_Object, int, int *)); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
954 static Lisp_Object get_translation P_ ((Lisp_Object, int *, int *)); |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
955 static int produce_chars P_ ((struct coding_system *, Lisp_Object, int)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
956 static INLINE void produce_charset P_ ((struct coding_system *, int *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
957 EMACS_INT)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
958 static void produce_annotation P_ ((struct coding_system *, EMACS_INT)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
959 static int decode_coding P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
960 static INLINE int *handle_composition_annotation P_ ((EMACS_INT, EMACS_INT, |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
961 struct coding_system *, |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
962 int *, EMACS_INT *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
963 static INLINE int *handle_charset_annotation P_ ((EMACS_INT, EMACS_INT, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
964 struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
965 int *, EMACS_INT *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
966 static void consume_chars P_ ((struct coding_system *, Lisp_Object, int)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
967 static int encode_coding P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
968 static Lisp_Object make_conversion_work_buffer P_ ((int)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
969 static Lisp_Object code_conversion_restore P_ ((Lisp_Object)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
970 static INLINE int char_encodable_p P_ ((int, Lisp_Object)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
971 static Lisp_Object make_subsidiaries P_ ((Lisp_Object)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
972 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
973 static void |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
974 record_conversion_result (struct coding_system *coding, |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
975 enum coding_result_code result) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
976 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
977 coding->result = result; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
978 switch (result) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
979 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
980 case CODING_RESULT_INSUFFICIENT_SRC: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
981 Vlast_code_conversion_error = Qinsufficient_source; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
982 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
983 case CODING_RESULT_INCONSISTENT_EOL: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
984 Vlast_code_conversion_error = Qinconsistent_eol; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
985 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
986 case CODING_RESULT_INVALID_SRC: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
987 Vlast_code_conversion_error = Qinvalid_source; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
988 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
989 case CODING_RESULT_INTERRUPT: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
990 Vlast_code_conversion_error = Qinterrupted; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
991 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
992 case CODING_RESULT_INSUFFICIENT_MEM: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
993 Vlast_code_conversion_error = Qinsufficient_memory; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
994 break; |
103133
2f7395806731
(record_conversion_result): Don't modify
Andreas Schwab <schwab@linux-m68k.org>
parents:
103052
diff
changeset
|
995 case CODING_RESULT_SUCCESS: |
2f7395806731
(record_conversion_result): Don't modify
Andreas Schwab <schwab@linux-m68k.org>
parents:
103052
diff
changeset
|
996 break; |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
997 default: |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
998 Vlast_code_conversion_error = intern ("Unknown error"); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
999 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1000 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1001 |
88365 | 1002 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \ |
1003 do { \ | |
1004 charset_map_loaded = 0; \ | |
1005 c = DECODE_CHAR (charset, code); \ | |
1006 if (charset_map_loaded) \ | |
1007 { \ | |
89483 | 1008 const unsigned char *orig = coding->source; \ |
88365 | 1009 EMACS_INT offset; \ |
1010 \ | |
1011 coding_set_source (coding); \ | |
1012 offset = coding->source - orig; \ | |
1013 src += offset; \ | |
1014 src_base += offset; \ | |
1015 src_end += offset; \ | |
1016 } \ | |
1017 } while (0) | |
1018 | |
1019 | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1020 /* If there are at least BYTES length of room at dst, allocate memory |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1021 for coding->destination and update dst and dst_end. We don't have |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1022 to take care of coding->source which will be relocated. It is |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1023 handled by calling coding_set_source in encode_coding. */ |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1024 |
88365 | 1025 #define ASSURE_DESTINATION(bytes) \ |
1026 do { \ | |
1027 if (dst + (bytes) >= dst_end) \ | |
1028 { \ | |
1029 int more_bytes = charbuf_end - charbuf + (bytes); \ | |
1030 \ | |
1031 dst = alloc_destination (coding, more_bytes, dst); \ | |
1032 dst_end = coding->destination + coding->dst_bytes; \ | |
1033 } \ | |
1034 } while (0) | |
1035 | |
1036 | |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1037 /* Store multibyte form of the character C in P, and advance P to the |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1038 end of the multibyte form. This is like CHAR_STRING_ADVANCE but it |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1039 never calls MAYBE_UNIFY_CHAR. */ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1040 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1041 #define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1042 do { \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1043 if ((c) <= MAX_1_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1044 *(p)++ = (c); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1045 else if ((c) <= MAX_2_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1046 *(p)++ = (0xC0 | ((c) >> 6)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1047 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1048 else if ((c) <= MAX_3_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1049 *(p)++ = (0xE0 | ((c) >> 12)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1050 *(p)++ = (0x80 | (((c) >> 6) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1051 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1052 else if ((c) <= MAX_4_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1053 *(p)++ = (0xF0 | (c >> 18)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1054 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1055 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1056 *(p)++ = (0x80 | (c & 0x3F)); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1057 else if ((c) <= MAX_5_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1058 *(p)++ = 0xF8, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1059 *(p)++ = (0x80 | ((c >> 18) & 0x0F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1060 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1061 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1062 *(p)++ = (0x80 | (c & 0x3F)); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1063 else \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1064 (p) += BYTE8_STRING ((c) - 0x3FFF80, p); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1065 } while (0) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1066 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1067 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1068 /* Return the character code of character whose multibyte form is at |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1069 P, and advance P to the end of the multibyte form. This is like |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1070 STRING_CHAR_ADVANCE, but it never calls MAYBE_UNIFY_CHAR. */ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1071 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1072 #define STRING_CHAR_ADVANCE_NO_UNIFY(p) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1073 (!((p)[0] & 0x80) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1074 ? *(p)++ \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1075 : ! ((p)[0] & 0x20) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1076 ? ((p) += 2, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1077 ((((p)[-2] & 0x1F) << 6) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1078 | ((p)[-1] & 0x3F) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1079 | ((unsigned char) ((p)[-2]) < 0xC2 ? 0x3FFF80 : 0))) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1080 : ! ((p)[0] & 0x10) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1081 ? ((p) += 3, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1082 ((((p)[-3] & 0x0F) << 12) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1083 | (((p)[-2] & 0x3F) << 6) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1084 | ((p)[-1] & 0x3F))) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1085 : ! ((p)[0] & 0x08) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1086 ? ((p) += 4, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1087 ((((p)[-4] & 0xF) << 18) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1088 | (((p)[-3] & 0x3F) << 12) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1089 | (((p)[-2] & 0x3F) << 6) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1090 | ((p)[-1] & 0x3F))) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1091 : ((p) += 5, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1092 ((((p)[-4] & 0x3F) << 18) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1093 | (((p)[-3] & 0x3F) << 12) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1094 | (((p)[-2] & 0x3F) << 6) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1095 | ((p)[-1] & 0x3F)))) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1096 |
88365 | 1097 |
1098 static void | |
1099 coding_set_source (coding) | |
1100 struct coding_system *coding; | |
1101 { | |
1102 if (BUFFERP (coding->src_object)) | |
1103 { | |
89418
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
1104 struct buffer *buf = XBUFFER (coding->src_object); |
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
1105 |
88365 | 1106 if (coding->src_pos < 0) |
89418
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
1107 coding->source = BUF_GAP_END_ADDR (buf) + coding->src_pos_byte; |
88365 | 1108 else |
89418
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
1109 coding->source = BUF_BYTE_ADDRESS (buf, coding->src_pos_byte); |
88365 | 1110 } |
1111 else if (STRINGP (coding->src_object)) | |
1112 { | |
89483 | 1113 coding->source = SDATA (coding->src_object) + coding->src_pos_byte; |
88365 | 1114 } |
1115 else | |
1116 /* Otherwise, the source is C string and is never relocated | |
1117 automatically. Thus we don't have to update anything. */ | |
1118 ; | |
1119 } | |
1120 | |
1121 static void | |
1122 coding_set_destination (coding) | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1123 struct coding_system *coding; |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1124 { |
88365 | 1125 if (BUFFERP (coding->dst_object)) |
1126 { | |
1127 if (coding->src_pos < 0) | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1128 { |
91807
507bcfb4342c
* coding.c (coding_set_destination): Use BEG_BYTE rather than hardcoding 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91622
diff
changeset
|
1129 coding->destination = BEG_ADDR + coding->dst_pos_byte - BEG_BYTE; |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1130 coding->dst_bytes = (GAP_END_ADDR |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1131 - (coding->src_bytes - coding->consumed) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1132 - coding->destination); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1133 } |
88365 | 1134 else |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1135 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1136 /* We are sure that coding->dst_pos_byte is before the gap |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1137 of the buffer. */ |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1138 coding->destination = (BUF_BEG_ADDR (XBUFFER (coding->dst_object)) |
91807
507bcfb4342c
* coding.c (coding_set_destination): Use BEG_BYTE rather than hardcoding 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91622
diff
changeset
|
1139 + coding->dst_pos_byte - BEG_BYTE); |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1140 coding->dst_bytes = (BUF_GAP_END_ADDR (XBUFFER (coding->dst_object)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1141 - coding->destination); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1142 } |
88365 | 1143 } |
1144 else | |
1145 /* Otherwise, the destination is C string and is never relocated | |
1146 automatically. Thus we don't have to update anything. */ | |
1147 ; | |
1148 } | |
1149 | |
1150 | |
1151 static void | |
1152 coding_alloc_by_realloc (coding, bytes) | |
1153 struct coding_system *coding; | |
1154 EMACS_INT bytes; | |
1155 { | |
1156 coding->destination = (unsigned char *) xrealloc (coding->destination, | |
1157 coding->dst_bytes + bytes); | |
1158 coding->dst_bytes += bytes; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1159 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1160 |
88365 | 1161 static void |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1162 coding_alloc_by_making_gap (coding, gap_head_used, bytes) |
88365 | 1163 struct coding_system *coding; |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1164 EMACS_INT gap_head_used, bytes; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1165 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1166 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1167 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1168 /* The gap may contain the produced data at the head and not-yet |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1169 consumed data at the tail. To preserve those data, we at |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1170 first make the gap size to zero, then increase the gap |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1171 size. */ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1172 EMACS_INT add = GAP_SIZE; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1173 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1174 GPT += gap_head_used, GPT_BYTE += gap_head_used; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1175 GAP_SIZE = 0; ZV += add; Z += add; ZV_BYTE += add; Z_BYTE += add; |
88365 | 1176 make_gap (bytes); |
1177 GAP_SIZE += add; ZV -= add; Z -= add; ZV_BYTE -= add; Z_BYTE -= add; | |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1178 GPT -= gap_head_used, GPT_BYTE -= gap_head_used; |
88365 | 1179 } |
90292
697c08d95af7
Cancel incorrect synching with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90291
diff
changeset
|
1180 else |
88365 | 1181 { |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
1182 Lisp_Object this_buffer; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
1183 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
1184 this_buffer = Fcurrent_buffer (); |
88365 | 1185 set_buffer_internal (XBUFFER (coding->dst_object)); |
1186 make_gap (bytes); | |
1187 set_buffer_internal (XBUFFER (this_buffer)); | |
1188 } | |
1189 } | |
89483 | 1190 |
88365 | 1191 |
1192 static unsigned char * | |
1193 alloc_destination (coding, nbytes, dst) | |
1194 struct coding_system *coding; | |
89545
4f394eed6ff2
(inhibit_pre_post_conversion): Removed (unused).
Dave Love <fx@gnu.org>
parents:
89519
diff
changeset
|
1195 EMACS_INT nbytes; |
88365 | 1196 unsigned char *dst; |
1197 { | |
1198 EMACS_INT offset = dst - coding->destination; | |
1199 | |
1200 if (BUFFERP (coding->dst_object)) | |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1201 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1202 struct buffer *buf = XBUFFER (coding->dst_object); |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1203 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1204 coding_alloc_by_making_gap (coding, dst - BUF_GPT_ADDR (buf), nbytes); |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1205 } |
88365 | 1206 else |
1207 coding_alloc_by_realloc (coding, nbytes); | |
1208 coding_set_destination (coding); | |
1209 dst = coding->destination + offset; | |
1210 return dst; | |
1211 } | |
1212 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1213 /** Macros for annotations. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1214 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1215 /* An annotation data is stored in the array coding->charbuf in this |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1216 format: |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1217 [ -LENGTH ANNOTATION_MASK NCHARS ... ] |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1218 LENGTH is the number of elements in the annotation. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1219 ANNOTATION_MASK is one of CODING_ANNOTATE_XXX_MASK. |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1220 NCHARS is the number of characters in the text annotated. |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1221 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1222 The format of the following elements depend on ANNOTATION_MASK. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1223 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1224 In the case of CODING_ANNOTATE_COMPOSITION_MASK, these elements |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1225 follows: |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1226 ... NBYTES METHOD [ COMPOSITION-COMPONENTS ... ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1227 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1228 NBYTES is the number of bytes specified in the header part of |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1229 old-style emacs-mule encoding, or 0 for the other kind of |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1230 composition. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1231 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1232 METHOD is one of enum composition_method. |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1233 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1234 Optionnal COMPOSITION-COMPONENTS are characters and composition |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1235 rules. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1236 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1237 In the case of CODING_ANNOTATE_CHARSET_MASK, one element CHARSET-ID |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1238 follows. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1239 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1240 If ANNOTATION_MASK is 0, this annotation is just a space holder to |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1241 recover from an invalid annotation, and should be skipped by |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1242 produce_annotation. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1243 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1244 /* Maximum length of the header of annotation data. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1245 #define MAX_ANNOTATION_LENGTH 5 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1246 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1247 #define ADD_ANNOTATION_DATA(buf, len, mask, nchars) \ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1248 do { \ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1249 *(buf)++ = -(len); \ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1250 *(buf)++ = (mask); \ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1251 *(buf)++ = (nchars); \ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1252 coding->annotated = 1; \ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1253 } while (0); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1254 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1255 #define ADD_COMPOSITION_DATA(buf, nchars, nbytes, method) \ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1256 do { \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1257 ADD_ANNOTATION_DATA (buf, 5, CODING_ANNOTATE_COMPOSITION_MASK, nchars); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1258 *buf++ = nbytes; \ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1259 *buf++ = method; \ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1260 } while (0) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1261 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1262 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1263 #define ADD_CHARSET_DATA(buf, nchars, id) \ |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1264 do { \ |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1265 ADD_ANNOTATION_DATA (buf, 4, CODING_ANNOTATE_CHARSET_MASK, nchars); \ |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1266 *buf++ = id; \ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1267 } while (0) |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1268 |
17052 | 1269 |
88365 | 1270 /*** 2. Emacs' internal format (emacs-utf-8) ***/ |
1271 | |
1272 | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1273 |
17052 | 1274 |
88365 | 1275 /*** 3. UTF-8 ***/ |
1276 | |
1277 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1278 Check if a text is encoded in UTF-8. If it is, return 1, else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1279 return 0. */ |
88365 | 1280 |
1281 #define UTF_8_1_OCTET_P(c) ((c) < 0x80) | |
1282 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80) | |
1283 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0) | |
1284 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0) | |
1285 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0) | |
1286 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8) | |
1287 | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1288 #define UTF_BOM 0xFEFF |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1289 #define UTF_8_BOM_1 0xEF |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1290 #define UTF_8_BOM_2 0xBB |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1291 #define UTF_8_BOM_3 0xBF |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1292 |
88365 | 1293 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1294 detect_coding_utf_8 (coding, detect_info) |
88365 | 1295 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1296 struct coding_detection_info *detect_info; |
88365 | 1297 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1298 const unsigned char *src = coding->source, *src_base; |
89483 | 1299 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 1300 int multibytep = coding->src_multibyte; |
1301 int consumed_chars = 0; | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1302 int bom_found = 0; |
88365 | 1303 int found = 0; |
1304 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1305 detect_info->checked |= CATEGORY_MASK_UTF_8; |
88365 | 1306 /* A coding system of this category is always ASCII compatible. */ |
1307 src += coding->head_ascii; | |
1308 | |
1309 while (1) | |
1310 { | |
1311 int c, c1, c2, c3, c4; | |
1312 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1313 src_base = src; |
88365 | 1314 ONE_MORE_BYTE (c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1315 if (c < 0 || UTF_8_1_OCTET_P (c)) |
88365 | 1316 continue; |
1317 ONE_MORE_BYTE (c1); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1318 if (c1 < 0 || ! UTF_8_EXTRA_OCTET_P (c1)) |
88365 | 1319 break; |
1320 if (UTF_8_2_OCTET_LEADING_P (c)) | |
1321 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1322 found = 1; |
88365 | 1323 continue; |
1324 } | |
1325 ONE_MORE_BYTE (c2); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1326 if (c2 < 0 || ! UTF_8_EXTRA_OCTET_P (c2)) |
88365 | 1327 break; |
1328 if (UTF_8_3_OCTET_LEADING_P (c)) | |
1329 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1330 found = 1; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1331 if (src_base == coding->source |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1332 && c == UTF_8_BOM_1 && c1 == UTF_8_BOM_2 && c2 == UTF_8_BOM_3) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1333 bom_found = 1; |
88365 | 1334 continue; |
1335 } | |
1336 ONE_MORE_BYTE (c3); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1337 if (c3 < 0 || ! UTF_8_EXTRA_OCTET_P (c3)) |
88365 | 1338 break; |
1339 if (UTF_8_4_OCTET_LEADING_P (c)) | |
1340 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1341 found = 1; |
88365 | 1342 continue; |
1343 } | |
1344 ONE_MORE_BYTE (c4); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1345 if (c4 < 0 || ! UTF_8_EXTRA_OCTET_P (c4)) |
88365 | 1346 break; |
1347 if (UTF_8_5_OCTET_LEADING_P (c)) | |
1348 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1349 found = 1; |
88365 | 1350 continue; |
1351 } | |
1352 break; | |
1353 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1354 detect_info->rejected |= CATEGORY_MASK_UTF_8; |
88365 | 1355 return 0; |
1356 | |
1357 no_more_source: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1358 if (src_base < src && coding->mode & CODING_MODE_LAST_BLOCK) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1359 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1360 detect_info->rejected |= CATEGORY_MASK_UTF_8; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1361 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1362 } |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1363 if (bom_found) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1364 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1365 /* The first character 0xFFFE doesn't necessarily mean a BOM. */ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1366 detect_info->found |= CATEGORY_MASK_UTF_8_SIG | CATEGORY_MASK_UTF_8_NOSIG; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1367 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1368 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1369 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1370 detect_info->rejected |= CATEGORY_MASK_UTF_8_SIG; |
96571
a3f2a5a4b492
(detect_coding_utf_8): Set detect_info->found only when
Kenichi Handa <handa@m17n.org>
parents:
95585
diff
changeset
|
1371 if (found) |
a3f2a5a4b492
(detect_coding_utf_8): Set detect_info->found only when
Kenichi Handa <handa@m17n.org>
parents:
95585
diff
changeset
|
1372 detect_info->found |= CATEGORY_MASK_UTF_8_NOSIG; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1373 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1374 return 1; |
88365 | 1375 } |
1376 | |
1377 | |
1378 static void | |
1379 decode_coding_utf_8 (coding) | |
1380 struct coding_system *coding; | |
1381 { | |
89483 | 1382 const unsigned char *src = coding->source + coding->consumed; |
1383 const unsigned char *src_end = coding->source + coding->src_bytes; | |
1384 const unsigned char *src_base; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1385 int *charbuf = coding->charbuf + coding->charbuf_used; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1386 int *charbuf_end = coding->charbuf + coding->charbuf_size; |
100133
bca35d7cb3ac
(decode_coding_utf_8): Likewise.
Kenichi Handa <handa@m17n.org>
parents:
100131
diff
changeset
|
1387 int consumed_chars = 0, consumed_chars_base = 0; |
88365 | 1388 int multibytep = coding->src_multibyte; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1389 enum utf_bom_type bom = CODING_UTF_8_BOM (coding); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1390 Lisp_Object attr, charset_list; |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
1391 int eol_crlf = |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
1392 !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1393 int byte_after_cr = -1; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1394 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1395 CODING_GET_INFO (coding, attr, charset_list); |
88365 | 1396 |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1397 if (bom != utf_without_bom) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1398 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1399 int c1, c2, c3; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1400 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1401 src_base = src; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1402 ONE_MORE_BYTE (c1); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1403 if (! UTF_8_3_OCTET_LEADING_P (c1)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1404 src = src_base; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1405 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1406 { |
99074
10cd979d05ca
(make_conversion_work_buffer): Check that Vcode_conversion_reused_workbuf
Noah Friedman <friedman@splode.com>
parents:
98992
diff
changeset
|
1407 ONE_MORE_BYTE (c2); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1408 if (! UTF_8_EXTRA_OCTET_P (c2)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1409 src = src_base; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1410 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1411 { |
99074
10cd979d05ca
(make_conversion_work_buffer): Check that Vcode_conversion_reused_workbuf
Noah Friedman <friedman@splode.com>
parents:
98992
diff
changeset
|
1412 ONE_MORE_BYTE (c3); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1413 if (! UTF_8_EXTRA_OCTET_P (c3)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1414 src = src_base; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1415 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1416 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1417 if ((c1 != UTF_8_BOM_1) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1418 || (c2 != UTF_8_BOM_2) || (c3 != UTF_8_BOM_3)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1419 src = src_base; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1420 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1421 CODING_UTF_8_BOM (coding) = utf_without_bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1422 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1423 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1424 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1425 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1426 CODING_UTF_8_BOM (coding) = utf_without_bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1427 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1428 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1429 |
88365 | 1430 while (1) |
1431 { | |
1432 int c, c1, c2, c3, c4, c5; | |
1433 | |
1434 src_base = src; | |
1435 consumed_chars_base = consumed_chars; | |
1436 | |
1437 if (charbuf >= charbuf_end) | |
100936
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1438 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1439 if (byte_after_cr >= 0) |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1440 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1441 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1442 } |
88365 | 1443 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1444 if (byte_after_cr >= 0) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1445 c1 = byte_after_cr, byte_after_cr = -1; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1446 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1447 ONE_MORE_BYTE (c1); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1448 if (c1 < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1449 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1450 c = - c1; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1451 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1452 else if (UTF_8_1_OCTET_P(c1)) |
88365 | 1453 { |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1454 if (eol_crlf && c1 == '\r') |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1455 ONE_MORE_BYTE (byte_after_cr); |
88365 | 1456 c = c1; |
1457 } | |
1458 else | |
1459 { | |
1460 ONE_MORE_BYTE (c2); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1461 if (c2 < 0 || ! UTF_8_EXTRA_OCTET_P (c2)) |
88365 | 1462 goto invalid_code; |
1463 if (UTF_8_2_OCTET_LEADING_P (c1)) | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1464 { |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1465 c = ((c1 & 0x1F) << 6) | (c2 & 0x3F); |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1466 /* Reject overlong sequences here and below. Encoders |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1467 producing them are incorrect, they can be misleading, |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1468 and they mess up read/write invariance. */ |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1469 if (c < 128) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1470 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1471 } |
88365 | 1472 else |
1473 { | |
1474 ONE_MORE_BYTE (c3); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1475 if (c3 < 0 || ! UTF_8_EXTRA_OCTET_P (c3)) |
88365 | 1476 goto invalid_code; |
1477 if (UTF_8_3_OCTET_LEADING_P (c1)) | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1478 { |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1479 c = (((c1 & 0xF) << 12) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1480 | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); |
89184
88a9e962e183
(decode_coding_utf_8): Treat surrogates as invalid.
Dave Love <fx@gnu.org>
parents:
89042
diff
changeset
|
1481 if (c < 0x800 |
88a9e962e183
(decode_coding_utf_8): Treat surrogates as invalid.
Dave Love <fx@gnu.org>
parents:
89042
diff
changeset
|
1482 || (c >= 0xd800 && c < 0xe000)) /* surrogates (invalid) */ |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1483 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1484 } |
88365 | 1485 else |
1486 { | |
1487 ONE_MORE_BYTE (c4); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1488 if (c4 < 0 || ! UTF_8_EXTRA_OCTET_P (c4)) |
88365 | 1489 goto invalid_code; |
1490 if (UTF_8_4_OCTET_LEADING_P (c1)) | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1491 { |
88365 | 1492 c = (((c1 & 0x7) << 18) | ((c2 & 0x3F) << 12) |
1493 | ((c3 & 0x3F) << 6) | (c4 & 0x3F)); | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1494 if (c < 0x10000) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1495 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1496 } |
88365 | 1497 else |
1498 { | |
1499 ONE_MORE_BYTE (c5); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1500 if (c5 < 0 || ! UTF_8_EXTRA_OCTET_P (c5)) |
88365 | 1501 goto invalid_code; |
1502 if (UTF_8_5_OCTET_LEADING_P (c1)) | |
1503 { | |
1504 c = (((c1 & 0x3) << 24) | ((c2 & 0x3F) << 18) | |
1505 | ((c3 & 0x3F) << 12) | ((c4 & 0x3F) << 6) | |
1506 | (c5 & 0x3F)); | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1507 if ((c > MAX_CHAR) || (c < 0x200000)) |
88365 | 1508 goto invalid_code; |
1509 } | |
1510 else | |
1511 goto invalid_code; | |
1512 } | |
1513 } | |
1514 } | |
1515 } | |
1516 | |
1517 *charbuf++ = c; | |
1518 continue; | |
1519 | |
1520 invalid_code: | |
1521 src = src_base; | |
1522 consumed_chars = consumed_chars_base; | |
1523 ONE_MORE_BYTE (c); | |
1524 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
1525 coding->errors++; | |
1526 } | |
1527 | |
1528 no_more_source: | |
1529 coding->consumed_char += consumed_chars_base; | |
1530 coding->consumed = src_base - coding->source; | |
1531 coding->charbuf_used = charbuf - coding->charbuf; | |
1532 } | |
1533 | |
1534 | |
1535 static int | |
1536 encode_coding_utf_8 (coding) | |
1537 struct coding_system *coding; | |
1538 { | |
1539 int multibytep = coding->dst_multibyte; | |
1540 int *charbuf = coding->charbuf; | |
1541 int *charbuf_end = charbuf + coding->charbuf_used; | |
1542 unsigned char *dst = coding->destination + coding->produced; | |
1543 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1544 int produced_chars = 0; |
88365 | 1545 int c; |
1546 | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1547 if (CODING_UTF_8_BOM (coding) == utf_with_bom) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1548 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1549 ASSURE_DESTINATION (3); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1550 EMIT_THREE_BYTES (UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1551 CODING_UTF_8_BOM (coding) = utf_without_bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1552 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1553 |
88365 | 1554 if (multibytep) |
1555 { | |
1556 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
1557 | |
1558 while (charbuf < charbuf_end) | |
1559 { | |
1560 unsigned char str[MAX_MULTIBYTE_LENGTH], *p, *pend = str; | |
89483 | 1561 |
88365 | 1562 ASSURE_DESTINATION (safe_room); |
1563 c = *charbuf++; | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1564 if (CHAR_BYTE8_P (c)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1565 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1566 c = CHAR_TO_BYTE8 (c); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1567 EMIT_ONE_BYTE (c); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1568 } |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1569 else |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1570 { |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1571 CHAR_STRING_ADVANCE_NO_UNIFY (c, pend); |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1572 for (p = str; p < pend; p++) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1573 EMIT_ONE_BYTE (*p); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1574 } |
88365 | 1575 } |
1576 } | |
1577 else | |
1578 { | |
1579 int safe_room = MAX_MULTIBYTE_LENGTH; | |
1580 | |
1581 while (charbuf < charbuf_end) | |
1582 { | |
1583 ASSURE_DESTINATION (safe_room); | |
1584 c = *charbuf++; | |
89917
1763eef5ad02
(encode_coding_utf_8): Fix handling of raw-byte char.
Kenichi Handa <handa@m17n.org>
parents:
89905
diff
changeset
|
1585 if (CHAR_BYTE8_P (c)) |
1763eef5ad02
(encode_coding_utf_8): Fix handling of raw-byte char.
Kenichi Handa <handa@m17n.org>
parents:
89905
diff
changeset
|
1586 *dst++ = CHAR_TO_BYTE8 (c); |
1763eef5ad02
(encode_coding_utf_8): Fix handling of raw-byte char.
Kenichi Handa <handa@m17n.org>
parents:
89905
diff
changeset
|
1587 else |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1588 CHAR_STRING_ADVANCE_NO_UNIFY (c, dst); |
88365 | 1589 produced_chars++; |
1590 } | |
1591 } | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1592 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 1593 coding->produced_char += produced_chars; |
1594 coding->produced = dst - coding->destination; | |
1595 return 0; | |
1596 } | |
1597 | |
1598 | |
1599 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1600 Check if a text is encoded in one of UTF-16 based coding systems. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1601 If it is, return 1, else return 0. */ |
88365 | 1602 |
1603 #define UTF_16_HIGH_SURROGATE_P(val) \ | |
1604 (((val) & 0xFC00) == 0xD800) | |
1605 | |
1606 #define UTF_16_LOW_SURROGATE_P(val) \ | |
1607 (((val) & 0xFC00) == 0xDC00) | |
1608 | |
1609 #define UTF_16_INVALID_P(val) \ | |
1610 (((val) == 0xFFFE) \ | |
1611 || ((val) == 0xFFFF) \ | |
1612 || UTF_16_LOW_SURROGATE_P (val)) | |
1613 | |
1614 | |
1615 static int | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1616 detect_coding_utf_16 (coding, detect_info) |
88365 | 1617 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1618 struct coding_detection_info *detect_info; |
88365 | 1619 { |
89483 | 1620 const unsigned char *src = coding->source, *src_base = src; |
1621 const unsigned char *src_end = coding->source + coding->src_bytes; | |
88365 | 1622 int multibytep = coding->src_multibyte; |
1623 int consumed_chars = 0; | |
1624 int c1, c2; | |
1625 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1626 detect_info->checked |= CATEGORY_MASK_UTF_16; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1627 if (coding->mode & CODING_MODE_LAST_BLOCK |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1628 && (coding->src_chars & 1)) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1629 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1630 detect_info->rejected |= CATEGORY_MASK_UTF_16; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1631 return 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1632 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1633 |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1634 TWO_MORE_BYTES (c1, c2); |
88365 | 1635 if ((c1 == 0xFF) && (c2 == 0xFE)) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1636 { |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1637 detect_info->found |= (CATEGORY_MASK_UTF_16_LE |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1638 | CATEGORY_MASK_UTF_16_AUTO); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1639 detect_info->rejected |= (CATEGORY_MASK_UTF_16_BE |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1640 | CATEGORY_MASK_UTF_16_BE_NOSIG |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1641 | CATEGORY_MASK_UTF_16_LE_NOSIG); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1642 } |
88365 | 1643 else if ((c1 == 0xFE) && (c2 == 0xFF)) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1644 { |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1645 detect_info->found |= (CATEGORY_MASK_UTF_16_BE |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1646 | CATEGORY_MASK_UTF_16_AUTO); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1647 detect_info->rejected |= (CATEGORY_MASK_UTF_16_LE |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1648 | CATEGORY_MASK_UTF_16_BE_NOSIG |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1649 | CATEGORY_MASK_UTF_16_LE_NOSIG); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1650 } |
101174 | 1651 else if (c2 < 0) |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1652 { |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1653 detect_info->rejected |= CATEGORY_MASK_UTF_16; |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1654 return 0; |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1655 } |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1656 else |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1657 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1658 /* We check the dispersion of Eth and Oth bytes where E is even and |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1659 O is odd. If both are high, we assume binary data.*/ |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1660 unsigned char e[256], o[256]; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1661 unsigned e_num = 1, o_num = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1662 |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1663 memset (e, 0, 256); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1664 memset (o, 0, 256); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1665 e[c1] = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1666 o[c2] = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1667 |
103442
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1668 detect_info->rejected |= (CATEGORY_MASK_UTF_16_AUTO |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1669 |CATEGORY_MASK_UTF_16_BE |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1670 | CATEGORY_MASK_UTF_16_LE); |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1671 |
103448
73e7271dee09
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103442
diff
changeset
|
1672 while ((detect_info->rejected & CATEGORY_MASK_UTF_16) |
73e7271dee09
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103442
diff
changeset
|
1673 != CATEGORY_MASK_UTF_16) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1674 { |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1675 TWO_MORE_BYTES (c1, c2); |
101174 | 1676 if (c2 < 0) |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1677 break; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1678 if (! e[c1]) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1679 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1680 e[c1] = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1681 e_num++; |
103442
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1682 if (e_num >= 128) |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1683 detect_info->rejected |= CATEGORY_MASK_UTF_16_BE_NOSIG; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1684 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1685 if (! o[c2]) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1686 { |
103435
45564d023acc
(detect_coding_utf_16): Fix typo counting odd bytes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
103306
diff
changeset
|
1687 o[c2] = 1; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1688 o_num++; |
103442
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1689 if (o_num >= 128) |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1690 detect_info->rejected |= CATEGORY_MASK_UTF_16_LE_NOSIG; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1691 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1692 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1693 return 0; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1694 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1695 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1696 no_more_source: |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1697 return 1; |
88365 | 1698 } |
1699 | |
1700 static void | |
1701 decode_coding_utf_16 (coding) | |
1702 struct coding_system *coding; | |
1703 { | |
89483 | 1704 const unsigned char *src = coding->source + coding->consumed; |
1705 const unsigned char *src_end = coding->source + coding->src_bytes; | |
1706 const unsigned char *src_base; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1707 int *charbuf = coding->charbuf + coding->charbuf_used; |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
1708 /* We may produces at most 3 chars in one loop. */ |
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
1709 int *charbuf_end = coding->charbuf + coding->charbuf_size - 2; |
100131
0e4115b39b5d
(decode_coding_utf_16): Initialize consumed_chars_base
Kenichi Handa <handa@m17n.org>
parents:
99753
diff
changeset
|
1710 int consumed_chars = 0, consumed_chars_base = 0; |
88365 | 1711 int multibytep = coding->src_multibyte; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1712 enum utf_bom_type bom = CODING_UTF_16_BOM (coding); |
88365 | 1713 enum utf_16_endian_type endian = CODING_UTF_16_ENDIAN (coding); |
1714 int surrogate = CODING_UTF_16_SURROGATE (coding); | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1715 Lisp_Object attr, charset_list; |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
1716 int eol_crlf = |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
1717 !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1718 int byte_after_cr1 = -1, byte_after_cr2 = -1; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1719 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1720 CODING_GET_INFO (coding, attr, charset_list); |
88365 | 1721 |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1722 if (bom == utf_with_bom) |
88365 | 1723 { |
1724 int c, c1, c2; | |
1725 | |
1726 src_base = src; | |
1727 ONE_MORE_BYTE (c1); | |
1728 ONE_MORE_BYTE (c2); | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1729 c = (c1 << 8) | c2; |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1730 |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1731 if (endian == utf_16_big_endian |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1732 ? c != 0xFEFF : c != 0xFFFE) |
88365 | 1733 { |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1734 /* The first two bytes are not BOM. Treat them as bytes |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1735 for a normal character. */ |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1736 src = src_base; |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1737 coding->errors++; |
88365 | 1738 } |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1739 CODING_UTF_16_BOM (coding) = utf_without_bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1740 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1741 else if (bom == utf_detect_bom) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1742 { |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1743 /* We have already tried to detect BOM and failed in |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1744 detect_coding. */ |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1745 CODING_UTF_16_BOM (coding) = utf_without_bom; |
88365 | 1746 } |
1747 | |
1748 while (1) | |
1749 { | |
1750 int c, c1, c2; | |
1751 | |
1752 src_base = src; | |
1753 consumed_chars_base = consumed_chars; | |
1754 | |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
1755 if (charbuf >= charbuf_end) |
100936
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1756 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1757 if (byte_after_cr1 >= 0) |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1758 src_base -= 2; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1759 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1760 } |
88365 | 1761 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1762 if (byte_after_cr1 >= 0) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1763 c1 = byte_after_cr1, byte_after_cr1 = -1; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1764 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1765 ONE_MORE_BYTE (c1); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1766 if (c1 < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1767 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1768 *charbuf++ = -c1; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1769 continue; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1770 } |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1771 if (byte_after_cr2 >= 0) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1772 c2 = byte_after_cr2, byte_after_cr2 = -1; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1773 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1774 ONE_MORE_BYTE (c2); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1775 if (c2 < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1776 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1777 *charbuf++ = ASCII_BYTE_P (c1) ? c1 : BYTE8_TO_CHAR (c1); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1778 *charbuf++ = -c2; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1779 continue; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1780 } |
88365 | 1781 c = (endian == utf_16_big_endian |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1782 ? ((c1 << 8) | c2) : ((c2 << 8) | c1)); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1783 |
88365 | 1784 if (surrogate) |
1785 { | |
1786 if (! UTF_16_LOW_SURROGATE_P (c)) | |
1787 { | |
1788 if (endian == utf_16_big_endian) | |
1789 c1 = surrogate >> 8, c2 = surrogate & 0xFF; | |
1790 else | |
1791 c1 = surrogate & 0xFF, c2 = surrogate >> 8; | |
1792 *charbuf++ = c1; | |
1793 *charbuf++ = c2; | |
1794 coding->errors++; | |
1795 if (UTF_16_HIGH_SURROGATE_P (c)) | |
1796 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
1797 else | |
1798 *charbuf++ = c; | |
1799 } | |
1800 else | |
1801 { | |
1802 c = ((surrogate - 0xD800) << 10) | (c - 0xDC00); | |
1803 CODING_UTF_16_SURROGATE (coding) = surrogate = 0; | |
89842
b5f22f538c1f
(decode_coding_utf_16): Fix handling of surrogate pare.
Kenichi Handa <handa@m17n.org>
parents:
89780
diff
changeset
|
1804 *charbuf++ = 0x10000 + c; |
88365 | 1805 } |
1806 } | |
1807 else | |
1808 { | |
1809 if (UTF_16_HIGH_SURROGATE_P (c)) | |
1810 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
1811 else | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1812 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1813 if (eol_crlf && c == '\r') |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1814 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1815 ONE_MORE_BYTE (byte_after_cr1); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1816 ONE_MORE_BYTE (byte_after_cr2); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1817 } |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1818 *charbuf++ = c; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1819 } |
89483 | 1820 } |
88365 | 1821 } |
1822 | |
1823 no_more_source: | |
1824 coding->consumed_char += consumed_chars_base; | |
1825 coding->consumed = src_base - coding->source; | |
1826 coding->charbuf_used = charbuf - coding->charbuf; | |
1827 } | |
1828 | |
1829 static int | |
1830 encode_coding_utf_16 (coding) | |
1831 struct coding_system *coding; | |
1832 { | |
1833 int multibytep = coding->dst_multibyte; | |
1834 int *charbuf = coding->charbuf; | |
1835 int *charbuf_end = charbuf + coding->charbuf_used; | |
1836 unsigned char *dst = coding->destination + coding->produced; | |
1837 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
1838 int safe_room = 8; | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1839 enum utf_bom_type bom = CODING_UTF_16_BOM (coding); |
88365 | 1840 int big_endian = CODING_UTF_16_ENDIAN (coding) == utf_16_big_endian; |
1841 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1842 Lisp_Object attrs, charset_list; |
88365 | 1843 int c; |
1844 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1845 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 1846 |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1847 if (bom != utf_without_bom) |
88365 | 1848 { |
1849 ASSURE_DESTINATION (safe_room); | |
1850 if (big_endian) | |
89404
3e1d187b52c3
(Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
Kenichi Handa <handa@m17n.org>
parents:
89394
diff
changeset
|
1851 EMIT_TWO_BYTES (0xFE, 0xFF); |
88365 | 1852 else |
89404
3e1d187b52c3
(Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
Kenichi Handa <handa@m17n.org>
parents:
89394
diff
changeset
|
1853 EMIT_TWO_BYTES (0xFF, 0xFE); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1854 CODING_UTF_16_BOM (coding) = utf_without_bom; |
88365 | 1855 } |
1856 | |
1857 while (charbuf < charbuf_end) | |
1858 { | |
1859 ASSURE_DESTINATION (safe_room); | |
1860 c = *charbuf++; | |
104636
bc74846b9a54
(encode_coding_utf_16): Fix checking of an Unicode character.
Kenichi Handa <handa@m17n.org>
parents:
103762
diff
changeset
|
1861 if (c > MAX_UNICODE_CHAR) |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1862 c = coding->default_char; |
88365 | 1863 |
1864 if (c < 0x10000) | |
1865 { | |
1866 if (big_endian) | |
1867 EMIT_TWO_BYTES (c >> 8, c & 0xFF); | |
1868 else | |
1869 EMIT_TWO_BYTES (c & 0xFF, c >> 8); | |
1870 } | |
1871 else | |
1872 { | |
1873 int c1, c2; | |
1874 | |
1875 c -= 0x10000; | |
1876 c1 = (c >> 10) + 0xD800; | |
1877 c2 = (c & 0x3FF) + 0xDC00; | |
1878 if (big_endian) | |
1879 EMIT_FOUR_BYTES (c1 >> 8, c1 & 0xFF, c2 >> 8, c2 & 0xFF); | |
1880 else | |
1881 EMIT_FOUR_BYTES (c1 & 0xFF, c1 >> 8, c2 & 0xFF, c2 >> 8); | |
1882 } | |
1883 } | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1884 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 1885 coding->produced = dst - coding->destination; |
1886 coding->produced_char += produced_chars; | |
1887 return 0; | |
1888 } | |
1889 | |
1890 | |
1891 /*** 6. Old Emacs' internal format (emacs-mule) ***/ | |
17052 | 1892 |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1893 /* Emacs' internal format for representation of multiple character |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1894 sets is a kind of multi-byte encoding, i.e. characters are |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1895 represented by variable-length sequences of one-byte codes. |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1896 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1897 ASCII characters and control characters (e.g. `tab', `newline') are |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1898 represented by one-byte sequences which are their ASCII codes, in |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1899 the range 0x00 through 0x7F. |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1900 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1901 8-bit characters of the range 0x80..0x9F are represented by |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1902 two-byte sequences of LEADING_CODE_8_BIT_CONTROL and (their 8-bit |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1903 code + 0x20). |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1904 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1905 8-bit characters of the range 0xA0..0xFF are represented by |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1906 one-byte sequences which are their 8-bit code. |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1907 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1908 The other characters are represented by a sequence of `base |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1909 leading-code', optional `extended leading-code', and one or two |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1910 `position-code's. The length of the sequence is determined by the |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1911 base leading-code. Leading-code takes the range 0x81 through 0x9D, |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1912 whereas extended leading-code and position-code take the range 0xA0 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1913 through 0xFF. See `charset.h' for more details about leading-code |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1914 and position-code. |
18766 | 1915 |
17052 | 1916 --- CODE RANGE of Emacs' internal format --- |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1917 character set range |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1918 ------------- ----- |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1919 ascii 0x00..0x7F |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1920 eight-bit-control LEADING_CODE_8_BIT_CONTROL + 0xA0..0xBF |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1921 eight-bit-graphic 0xA0..0xBF |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1922 ELSE 0x81..0x9D + [0xA0..0xFF]+ |
17052 | 1923 --------------------------------------------- |
1924 | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1925 As this is the internal character representation, the format is |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1926 usually not used externally (i.e. in a file or in a data sent to a |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1927 process). But, it is possible to have a text externally in this |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1928 format (i.e. by encoding by the coding system `emacs-mule'). |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1929 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1930 In that case, a sequence of one-byte codes has a slightly different |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1931 form. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1932 |
88365 | 1933 At first, all characters in eight-bit-control are represented by |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1934 one-byte sequences which are their 8-bit code. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1935 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1936 Next, character composition data are represented by the byte |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1937 sequence of the form: 0x80 METHOD BYTES CHARS COMPONENT ..., |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1938 where, |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1939 METHOD is 0xF2 plus one of composition method (enum |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1940 composition_method), |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1941 |
88365 | 1942 BYTES is 0xA0 plus a byte length of this composition data, |
1943 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1944 CHARS is 0xA0 plus a number of characters composed by this |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1945 data, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1946 |
88365 | 1947 COMPONENTs are characters of multibye form or composition |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1948 rules encoded by two-byte of ASCII codes. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1949 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1950 In addition, for backward compatibility, the following formats are |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1951 also recognized as composition data on decoding. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1952 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1953 0x80 MSEQ ... |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1954 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1955 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1956 Here, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1957 MSEQ is a multibyte form but in these special format: |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1958 ASCII: 0xA0 ASCII_CODE+0x80, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1959 other: LEADING_CODE+0x20 FOLLOWING-BYTE ..., |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1960 RULE is a one byte code of the range 0xA0..0xF0 that |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1961 represents a composition rule. |
17052 | 1962 */ |
1963 | |
88365 | 1964 char emacs_mule_bytes[256]; |
1965 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1966 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1967 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1968 Check if a text is encoded in `emacs-mule'. If it is, return 1, |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1969 else return 0. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1970 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1971 static int |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1972 detect_coding_emacs_mule (coding, detect_info) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1973 struct coding_system *coding; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1974 struct coding_detection_info *detect_info; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1975 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1976 const unsigned char *src = coding->source, *src_base; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1977 const unsigned char *src_end = coding->source + coding->src_bytes; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1978 int multibytep = coding->src_multibyte; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1979 int consumed_chars = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1980 int c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1981 int found = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1982 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1983 detect_info->checked |= CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1984 /* A coding system of this category is always ASCII compatible. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1985 src += coding->head_ascii; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1986 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1987 while (1) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1988 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1989 src_base = src; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1990 ONE_MORE_BYTE (c); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1991 if (c < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1992 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1993 if (c == 0x80) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1994 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1995 /* Perhaps the start of composite character. We simply skip |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1996 it because analyzing it is too heavy for detecting. But, |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1997 at least, we check that the composite character |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1998 constitutes of more than 4 bytes. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1999 const unsigned char *src_base; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2000 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2001 repeat: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2002 src_base = src; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2003 do |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2004 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2005 ONE_MORE_BYTE (c); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2006 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2007 while (c >= 0xA0); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2008 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2009 if (src - src_base <= 4) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2010 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2011 found = CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2012 if (c == 0x80) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2013 goto repeat; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2014 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2015 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2016 if (c < 0x80) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2017 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2018 if (c < 0x20 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2019 && (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2020 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2021 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2022 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2023 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2024 int more_bytes = emacs_mule_bytes[*src_base] - 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2025 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2026 while (more_bytes > 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2027 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2028 ONE_MORE_BYTE (c); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2029 if (c < 0xA0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2030 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2031 src--; /* Unread the last byte. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2032 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2033 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2034 more_bytes--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2035 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2036 if (more_bytes != 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2037 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2038 found = CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2039 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2040 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2041 detect_info->rejected |= CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2042 return 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2043 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2044 no_more_source: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2045 if (src_base < src && coding->mode & CODING_MODE_LAST_BLOCK) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2046 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2047 detect_info->rejected |= CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2048 return 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2049 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2050 detect_info->found |= found; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2051 return 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2052 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2053 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2054 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2055 /* Parse emacs-mule multibyte sequence at SRC and return the decoded |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2056 character. If CMP_STATUS indicates that we must expect MSEQ or |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2057 RULE described above, decode it and return the negative value of |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2058 the deocded character or rule. If an invalid byte is found, return |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2059 -1. If SRC is too short, return -2. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2060 |
88365 | 2061 int |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2062 emacs_mule_char (coding, src, nbytes, nchars, id, cmp_status) |
88365 | 2063 struct coding_system *coding; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2064 const unsigned char *src; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2065 int *nbytes, *nchars, *id; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2066 struct composition_status *cmp_status; |
88365 | 2067 { |
89483 | 2068 const unsigned char *src_end = coding->source + coding->src_bytes; |
2069 const unsigned char *src_base = src; | |
88365 | 2070 int multibytep = coding->src_multibyte; |
2071 struct charset *charset; | |
2072 unsigned code; | |
2073 int c; | |
2074 int consumed_chars = 0; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2075 int mseq_found = 0; |
88365 | 2076 |
2077 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2078 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2079 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2080 c = -c; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2081 charset = emacs_mule_charset[0]; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2082 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2083 else |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2084 { |
90354
450fb16a4bf4
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90350
diff
changeset
|
2085 if (c >= 0xA0) |
450fb16a4bf4
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90350
diff
changeset
|
2086 { |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2087 if (cmp_status->state != COMPOSING_NO |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2088 && cmp_status->old_form) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2089 { |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2090 if (cmp_status->state == COMPOSING_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2091 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2092 if (c == 0xA0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2093 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2094 ONE_MORE_BYTE (c); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2095 c -= 0x80; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2096 if (c < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2097 goto invalid_code; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2098 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2099 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2100 c -= 0x20; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2101 mseq_found = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2102 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2103 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2104 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2105 *nbytes = src - src_base; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2106 *nchars = consumed_chars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2107 return -c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2108 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2109 } |
17052 | 2110 else |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2111 goto invalid_code; |
17052 | 2112 } |
2113 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2114 switch (emacs_mule_bytes[c]) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2115 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2116 case 2: |
88365 | 2117 if (! (charset = emacs_mule_charset[c])) |
2118 goto invalid_code; | |
2119 ONE_MORE_BYTE (c); | |
17052 | 2120 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2121 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2122 code = c & 0x7F; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2123 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2124 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2125 case 3: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2126 if (c == EMACS_MULE_LEADING_CODE_PRIVATE_11 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2127 || c == EMACS_MULE_LEADING_CODE_PRIVATE_12) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2128 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2129 ONE_MORE_BYTE (c); |
89892 | 2130 if (c < 0xA0 || ! (charset = emacs_mule_charset[c])) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2131 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2132 ONE_MORE_BYTE (c); |
89892 | 2133 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2134 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2135 code = c & 0x7F; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2136 } |
26847 | 2137 else |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2138 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2139 if (! (charset = emacs_mule_charset[c])) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2140 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2141 ONE_MORE_BYTE (c); |
89892 | 2142 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2143 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2144 code = (c & 0x7F) << 8; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2145 ONE_MORE_BYTE (c); |
89892 | 2146 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2147 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2148 code |= c & 0x7F; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2149 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2150 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2151 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2152 case 4: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2153 ONE_MORE_BYTE (c); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2154 if (c < 0 || ! (charset = emacs_mule_charset[c])) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2155 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2156 ONE_MORE_BYTE (c); |
89892 | 2157 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2158 goto invalid_code; |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2159 code = (c & 0x7F) << 8; |
88365 | 2160 ONE_MORE_BYTE (c); |
89892 | 2161 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2162 goto invalid_code; |
88365 | 2163 code |= c & 0x7F; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2164 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2165 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2166 case 1: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2167 code = c; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2168 charset = CHARSET_FROM_ID (ASCII_BYTE_P (code) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2169 ? charset_ascii : charset_eight_bit); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2170 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2171 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2172 default: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2173 abort (); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2174 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2175 c = DECODE_CHAR (charset, code); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2176 if (c < 0) |
88365 | 2177 goto invalid_code; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2178 } |
88365 | 2179 *nbytes = src - src_base; |
2180 *nchars = consumed_chars; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2181 if (id) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2182 *id = charset->id; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2183 return (mseq_found ? -c : c); |
88365 | 2184 |
2185 no_more_source: | |
2186 return -2; | |
2187 | |
2188 invalid_code: | |
2189 return -1; | |
2190 } | |
2191 | |
17052 | 2192 |
88365 | 2193 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2194 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2195 /* Handle these composition sequence ('|': the end of header elements, |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2196 BYTES and CHARS >= 0xA0): |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2197 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2198 (1) relative composition: 0x80 0xF2 BYTES CHARS | CHAR ... |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2199 (2) altchar composition: 0x80 0xF4 BYTES CHARS | ALT ... ALT CHAR ... |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2200 (3) alt&rule composition: 0x80 0xF5 BYTES CHARS | ALT RULE ... ALT CHAR ... |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2201 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2202 and these old form: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2203 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2204 (4) relative composition: 0x80 | MSEQ ... MSEQ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2205 (5) rulebase composition: 0x80 0xFF | MSEQ MRULE ... MSEQ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2206 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2207 When the starter 0x80 and the following header elements are found, |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2208 this annotation header is produced. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2209 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2210 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS NBYTES METHOD ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2211 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2212 NCHARS is CHARS - 0xA0 for (1), (2), (3), and 0 for (4), (5). |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2213 NBYTES is BYTES - 0xA0 for (1), (2), (3), and 0 for (4), (5). |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2214 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2215 Then, upon reading the following elements, these codes are produced |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2216 until the composition end is found: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2217 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2218 (1) CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2219 (2) ALT ... ALT CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2220 (3) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2221 (4) CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2222 (5) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2223 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2224 When the composition end is found, LENGTH and NCHARS in the |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2225 annotation header is updated as below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2226 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2227 (1) LENGTH: unchanged, NCHARS: unchanged |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2228 (2) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2229 (3) LENGTH: length of the whole sequence minus NCHARS, NCHARS: unchanged |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2230 (4) LENGTH: unchanged, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2231 (5) LENGTH: unchanged, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2232 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2233 If an error is found while composing, the annotation header is |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2234 changed to the original composition header (plus filler -1s) as |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2235 below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2236 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2237 (1),(2),(3) [ 0x80 0xF2+METHOD BYTES CHARS -1 ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2238 (5) [ 0x80 0xFF -1 -1- -1 ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2239 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2240 and the sequence [ -2 DECODED-RULE ] is changed to the original |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2241 byte sequence as below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2242 o the original byte sequence is B: [ B -1 ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2243 o the original byte sequence is B1 B2: [ B1 B2 ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2244 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2245 Most of the routines are implemented by macros because many |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2246 variables and labels in the caller decode_coding_emacs_mule must be |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2247 accessible, and they are usually called just once (thus doesn't |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2248 increase the size of compiled object). */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2249 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2250 /* Decode a composition rule represented by C as a component of |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2251 composition sequence of Emacs 20 style. Set RULE to the decoded |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2252 rule. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2253 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2254 #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(c, rule) \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2255 do { \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2256 int gref, nref; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2257 \ |
90354
450fb16a4bf4
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90350
diff
changeset
|
2258 c -= 0xA0; \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2259 if (c < 0 || c >= 81) \ |
88365 | 2260 goto invalid_code; \ |
2261 gref = c / 9, nref = c % 9; \ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2262 if (gref == 4) gref = 10; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2263 if (nref == 4) nref = 10; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2264 rule = COMPOSITION_ENCODE_RULE (gref, nref); \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2265 } while (0) |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2266 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2267 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2268 /* Decode a composition rule represented by C and the following byte |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2269 at SRC as a component of composition sequence of Emacs 21 style. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2270 Set RULE to the decoded rule. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2271 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2272 #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(c, rule) \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2273 do { \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2274 int gref, nref; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2275 \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2276 gref = c - 0x20; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2277 if (gref < 0 || gref >= 81) \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2278 goto invalid_code; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2279 ONE_MORE_BYTE (c); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2280 nref = c - 0x20; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2281 if (nref < 0 || nref >= 81) \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2282 goto invalid_code; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2283 rule = COMPOSITION_ENCODE_RULE (gref, nref); \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2284 } while (0) |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2285 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2286 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2287 /* Start of Emacs 21 style format. The first three bytes at SRC are |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2288 (METHOD - 0xF2), (BYTES - 0xA0), (CHARS - 0xA0), where BYTES is the |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2289 byte length of this composition information, CHARS is the number of |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2290 characters composed by this composition. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2291 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2292 #define DECODE_EMACS_MULE_21_COMPOSITION() \ |
88365 | 2293 do { \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2294 enum composition_method method = c - 0xF2; \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2295 int *charbuf_base = charbuf; \ |
88365 | 2296 int nbytes, nchars; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2297 \ |
88365 | 2298 ONE_MORE_BYTE (c); \ |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2299 if (c < 0) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2300 goto invalid_code; \ |
88365 | 2301 nbytes = c - 0xA0; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2302 if (nbytes < 3 || (method == COMPOSITION_RELATIVE && nbytes != 4)) \ |
88365 | 2303 goto invalid_code; \ |
2304 ONE_MORE_BYTE (c); \ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2305 nchars = c - 0xA0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2306 if (nchars <= 0 || nchars >= MAX_COMPOSITION_COMPONENTS) \ |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2307 goto invalid_code; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2308 cmp_status->old_form = 0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2309 cmp_status->method = method; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2310 if (method == COMPOSITION_RELATIVE) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2311 cmp_status->state = COMPOSING_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2312 else \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2313 cmp_status->state = COMPOSING_COMPONENT_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2314 cmp_status->length = MAX_ANNOTATION_LENGTH; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2315 cmp_status->nchars = nchars; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2316 cmp_status->ncomps = nbytes - 4; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2317 ADD_COMPOSITION_DATA (charbuf, nchars, nbytes, method); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2318 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2319 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2320 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2321 /* Start of Emacs 20 style format for relative composition. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2322 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2323 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION() \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2324 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2325 cmp_status->old_form = 1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2326 cmp_status->method = COMPOSITION_RELATIVE; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2327 cmp_status->state = COMPOSING_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2328 cmp_status->length = MAX_ANNOTATION_LENGTH; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2329 cmp_status->nchars = cmp_status->ncomps = 0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2330 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2331 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2332 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2333 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2334 /* Start of Emacs 20 style format for rule-base composition. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2335 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2336 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION() \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2337 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2338 cmp_status->old_form = 1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2339 cmp_status->method = COMPOSITION_WITH_RULE; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2340 cmp_status->state = COMPOSING_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2341 cmp_status->length = MAX_ANNOTATION_LENGTH; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2342 cmp_status->nchars = cmp_status->ncomps = 0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2343 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2344 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2345 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2346 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2347 #define DECODE_EMACS_MULE_COMPOSITION_START() \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2348 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2349 const unsigned char *current_src = src; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2350 \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2351 ONE_MORE_BYTE (c); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2352 if (c < 0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2353 goto invalid_code; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2354 if (c - 0xF2 >= COMPOSITION_RELATIVE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2355 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2356 DECODE_EMACS_MULE_21_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2357 else if (c < 0xA0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2358 goto invalid_code; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2359 else if (c < 0xC0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2360 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2361 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2362 /* Re-read C as a composition component. */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2363 src = current_src; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2364 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2365 else if (c == 0xFF) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2366 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2367 else \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2368 goto invalid_code; \ |
88365 | 2369 } while (0) |
2370 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2371 #define EMACS_MULE_COMPOSITION_END() \ |
88365 | 2372 do { \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2373 int idx = - cmp_status->length; \ |
90354
450fb16a4bf4
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90350
diff
changeset
|
2374 \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2375 if (cmp_status->old_form) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2376 charbuf[idx + 2] = cmp_status->nchars; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2377 else if (cmp_status->method > COMPOSITION_RELATIVE) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2378 charbuf[idx] = charbuf[idx + 2] - cmp_status->length; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2379 cmp_status->state = COMPOSING_NO; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2380 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2381 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2382 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2383 static int |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2384 emacs_mule_finish_composition (charbuf, cmp_status) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2385 int *charbuf; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2386 struct composition_status *cmp_status; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2387 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2388 int idx = - cmp_status->length; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2389 int new_chars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2390 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2391 if (cmp_status->old_form && cmp_status->nchars > 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2392 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2393 charbuf[idx + 2] = cmp_status->nchars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2394 new_chars = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2395 if (cmp_status->method == COMPOSITION_WITH_RULE |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2396 && cmp_status->state == COMPOSING_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2397 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2398 /* The last rule was invalid. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2399 int rule = charbuf[-1] + 0xA0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2400 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2401 charbuf[-2] = BYTE8_TO_CHAR (rule); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2402 charbuf[-1] = -1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2403 new_chars = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2404 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2405 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2406 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2407 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2408 charbuf[idx++] = BYTE8_TO_CHAR (0x80); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2409 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2410 if (cmp_status->method == COMPOSITION_WITH_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2411 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2412 charbuf[idx++] = BYTE8_TO_CHAR (0xFF); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2413 charbuf[idx++] = -3; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2414 charbuf[idx++] = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2415 new_chars = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2416 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2417 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2418 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2419 int nchars = charbuf[idx + 1] + 0xA0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2420 int nbytes = charbuf[idx + 2] + 0xA0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2421 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2422 charbuf[idx++] = BYTE8_TO_CHAR (0xF2 + cmp_status->method); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2423 charbuf[idx++] = BYTE8_TO_CHAR (nbytes); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2424 charbuf[idx++] = BYTE8_TO_CHAR (nchars); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2425 charbuf[idx++] = -1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2426 new_chars = 4; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2427 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2428 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2429 cmp_status->state = COMPOSING_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2430 return new_chars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2431 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2432 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2433 #define EMACS_MULE_MAYBE_FINISH_COMPOSITION() \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2434 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2435 if (cmp_status->state != COMPOSING_NO) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2436 char_offset += emacs_mule_finish_composition (charbuf, cmp_status); \ |
88365 | 2437 } while (0) |
2438 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2439 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2440 static void |
88365 | 2441 decode_coding_emacs_mule (coding) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2442 struct coding_system *coding; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2443 { |
89483 | 2444 const unsigned char *src = coding->source + coding->consumed; |
2445 const unsigned char *src_end = coding->source + coding->src_bytes; | |
59168
0345f2b10f1d
(decode_coding_XXX, decode_composition_emacs_mule)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
59095
diff
changeset
|
2446 const unsigned char *src_base; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
2447 int *charbuf = coding->charbuf + coding->charbuf_used; |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
2448 /* We may produce two annocations (charset and composition) in one |
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
2449 loop and one more charset annocation at the end. */ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
2450 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
2451 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 3); |
88365 | 2452 int consumed_chars = 0, consumed_chars_base; |
2453 int multibytep = coding->src_multibyte; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
2454 Lisp_Object attrs, charset_list; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2455 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2456 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2457 int last_id = charset_ascii; |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
2458 int eol_crlf = |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
2459 !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2460 int byte_after_cr = -1; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2461 struct composition_status *cmp_status = &coding->spec.emacs_mule.cmp_status; |
88365 | 2462 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
2463 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 2464 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2465 if (cmp_status->state != COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2466 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2467 int i; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2468 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2469 for (i = 0; i < cmp_status->length; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2470 *charbuf++ = cmp_status->carryover[i]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2471 coding->annotated = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2472 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2473 |
88365 | 2474 while (1) |
2475 { | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2476 int c, id; |
88365 | 2477 |
2478 src_base = src; | |
2479 consumed_chars_base = consumed_chars; | |
2480 | |
2481 if (charbuf >= charbuf_end) | |
100936
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
2482 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
2483 if (byte_after_cr >= 0) |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
2484 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
2485 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
2486 } |
88365 | 2487 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2488 if (byte_after_cr >= 0) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2489 c = byte_after_cr, byte_after_cr = -1; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2490 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2491 ONE_MORE_BYTE (c); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2492 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2493 if (c < 0 || c == 0x80) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2494 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2495 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2496 if (c < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2497 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2498 *charbuf++ = -c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2499 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2500 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2501 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2502 DECODE_EMACS_MULE_COMPOSITION_START (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2503 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2504 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2505 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2506 if (c < 0x80) |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2507 { |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2508 if (eol_crlf && c == '\r') |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2509 ONE_MORE_BYTE (byte_after_cr); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2510 id = charset_ascii; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2511 if (cmp_status->state != COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2512 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2513 if (cmp_status->old_form) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2514 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2515 else if (cmp_status->state >= COMPOSING_COMPONENT_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2516 cmp_status->ncomps--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2517 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2518 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2519 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2520 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2521 int nchars, nbytes; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2522 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2523 c = emacs_mule_char (coding, src_base, &nbytes, &nchars, &id, |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2524 cmp_status); |
88365 | 2525 if (c < 0) |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2526 { |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2527 if (c == -1) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2528 goto invalid_code; |
88365 | 2529 if (c == -2) |
2530 break; | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2531 } |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2532 src = src_base + nbytes; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2533 consumed_chars = consumed_chars_base + nchars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2534 if (cmp_status->state >= COMPOSING_COMPONENT_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2535 cmp_status->ncomps -= nchars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2536 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2537 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2538 /* Now if C >= 0, we found a normally encoded characer, if C < |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2539 0, we found an old-style composition component character or |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2540 rule. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2541 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2542 if (cmp_status->state == COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2543 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2544 if (last_id != id) |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2545 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2546 if (last_id != charset_ascii) |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2547 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2548 last_id); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2549 last_id = id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2550 last_offset = char_offset; |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2551 } |
88365 | 2552 *charbuf++ = c; |
2553 char_offset++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2554 } |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2555 else if (cmp_status->state == COMPOSING_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2556 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2557 if (cmp_status->old_form) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2558 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2559 if (c >= 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2560 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2561 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2562 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2563 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2564 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2565 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2566 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2567 *charbuf++ = -c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2568 cmp_status->nchars++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2569 cmp_status->length++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2570 if (cmp_status->nchars == MAX_COMPOSITION_COMPONENTS) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2571 EMACS_MULE_COMPOSITION_END (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2572 else if (cmp_status->method == COMPOSITION_WITH_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2573 cmp_status->state = COMPOSING_RULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2574 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2575 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2576 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2577 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2578 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2579 cmp_status->length++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2580 cmp_status->nchars--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2581 if (cmp_status->nchars == 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2582 EMACS_MULE_COMPOSITION_END (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2583 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2584 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2585 else if (cmp_status->state == COMPOSING_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2586 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2587 int rule; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2588 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2589 if (c >= 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2590 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2591 EMACS_MULE_COMPOSITION_END (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2592 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2593 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2594 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2595 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2596 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2597 c = -c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2598 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c, rule); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2599 if (rule < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2600 goto invalid_code; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2601 *charbuf++ = -2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2602 *charbuf++ = rule; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2603 cmp_status->length += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2604 cmp_status->state = COMPOSING_CHAR; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2605 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2606 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2607 else if (cmp_status->state == COMPOSING_COMPONENT_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2608 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2609 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2610 cmp_status->length++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2611 if (cmp_status->ncomps == 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2612 cmp_status->state = COMPOSING_CHAR; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2613 else if (cmp_status->ncomps > 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2614 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2615 if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2616 cmp_status->state = COMPOSING_COMPONENT_RULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2617 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2618 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2619 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2620 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2621 else /* COMPOSING_COMPONENT_RULE */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2622 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2623 int rule; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2624 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2625 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c, rule); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2626 if (rule < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2627 goto invalid_code; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2628 *charbuf++ = -2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2629 *charbuf++ = rule; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2630 cmp_status->length += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2631 cmp_status->ncomps--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2632 if (cmp_status->ncomps > 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2633 cmp_status->state = COMPOSING_COMPONENT_CHAR; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2634 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2635 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2636 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2637 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2638 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2639 retry: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2640 src = src_base; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2641 consumed_chars = consumed_chars_base; |
88365 | 2642 continue; |
2643 | |
2644 invalid_code: | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2645 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
88365 | 2646 src = src_base; |
2647 consumed_chars = consumed_chars_base; | |
2648 ONE_MORE_BYTE (c); | |
2649 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2650 char_offset++; |
88365 | 2651 coding->errors++; |
2652 } | |
2653 | |
2654 no_more_source: | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2655 if (cmp_status->state != COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2656 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2657 if (coding->mode & CODING_MODE_LAST_BLOCK) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2658 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2659 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2660 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2661 int i; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2662 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2663 charbuf -= cmp_status->length; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2664 for (i = 0; i < cmp_status->length; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2665 cmp_status->carryover[i] = charbuf[i]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2666 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2667 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2668 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
2669 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 2670 coding->consumed_char += consumed_chars_base; |
2671 coding->consumed = src_base - coding->source; | |
2672 coding->charbuf_used = charbuf - coding->charbuf; | |
2673 } | |
2674 | |
2675 | |
2676 #define EMACS_MULE_LEADING_CODES(id, codes) \ | |
2677 do { \ | |
2678 if (id < 0xA0) \ | |
2679 codes[0] = id, codes[1] = 0; \ | |
2680 else if (id < 0xE0) \ | |
2681 codes[0] = 0x9A, codes[1] = id; \ | |
2682 else if (id < 0xF0) \ | |
2683 codes[0] = 0x9B, codes[1] = id; \ | |
2684 else if (id < 0xF5) \ | |
2685 codes[0] = 0x9C, codes[1] = id; \ | |
2686 else \ | |
2687 codes[0] = 0x9D, codes[1] = id; \ | |
2688 } while (0); | |
2689 | |
2690 | |
2691 static int | |
2692 encode_coding_emacs_mule (coding) | |
2693 struct coding_system *coding; | |
2694 { | |
2695 int multibytep = coding->dst_multibyte; | |
2696 int *charbuf = coding->charbuf; | |
2697 int *charbuf_end = charbuf + coding->charbuf_used; | |
2698 unsigned char *dst = coding->destination + coding->produced; | |
2699 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
2700 int safe_room = 8; | |
2701 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
2702 Lisp_Object attrs, charset_list; |
88365 | 2703 int c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2704 int preferred_charset_id = -1; |
88365 | 2705 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
2706 CODING_GET_INFO (coding, attrs, charset_list); |
89644
fc9cda144ffc
(encode_coding_emacs_mule): Resync charset_list to
Kenichi Handa <handa@m17n.org>
parents:
89642
diff
changeset
|
2707 if (! EQ (charset_list, Vemacs_mule_charset_list)) |
fc9cda144ffc
(encode_coding_emacs_mule): Resync charset_list to
Kenichi Handa <handa@m17n.org>
parents:
89642
diff
changeset
|
2708 { |
fc9cda144ffc
(encode_coding_emacs_mule): Resync charset_list to
Kenichi Handa <handa@m17n.org>
parents:
89642
diff
changeset
|
2709 CODING_ATTR_CHARSET_LIST (attrs) |
fc9cda144ffc
(encode_coding_emacs_mule): Resync charset_list to
Kenichi Handa <handa@m17n.org>
parents:
89642
diff
changeset
|
2710 = charset_list = Vemacs_mule_charset_list; |
fc9cda144ffc
(encode_coding_emacs_mule): Resync charset_list to
Kenichi Handa <handa@m17n.org>
parents:
89642
diff
changeset
|
2711 } |
88365 | 2712 |
2713 while (charbuf < charbuf_end) | |
2714 { | |
2715 ASSURE_DESTINATION (safe_room); | |
2716 c = *charbuf++; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2717 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2718 if (c < 0) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2719 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2720 /* Handle an annotation. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2721 switch (*charbuf) |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2722 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2723 case CODING_ANNOTATE_COMPOSITION_MASK: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2724 /* Not yet implemented. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2725 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2726 case CODING_ANNOTATE_CHARSET_MASK: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2727 preferred_charset_id = charbuf[3]; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2728 if (preferred_charset_id >= 0 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2729 && NILP (Fmemq (make_number (preferred_charset_id), |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2730 charset_list))) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2731 preferred_charset_id = -1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2732 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2733 default: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2734 abort (); |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2735 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2736 charbuf += -c - 1; |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2737 continue; |
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2738 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2739 |
88365 | 2740 if (ASCII_CHAR_P (c)) |
2741 EMIT_ONE_ASCII_BYTE (c); | |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2742 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2743 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2744 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2745 EMIT_ONE_BYTE (c); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2746 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2747 else |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2748 { |
88365 | 2749 struct charset *charset; |
2750 unsigned code; | |
2751 int dimension; | |
2752 int emacs_mule_id; | |
2753 unsigned char leading_codes[2]; | |
2754 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2755 if (preferred_charset_id >= 0) |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2756 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2757 charset = CHARSET_FROM_ID (preferred_charset_id); |
100176
5706ca7c3d02
(encode_coding_emacs_mule): Be sure to set `code'.
Kenichi Handa <handa@m17n.org>
parents:
100170
diff
changeset
|
2758 if (CHAR_CHARSET_P (c, charset)) |
5706ca7c3d02
(encode_coding_emacs_mule): Be sure to set `code'.
Kenichi Handa <handa@m17n.org>
parents:
100170
diff
changeset
|
2759 code = ENCODE_CHAR (charset, c); |
5706ca7c3d02
(encode_coding_emacs_mule): Be sure to set `code'.
Kenichi Handa <handa@m17n.org>
parents:
100170
diff
changeset
|
2760 else |
5706ca7c3d02
(encode_coding_emacs_mule): Be sure to set `code'.
Kenichi Handa <handa@m17n.org>
parents:
100170
diff
changeset
|
2761 charset = char_charset (c, charset_list, &code); |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2762 } |
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2763 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2764 charset = char_charset (c, charset_list, &code); |
88365 | 2765 if (! charset) |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2766 { |
88365 | 2767 c = coding->default_char; |
2768 if (ASCII_CHAR_P (c)) | |
2769 { | |
2770 EMIT_ONE_ASCII_BYTE (c); | |
2771 continue; | |
2772 } | |
2773 charset = char_charset (c, charset_list, &code); | |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2774 } |
88365 | 2775 dimension = CHARSET_DIMENSION (charset); |
2776 emacs_mule_id = CHARSET_EMACS_MULE_ID (charset); | |
2777 EMACS_MULE_LEADING_CODES (emacs_mule_id, leading_codes); | |
2778 EMIT_ONE_BYTE (leading_codes[0]); | |
2779 if (leading_codes[1]) | |
2780 EMIT_ONE_BYTE (leading_codes[1]); | |
2781 if (dimension == 1) | |
89642
e97441b6244b
(encode_coding_emacs_mule): Emit bytes with MSB.
Kenichi Handa <handa@m17n.org>
parents:
89575
diff
changeset
|
2782 EMIT_ONE_BYTE (code | 0x80); |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2783 else |
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2784 { |
89642
e97441b6244b
(encode_coding_emacs_mule): Emit bytes with MSB.
Kenichi Handa <handa@m17n.org>
parents:
89575
diff
changeset
|
2785 code |= 0x8080; |
88365 | 2786 EMIT_ONE_BYTE (code >> 8); |
2787 EMIT_ONE_BYTE (code & 0xFF); | |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2788 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2789 } |
88365 | 2790 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2791 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 2792 coding->produced_char += produced_chars; |
2793 coding->produced = dst - coding->destination; | |
2794 return 0; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2795 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2796 |
17052 | 2797 |
88365 | 2798 /*** 7. ISO2022 handlers ***/ |
17052 | 2799 |
2800 /* The following note describes the coding system ISO2022 briefly. | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2801 Since the intention of this note is to help understand the |
35053 | 2802 functions in this file, some parts are NOT ACCURATE or are OVERLY |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2803 SIMPLIFIED. For thorough understanding, please refer to the |
35053 | 2804 original document of ISO2022. This is equivalent to the standard |
2805 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*). | |
17052 | 2806 |
2807 ISO2022 provides many mechanisms to encode several character sets | |
35053 | 2808 in 7-bit and 8-bit environments. For 7-bit environments, all text |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2809 is encoded using bytes less than 128. This may make the encoded |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2810 text a little bit longer, but the text passes more easily through |
35053 | 2811 several types of gateway, some of which strip off the MSB (Most |
36087 | 2812 Significant Bit). |
35053 | 2813 |
2814 There are two kinds of character sets: control character sets and | |
2815 graphic character sets. The former contain control characters such | |
17052 | 2816 as `newline' and `escape' to provide control functions (control |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2817 functions are also provided by escape sequences). The latter |
35053 | 2818 contain graphic characters such as 'A' and '-'. Emacs recognizes |
17052 | 2819 two control character sets and many graphic character sets. |
2820 | |
2821 Graphic character sets are classified into one of the following | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2822 four classes, according to the number of bytes (DIMENSION) and |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2823 number of characters in one dimension (CHARS) of the set: |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2824 - DIMENSION1_CHARS94 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2825 - DIMENSION1_CHARS96 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2826 - DIMENSION2_CHARS94 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2827 - DIMENSION2_CHARS96 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2828 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2829 In addition, each character set is assigned an identification tag, |
35053 | 2830 unique for each set, called the "final character" (denoted as <F> |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2831 hereafter). The <F> of each character set is decided by ECMA(*) |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2832 when it is registered in ISO. The code range of <F> is 0x30..0x7F |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2833 (0x30..0x3F are for private use only). |
17052 | 2834 |
2835 Note (*): ECMA = European Computer Manufacturers Association | |
2836 | |
35053 | 2837 Here are examples of graphic character sets [NAME(<F>)]: |
17052 | 2838 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ... |
2839 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ... | |
2840 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ... | |
2841 o DIMENSION2_CHARS96 -- none for the moment | |
2842 | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2843 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR. |
17052 | 2844 C0 [0x00..0x1F] -- control character plane 0 |
2845 GL [0x20..0x7F] -- graphic character plane 0 | |
2846 C1 [0x80..0x9F] -- control character plane 1 | |
2847 GR [0xA0..0xFF] -- graphic character plane 1 | |
2848 | |
2849 A control character set is directly designated and invoked to C0 or | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2850 C1 by an escape sequence. The most common case is that: |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2851 - ISO646's control character set is designated/invoked to C0, and |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2852 - ISO6429's control character set is designated/invoked to C1, |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2853 and usually these designations/invocations are omitted in encoded |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2854 text. In a 7-bit environment, only C0 can be used, and a control |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2855 character for C1 is encoded by an appropriate escape sequence to |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2856 fit into the environment. All control characters for C1 are |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2857 defined to have corresponding escape sequences. |
17052 | 2858 |
2859 A graphic character set is at first designated to one of four | |
2860 graphic registers (G0 through G3), then these graphic registers are | |
2861 invoked to GL or GR. These designations and invocations can be | |
2862 done independently. The most common case is that G0 is invoked to | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2863 GL, G1 is invoked to GR, and ASCII is designated to G0. Usually |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2864 these invocations and designations are omitted in encoded text. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2865 In a 7-bit environment, only GL can be used. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2866 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2867 When a graphic character set of CHARS94 is invoked to GL, codes |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2868 0x20 and 0x7F of the GL area work as control characters SPACE and |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2869 DEL respectively, and codes 0xA0 and 0xFF of the GR area should not |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2870 be used. |
17052 | 2871 |
2872 There are two ways of invocation: locking-shift and single-shift. | |
2873 With locking-shift, the invocation lasts until the next different | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2874 invocation, whereas with single-shift, the invocation affects the |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2875 following character only and doesn't affect the locking-shift |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2876 state. Invocations are done by the following control characters or |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2877 escape sequences: |
17052 | 2878 |
2879 ---------------------------------------------------------------------- | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2880 abbrev function cntrl escape seq description |
17052 | 2881 ---------------------------------------------------------------------- |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2882 SI/LS0 (shift-in) 0x0F none invoke G0 into GL |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2883 SO/LS1 (shift-out) 0x0E none invoke G1 into GL |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2884 LS2 (locking-shift-2) none ESC 'n' invoke G2 into GL |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2885 LS3 (locking-shift-3) none ESC 'o' invoke G3 into GL |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2886 LS1R (locking-shift-1 right) none ESC '~' invoke G1 into GR (*) |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2887 LS2R (locking-shift-2 right) none ESC '}' invoke G2 into GR (*) |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2888 LS3R (locking-shift 3 right) none ESC '|' invoke G3 into GR (*) |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2889 SS2 (single-shift-2) 0x8E ESC 'N' invoke G2 for one char |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2890 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char |
17052 | 2891 ---------------------------------------------------------------------- |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2892 (*) These are not used by any known coding system. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2893 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2894 Control characters for these functions are defined by macros |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2895 ISO_CODE_XXX in `coding.h'. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2896 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2897 Designations are done by the following escape sequences: |
17052 | 2898 ---------------------------------------------------------------------- |
2899 escape sequence description | |
2900 ---------------------------------------------------------------------- | |
2901 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0 | |
2902 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1 | |
2903 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2 | |
2904 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3 | |
2905 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*) | |
2906 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1 | |
2907 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2 | |
2908 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3 | |
2909 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**) | |
2910 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1 | |
2911 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2 | |
2912 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3 | |
2913 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*) | |
2914 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1 | |
2915 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2 | |
2916 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3 | |
2917 ---------------------------------------------------------------------- | |
2918 | |
2919 In this list, "DIMENSION1_CHARS94<F>" means a graphic character set | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2920 of dimension 1, chars 94, and final character <F>, etc... |
17052 | 2921 |
2922 Note (*): Although these designations are not allowed in ISO2022, | |
2923 Emacs accepts them on decoding, and produces them on encoding | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2924 CHARS96 character sets in a coding system which is characterized as |
17052 | 2925 7-bit environment, non-locking-shift, and non-single-shift. |
2926 | |
2927 Note (**): If <F> is '@', 'A', or 'B', the intermediate character | |
88365 | 2928 '(' must be omitted. We refer to this as "short-form" hereafter. |
17052 | 2929 |
35053 | 2930 Now you may notice that there are a lot of ways of encoding the |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2931 same multilingual text in ISO2022. Actually, there exist many |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2932 coding systems such as Compound Text (used in X11's inter client |
36087 | 2933 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR |
2934 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian | |
17052 | 2935 localized platforms), and all of these are variants of ISO2022. |
2936 | |
2937 In addition to the above, Emacs handles two more kinds of escape | |
2938 sequences: ISO6429's direction specification and Emacs' private | |
2939 sequence for specifying character composition. | |
2940 | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2941 ISO6429's direction specification takes the following form: |
17052 | 2942 o CSI ']' -- end of the current direction |
2943 o CSI '0' ']' -- end of the current direction | |
2944 o CSI '1' ']' -- start of left-to-right text | |
2945 o CSI '2' ']' -- start of right-to-left text | |
2946 The control character CSI (0x9B: control sequence introducer) is | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2947 abbreviated to the escape sequence ESC '[' in a 7-bit environment. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2948 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2949 Character composition specification takes the following form: |
26847 | 2950 o ESC '0' -- start relative composition |
2951 o ESC '1' -- end composition | |
2952 o ESC '2' -- start rule-base composition (*) | |
2953 o ESC '3' -- start relative composition with alternate chars (**) | |
2954 o ESC '4' -- start rule-base composition with alternate chars (**) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2955 Since these are not standard escape sequences of any ISO standard, |
35053 | 2956 the use of them with these meanings is restricted to Emacs only. |
2957 | |
88771 | 2958 (*) This form is used only in Emacs 20.7 and older versions, |
2959 but newer versions can safely decode it. | |
35053 | 2960 (**) This form is used only in Emacs 21.1 and newer versions, |
88771 | 2961 and older versions can't decode it. |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2962 |
35053 | 2963 Here's a list of example usages of these composition escape |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2964 sequences (categorized by `enum composition_method'). |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2965 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2966 COMPOSITION_RELATIVE: |
26847 | 2967 ESC 0 CHAR [ CHAR ] ESC 1 |
36087 | 2968 COMPOSITION_WITH_RULE: |
26847 | 2969 ESC 2 CHAR [ RULE CHAR ] ESC 1 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2970 COMPOSITION_WITH_ALTCHARS: |
26847 | 2971 ESC 3 ALTCHAR [ ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2972 COMPOSITION_WITH_RULE_ALTCHARS: |
26847 | 2973 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */ |
17052 | 2974 |
2975 enum iso_code_class_type iso_code_class[256]; | |
2976 | |
88365 | 2977 #define SAFE_CHARSET_P(coding, id) \ |
2978 ((id) <= (coding)->max_charset_id \ | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
2979 && (coding)->safe_charsets[id] != 255) |
88365 | 2980 |
2981 | |
2982 #define SHIFT_OUT_OK(category) \ | |
2983 (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0) | |
2984 | |
2985 static void | |
88631
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
2986 setup_iso_safe_charsets (attrs) |
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
2987 Lisp_Object attrs; |
88365 | 2988 { |
2989 Lisp_Object charset_list, safe_charsets; | |
2990 Lisp_Object request; | |
2991 Lisp_Object reg_usage; | |
2992 Lisp_Object tail; | |
2993 int reg94, reg96; | |
2994 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
2995 int max_charset_id; | |
2996 | |
2997 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
2998 if ((flags & CODING_ISO_FLAG_FULL_SUPPORT) | |
2999 && ! EQ (charset_list, Viso_2022_charset_list)) | |
3000 { | |
3001 CODING_ATTR_CHARSET_LIST (attrs) | |
3002 = charset_list = Viso_2022_charset_list; | |
3003 ASET (attrs, coding_attr_safe_charsets, Qnil); | |
3004 } | |
3005 | |
3006 if (STRINGP (AREF (attrs, coding_attr_safe_charsets))) | |
3007 return; | |
3008 | |
3009 max_charset_id = 0; | |
3010 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
3011 { | |
3012 int id = XINT (XCAR (tail)); | |
3013 if (max_charset_id < id) | |
3014 max_charset_id = id; | |
3015 } | |
3016 | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
3017 safe_charsets = make_uninit_string (max_charset_id + 1); |
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
3018 memset (SDATA (safe_charsets), 255, max_charset_id + 1); |
88365 | 3019 request = AREF (attrs, coding_attr_iso_request); |
3020 reg_usage = AREF (attrs, coding_attr_iso_usage); | |
3021 reg94 = XINT (XCAR (reg_usage)); | |
3022 reg96 = XINT (XCDR (reg_usage)); | |
3023 | |
3024 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
3025 { | |
3026 Lisp_Object id; | |
3027 Lisp_Object reg; | |
3028 struct charset *charset; | |
3029 | |
3030 id = XCAR (tail); | |
3031 charset = CHARSET_FROM_ID (XINT (id)); | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3032 reg = Fcdr (Fassq (id, request)); |
88365 | 3033 if (! NILP (reg)) |
89483 | 3034 SSET (safe_charsets, XINT (id), XINT (reg)); |
88365 | 3035 else if (charset->iso_chars_96) |
3036 { | |
3037 if (reg96 < 4) | |
89483 | 3038 SSET (safe_charsets, XINT (id), reg96); |
88365 | 3039 } |
3040 else | |
3041 { | |
3042 if (reg94 < 4) | |
89483 | 3043 SSET (safe_charsets, XINT (id), reg94); |
88365 | 3044 } |
3045 } | |
3046 ASET (attrs, coding_attr_safe_charsets, safe_charsets); | |
3047 } | |
3048 | |
50047
8e17fbb2ac77
(CODING_ADD_COMPOSITION_COMPONENT): If the number of
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
3049 |
17052 | 3050 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3051 Check if a text is encoded in one of ISO-2022 based codig systems. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3052 If it is, return 1, else return 0. */ |
17052 | 3053 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3054 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3055 detect_coding_iso_2022 (coding, detect_info) |
88365 | 3056 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3057 struct coding_detection_info *detect_info; |
17052 | 3058 { |
89483 | 3059 const unsigned char *src = coding->source, *src_base = src; |
3060 const unsigned char *src_end = coding->source + coding->src_bytes; | |
88365 | 3061 int multibytep = coding->src_multibyte; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3062 int single_shifting = 0; |
88365 | 3063 int id; |
3064 int c, c1; | |
3065 int consumed_chars = 0; | |
3066 int i; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3067 int rejected = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3068 int found = 0; |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3069 int composition_count = -1; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3070 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3071 detect_info->checked |= CATEGORY_MASK_ISO; |
88365 | 3072 |
3073 for (i = coding_category_iso_7; i <= coding_category_iso_8_else; i++) | |
3074 { | |
3075 struct coding_system *this = &(coding_categories[i]); | |
3076 Lisp_Object attrs, val; | |
3077 | |
94944
c16046e21b90
(detect_coding_iso_2022): Ignore a coding category that
Kenichi Handa <handa@m17n.org>
parents:
93877
diff
changeset
|
3078 if (this->id < 0) |
c16046e21b90
(detect_coding_iso_2022): Ignore a coding category that
Kenichi Handa <handa@m17n.org>
parents:
93877
diff
changeset
|
3079 continue; |
88365 | 3080 attrs = CODING_ID_ATTRS (this->id); |
3081 if (CODING_ISO_FLAGS (this) & CODING_ISO_FLAG_FULL_SUPPORT | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
3082 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Viso_2022_charset_list)) |
88365 | 3083 setup_iso_safe_charsets (attrs); |
3084 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
89483 | 3085 this->max_charset_id = SCHARS (val) - 1; |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
3086 this->safe_charsets = SDATA (val); |
88365 | 3087 } |
3088 | |
3089 /* A coding system of this category is always ASCII compatible. */ | |
3090 src += coding->head_ascii; | |
3091 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3092 while (rejected != CATEGORY_MASK_ISO) |
88365 | 3093 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3094 src_base = src; |
88365 | 3095 ONE_MORE_BYTE (c); |
17052 | 3096 switch (c) |
3097 { | |
3098 case ISO_CODE_ESC: | |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
3099 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
3100 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3101 single_shifting = 0; |
88365 | 3102 ONE_MORE_BYTE (c); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3103 if (c >= '(' && c <= '/') |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3104 { |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3105 /* Designation sequence for a charset of dimension 1. */ |
88365 | 3106 ONE_MORE_BYTE (c1); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3107 if (c1 < ' ' || c1 >= 0x80 |
88365 | 3108 || (id = iso_charset_table[0][c >= ','][c1]) < 0) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3109 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3110 break; |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3111 } |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3112 else if (c == '$') |
17052 | 3113 { |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3114 /* Designation sequence for a charset of dimension 2. */ |
88365 | 3115 ONE_MORE_BYTE (c); |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3116 if (c >= '@' && c <= 'B') |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3117 /* Designation for JISX0208.1978, GB2312, or JISX0208. */ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3118 id = iso_charset_table[1][0][c]; |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3119 else if (c >= '(' && c <= '/') |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3120 { |
88365 | 3121 ONE_MORE_BYTE (c1); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3122 if (c1 < ' ' || c1 >= 0x80 |
88365 | 3123 || (id = iso_charset_table[1][c >= ','][c1]) < 0) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3124 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3125 break; |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3126 } |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3127 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3128 /* Invalid designation sequence. Just ignore it. */ |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3129 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3130 } |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
3131 else if (c == 'N' || c == 'O') |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3132 { |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
3133 /* ESC <Fe> for SS2 or SS3. */ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3134 single_shifting = 1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3135 rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_8BIT; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3136 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3137 } |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3138 else if (c == '1') |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3139 { |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3140 /* End of composition. */ |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3141 if (composition_count < 0 |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3142 || composition_count > MAX_COMPOSITION_COMPONENTS) |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3143 /* Invalid */ |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3144 break; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3145 composition_count = -1; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3146 found |= CATEGORY_MASK_ISO; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3147 } |
26847 | 3148 else if (c >= '0' && c <= '4') |
3149 { | |
3150 /* ESC <Fp> for start/end composition. */ | |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3151 composition_count = 0; |
26847 | 3152 break; |
3153 } | |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3154 else |
88365 | 3155 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3156 /* Invalid escape sequence. Just ignore it. */ |
88365 | 3157 break; |
3158 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3159 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3160 /* We found a valid designation sequence for CHARSET. */ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3161 rejected |= CATEGORY_MASK_ISO_8BIT; |
88365 | 3162 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7], |
3163 id)) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3164 found |= CATEGORY_MASK_ISO_7; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3165 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3166 rejected |= CATEGORY_MASK_ISO_7; |
88365 | 3167 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_tight], |
3168 id)) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3169 found |= CATEGORY_MASK_ISO_7_TIGHT; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3170 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3171 rejected |= CATEGORY_MASK_ISO_7_TIGHT; |
88365 | 3172 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_else], |
3173 id)) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3174 found |= CATEGORY_MASK_ISO_7_ELSE; |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
3175 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3176 rejected |= CATEGORY_MASK_ISO_7_ELSE; |
88365 | 3177 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_8_else], |
3178 id)) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3179 found |= CATEGORY_MASK_ISO_8_ELSE; |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
3180 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3181 rejected |= CATEGORY_MASK_ISO_8_ELSE; |
17052 | 3182 break; |
3183 | |
3184 case ISO_CODE_SO: | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3185 case ISO_CODE_SI: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3186 /* Locking shift out/in. */ |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
3187 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
3188 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3189 single_shifting = 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3190 rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_8BIT; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3191 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3192 |
17052 | 3193 case ISO_CODE_CSI: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3194 /* Control sequence introducer. */ |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3195 single_shifting = 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3196 rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_7_ELSE; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3197 found |= CATEGORY_MASK_ISO_8_ELSE; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3198 goto check_extra_latin; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3199 |
17052 | 3200 case ISO_CODE_SS2: |
3201 case ISO_CODE_SS3: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3202 /* Single shift. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3203 if (inhibit_iso_escape_detection) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3204 break; |
89780
a53cb5864a40
(detect_coding_iso_2022): Fix handling of SS2 and SS3.
Kenichi Handa <handa@m17n.org>
parents:
89779
diff
changeset
|
3205 single_shifting = 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3206 rejected |= CATEGORY_MASK_ISO_7BIT; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3207 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3208 & CODING_ISO_FLAG_SINGLE_SHIFT) |
89780
a53cb5864a40
(detect_coding_iso_2022): Fix handling of SS2 and SS3.
Kenichi Handa <handa@m17n.org>
parents:
89779
diff
changeset
|
3209 found |= CATEGORY_MASK_ISO_8_1, single_shifting = 1; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3210 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_2]) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3211 & CODING_ISO_FLAG_SINGLE_SHIFT) |
89780
a53cb5864a40
(detect_coding_iso_2022): Fix handling of SS2 and SS3.
Kenichi Handa <handa@m17n.org>
parents:
89779
diff
changeset
|
3212 found |= CATEGORY_MASK_ISO_8_2, single_shifting = 1; |
a53cb5864a40
(detect_coding_iso_2022): Fix handling of SS2 and SS3.
Kenichi Handa <handa@m17n.org>
parents:
89779
diff
changeset
|
3213 if (single_shifting) |
a53cb5864a40
(detect_coding_iso_2022): Fix handling of SS2 and SS3.
Kenichi Handa <handa@m17n.org>
parents:
89779
diff
changeset
|
3214 break; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3215 goto check_extra_latin; |
17052 | 3216 |
3217 default: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3218 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3219 continue; |
17052 | 3220 if (c < 0x80) |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3221 { |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3222 if (composition_count >= 0) |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3223 composition_count++; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3224 single_shifting = 0; |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3225 break; |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3226 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3227 if (c >= 0xA0) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3228 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3229 rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_7_ELSE; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3230 found |= CATEGORY_MASK_ISO_8_1; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3231 /* Check the length of succeeding codes of the range |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3232 0xA0..0FF. If the byte length is even, we include |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3233 CATEGORY_MASK_ISO_8_2 in `found'. We can check this |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3234 only when we are not single shifting. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3235 if (! single_shifting |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3236 && ! (rejected & CATEGORY_MASK_ISO_8_2)) |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3237 { |
29299
b33b38d81020
(detect_coding_iso2022): Fix code for checking
Kenichi Handa <handa@m17n.org>
parents:
29275
diff
changeset
|
3238 int i = 1; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3239 while (src < src_end) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3240 { |
88365 | 3241 ONE_MORE_BYTE (c); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3242 if (c < 0xA0) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3243 break; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3244 i++; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3245 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3246 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3247 if (i & 1 && src < src_end) |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3248 { |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3249 rejected |= CATEGORY_MASK_ISO_8_2; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3250 if (composition_count >= 0) |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3251 composition_count += i; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3252 } |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3253 else |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3254 { |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3255 found |= CATEGORY_MASK_ISO_8_2; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3256 if (composition_count >= 0) |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3257 composition_count += i / 2; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3258 } |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3259 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3260 break; |
17052 | 3261 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3262 check_extra_latin: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3263 single_shifting = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3264 if (! VECTORP (Vlatin_extra_code_table) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3265 || NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3266 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3267 rejected = CATEGORY_MASK_ISO; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3268 break; |
17052 | 3269 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3270 if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1]) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3271 & CODING_ISO_FLAG_LATIN_EXTRA) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3272 found |= CATEGORY_MASK_ISO_8_1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3273 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3274 rejected |= CATEGORY_MASK_ISO_8_1; |
89780
a53cb5864a40
(detect_coding_iso_2022): Fix handling of SS2 and SS3.
Kenichi Handa <handa@m17n.org>
parents:
89779
diff
changeset
|
3275 rejected |= CATEGORY_MASK_ISO_8_2; |
17052 | 3276 } |
3277 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3278 detect_info->rejected |= CATEGORY_MASK_ISO; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3279 return 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3280 |
88365 | 3281 no_more_source: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3282 detect_info->rejected |= rejected; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3283 detect_info->found |= (found & ~rejected); |
88365 | 3284 return 1; |
17052 | 3285 } |
3286 | |
3287 | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3288 /* Set designation state into CODING. Set CHARS_96 to -1 if the |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3289 escape sequence should be kept. */ |
88365 | 3290 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \ |
3291 do { \ | |
3292 int id, prev; \ | |
3293 \ | |
3294 if (final < '0' || final >= 128 \ | |
3295 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \ | |
3296 || !SAFE_CHARSET_P (coding, id)) \ | |
3297 { \ | |
3298 CODING_ISO_DESIGNATION (coding, reg) = -2; \ | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3299 chars_96 = -1; \ |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3300 break; \ |
88365 | 3301 } \ |
3302 prev = CODING_ISO_DESIGNATION (coding, reg); \ | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3303 if (id == charset_jisx0201_roman) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3304 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3305 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3306 id = charset_ascii; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3307 } \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3308 else if (id == charset_jisx0208_1978) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3309 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3310 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3311 id = charset_jisx0208; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3312 } \ |
88365 | 3313 CODING_ISO_DESIGNATION (coding, reg) = id; \ |
3314 /* If there was an invalid designation to REG previously, and this \ | |
3315 designation is ASCII to REG, we should keep this designation \ | |
3316 sequence. */ \ | |
3317 if (prev == -2 && id == charset_ascii) \ | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3318 chars_96 = -1; \ |
17052 | 3319 } while (0) |
3320 | |
88365 | 3321 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3322 /* Handle these composition sequence (ALT: alternate char): |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3323 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3324 (1) relative composition: ESC 0 CHAR ... ESC 1 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3325 (2) rulebase composition: ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3326 (3) altchar composition: ESC 3 ALT ... ALT ESC 0 CHAR ... ESC 1 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3327 (4) alt&rule composition: ESC 4 ALT RULE ... ALT ESC 0 CHAR ... ESC 1 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3328 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3329 When the start sequence (ESC 0/2/3/4) is found, this annotation |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3330 header is produced. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3331 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3332 [ -LENGTH(==-5) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) 0 METHOD ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3333 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3334 Then, upon reading CHAR or RULE (one or two bytes), these codes are |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3335 produced until the end sequence (ESC 1) is found: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3336 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3337 (1) CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3338 (2) CHAR -2 DECODED-RULE CHAR -2 DECODED-RULE ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3339 (3) ALT ... ALT -1 -1 CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3340 (4) ALT -2 DECODED-RULE ALT -2 DECODED-RULE ... ALT -1 -1 CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3341 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3342 When the end sequence (ESC 1) is found, LENGTH and NCHARS in the |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3343 annotation header is updated as below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3344 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3345 (1) LENGTH: unchanged, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3346 (2) LENGTH: unchanged, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3347 (3) LENGTH: += number of ALTs + 2, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3348 (4) LENGTH: += number of ALTs * 3, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3349 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3350 If an error is found while composing, the annotation header is |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3351 changed to: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3352 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3353 [ ESC '0'/'2'/'3'/'4' -2 0 ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3354 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3355 and the sequence [ -2 DECODED-RULE ] is changed to the original |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3356 byte sequence as below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3357 o the original byte sequence is B: [ B -1 ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3358 o the original byte sequence is B1 B2: [ B1 B2 ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3359 and the sequence [ -1 -1 ] is changed to the original byte |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3360 sequence: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3361 [ ESC '0' ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3362 */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3363 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3364 /* Decode a composition rule C1 and maybe one more byte from the |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3365 source, and set RULE to the encoded composition rule, NBYTES to the |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3366 length of the composition rule. If the rule is invalid, set RULE |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3367 to some negative value. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3368 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3369 #define DECODE_COMPOSITION_RULE(rule, nbytes) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3370 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3371 rule = c1 - 32; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3372 if (rule < 0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3373 break; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3374 if (rule < 81) /* old format (before ver.21) */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3375 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3376 int gref = (rule) / 9; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3377 int nref = (rule) % 9; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3378 if (gref == 4) gref = 10; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3379 if (nref == 4) nref = 10; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3380 rule = COMPOSITION_ENCODE_RULE (gref, nref); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3381 nbytes = 1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3382 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3383 else /* new format (after ver.21) */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3384 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3385 int c; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3386 \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3387 ONE_MORE_BYTE (c); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3388 rule = COMPOSITION_ENCODE_RULE (rule - 81, c - 32); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3389 if (rule >= 0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3390 rule += 0x100; /* to destinguish it from the old format */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3391 nbytes = 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3392 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3393 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3394 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3395 #define ENCODE_COMPOSITION_RULE(rule) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3396 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3397 int gref = (rule % 0x100) / 12, nref = (rule % 0x100) % 12; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3398 \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3399 if (rule < 0x100) /* old format */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3400 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3401 if (gref == 10) gref = 4; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3402 if (nref == 10) nref = 4; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3403 charbuf[idx] = 32 + gref * 9 + nref; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3404 charbuf[idx + 1] = -1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3405 new_chars++; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3406 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3407 else /* new format */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3408 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3409 charbuf[idx] = 32 + 81 + gref; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3410 charbuf[idx + 1] = 32 + nref; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3411 new_chars += 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3412 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3413 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3414 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3415 /* Finish the current composition as invalid. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3416 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3417 static int finish_composition P_ ((int *, struct composition_status *)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3418 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3419 static int |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3420 finish_composition (charbuf, cmp_status) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3421 int *charbuf; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3422 struct composition_status *cmp_status; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3423 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3424 int idx = - cmp_status->length; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3425 int new_chars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3426 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3427 /* Recover the original ESC sequence */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3428 charbuf[idx++] = ISO_CODE_ESC; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3429 charbuf[idx++] = (cmp_status->method == COMPOSITION_RELATIVE ? '0' |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3430 : cmp_status->method == COMPOSITION_WITH_RULE ? '2' |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3431 : cmp_status->method == COMPOSITION_WITH_ALTCHARS ? '3' |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3432 /* cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3433 : '4'); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3434 charbuf[idx++] = -2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3435 charbuf[idx++] = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3436 charbuf[idx++] = -1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3437 new_chars = cmp_status->nchars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3438 if (cmp_status->method >= COMPOSITION_WITH_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3439 for (; idx < 0; idx++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3440 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3441 int elt = charbuf[idx]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3442 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3443 if (elt == -2) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3444 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3445 ENCODE_COMPOSITION_RULE (charbuf[idx + 1]); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3446 idx++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3447 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3448 else if (elt == -1) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3449 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3450 charbuf[idx++] = ISO_CODE_ESC; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3451 charbuf[idx] = '0'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3452 new_chars += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3453 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3454 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3455 cmp_status->state = COMPOSING_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3456 return new_chars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3457 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3458 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3459 /* If characers are under composition, finish the composition. */ |
88365 | 3460 #define MAYBE_FINISH_COMPOSITION() \ |
3461 do { \ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3462 if (cmp_status->state != COMPOSING_NO) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3463 char_offset += finish_composition (charbuf, cmp_status); \ |
88365 | 3464 } while (0) |
3465 | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
3466 /* Handle composition start sequence ESC 0, ESC 2, ESC 3, or ESC 4. |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3467 |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
3468 ESC 0 : relative composition : ESC 0 CHAR ... ESC 1 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
3469 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1 |
88365 | 3470 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1 |
3471 ESC 4 : alt&rule composition : ESC 4 CHAR RULE ... CHAR ESC 0 CHAR ... ESC 1 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3472 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3473 Produce this annotation sequence now: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3474 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3475 [ -LENGTH(==-4) CODING_ANNOTATE_COMPOSITION_MASK NCHARS(==0) METHOD ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3476 */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3477 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3478 #define DECODE_COMPOSITION_START(c1) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3479 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3480 if (c1 == '0' \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3481 && ((cmp_status->state == COMPOSING_COMPONENT_CHAR \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3482 && cmp_status->method == COMPOSITION_WITH_ALTCHARS) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3483 || (cmp_status->state == COMPOSING_COMPONENT_RULE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3484 && cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS))) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3485 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3486 *charbuf++ = -1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3487 *charbuf++= -1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3488 cmp_status->state = COMPOSING_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3489 cmp_status->length += 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3490 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3491 else \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3492 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3493 MAYBE_FINISH_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3494 cmp_status->method = (c1 == '0' ? COMPOSITION_RELATIVE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3495 : c1 == '2' ? COMPOSITION_WITH_RULE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3496 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3497 : COMPOSITION_WITH_RULE_ALTCHARS); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3498 cmp_status->state \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3499 = (c1 <= '2' ? COMPOSING_CHAR : COMPOSING_COMPONENT_CHAR); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3500 ADD_COMPOSITION_DATA (charbuf, 0, 0, cmp_status->method); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3501 cmp_status->length = MAX_ANNOTATION_LENGTH; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3502 cmp_status->nchars = cmp_status->ncomps = 0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3503 coding->annotated = 1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3504 } \ |
26847 | 3505 } while (0) |
3506 | |
88365 | 3507 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3508 /* Handle composition end sequence ESC 1. */ |
88365 | 3509 |
3510 #define DECODE_COMPOSITION_END() \ | |
3511 do { \ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3512 if (cmp_status->nchars == 0 \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3513 || ((cmp_status->state == COMPOSING_CHAR) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3514 == (cmp_status->method == COMPOSITION_WITH_RULE))) \ |
88365 | 3515 { \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3516 MAYBE_FINISH_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3517 goto invalid_code; \ |
88365 | 3518 } \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3519 if (cmp_status->method == COMPOSITION_WITH_ALTCHARS) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3520 charbuf[- cmp_status->length] -= cmp_status->ncomps + 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3521 else if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3522 charbuf[- cmp_status->length] -= cmp_status->ncomps * 3; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3523 charbuf[- cmp_status->length + 2] = cmp_status->nchars; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3524 char_offset += cmp_status->nchars; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3525 cmp_status->state = COMPOSING_NO; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3526 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3527 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3528 /* Store a composition rule RULE in charbuf, and update cmp_status. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3529 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3530 #define STORE_COMPOSITION_RULE(rule) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3531 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3532 *charbuf++ = -2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3533 *charbuf++ = rule; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3534 cmp_status->length += 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3535 cmp_status->state--; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3536 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3537 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3538 /* Store a composed char or a component char C in charbuf, and update |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3539 cmp_status. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3540 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3541 #define STORE_COMPOSITION_CHAR(c) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3542 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3543 *charbuf++ = (c); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3544 cmp_status->length++; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3545 if (cmp_status->state == COMPOSING_CHAR) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3546 cmp_status->nchars++; \ |
88365 | 3547 else \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3548 cmp_status->ncomps++; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3549 if (cmp_status->method == COMPOSITION_WITH_RULE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3550 || (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3551 && cmp_status->state == COMPOSING_COMPONENT_CHAR)) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3552 cmp_status->state++; \ |
26847 | 3553 } while (0) |
3554 | |
3555 | |
17052 | 3556 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
3557 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3558 static void |
88365 | 3559 decode_coding_iso_2022 (coding) |
17052 | 3560 struct coding_system *coding; |
3561 { | |
89483 | 3562 const unsigned char *src = coding->source + coding->consumed; |
3563 const unsigned char *src_end = coding->source + coding->src_bytes; | |
3564 const unsigned char *src_base; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
3565 int *charbuf = coding->charbuf + coding->charbuf_used; |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
3566 /* We may produce two annocations (charset and composition) in one |
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
3567 loop and one more charset annocation at the end. */ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3568 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
3569 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 3); |
88365 | 3570 int consumed_chars = 0, consumed_chars_base; |
3571 int multibytep = coding->src_multibyte; | |
17052 | 3572 /* Charsets invoked to graphic plane 0 and 1 respectively. */ |
88365 | 3573 int charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
3574 int charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3575 int charset_id_2, charset_id_3; |
88365 | 3576 struct charset *charset; |
3577 int c; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3578 struct composition_status *cmp_status = CODING_ISO_CMP_STATUS (coding); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
3579 Lisp_Object attrs, charset_list; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3580 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3581 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3582 int last_id = charset_ascii; |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
3583 int eol_crlf = |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
3584 !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3585 int byte_after_cr = -1; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3586 int i; |
88365 | 3587 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
3588 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 3589 setup_iso_safe_charsets (attrs); |
90772
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3590 /* Charset list may have been changed. */ |
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3591 charset_list = CODING_ATTR_CHARSET_LIST (attrs); |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
3592 coding->safe_charsets = SDATA (CODING_ATTR_SAFE_CHARSETS (attrs)); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3593 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3594 if (cmp_status->state != COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3595 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3596 for (i = 0; i < cmp_status->length; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3597 *charbuf++ = cmp_status->carryover[i]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3598 coding->annotated = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3599 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3600 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3601 while (1) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3602 { |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3603 int c1, c2, c3; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3604 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3605 src_base = src; |
88365 | 3606 consumed_chars_base = consumed_chars; |
3607 | |
3608 if (charbuf >= charbuf_end) | |
100936
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
3609 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
3610 if (byte_after_cr >= 0) |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
3611 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
3612 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
3613 } |
88365 | 3614 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3615 if (byte_after_cr >= 0) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3616 c1 = byte_after_cr, byte_after_cr = -1; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3617 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3618 ONE_MORE_BYTE (c1); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3619 if (c1 < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3620 goto invalid_code; |
17052 | 3621 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3622 if (CODING_ISO_EXTSEGMENT_LEN (coding) > 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3623 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3624 *charbuf++ = ASCII_BYTE_P (c1) ? c1 : BYTE8_TO_CHAR (c1); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3625 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3626 CODING_ISO_EXTSEGMENT_LEN (coding)--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3627 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3628 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3629 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3630 if (CODING_ISO_EMBEDDED_UTF_8 (coding)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3631 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3632 if (c1 == ISO_CODE_ESC) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3633 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3634 if (src + 1 >= src_end) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3635 goto no_more_source; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3636 *charbuf++ = ISO_CODE_ESC; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3637 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3638 if (src[0] == '%' && src[1] == '@') |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3639 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3640 src += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3641 consumed_chars += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3642 char_offset += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3643 /* We are sure charbuf can contain two more chars. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3644 *charbuf++ = '%'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3645 *charbuf++ = '@'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3646 CODING_ISO_EMBEDDED_UTF_8 (coding) = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3647 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3648 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3649 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3650 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3651 *charbuf++ = ASCII_BYTE_P (c1) ? c1 : BYTE8_TO_CHAR (c1); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3652 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3653 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3654 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3655 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3656 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3657 if ((cmp_status->state == COMPOSING_RULE |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3658 || cmp_status->state == COMPOSING_COMPONENT_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3659 && c1 != ISO_CODE_ESC) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3660 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3661 int rule, nbytes; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3662 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3663 DECODE_COMPOSITION_RULE (rule, nbytes); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3664 if (rule < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3665 goto invalid_code; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3666 STORE_COMPOSITION_RULE (rule); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3667 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3668 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3669 |
89279
1fd77c471ee6
(decode_coding_utf_8): When eol_type is Qdos, handle
Kenichi Handa <handa@m17n.org>
parents:
89227
diff
changeset
|
3670 /* We produce at most one character. */ |
17052 | 3671 switch (iso_code_class [c1]) |
3672 { | |
3673 case ISO_0x20_or_0x7F: | |
88365 | 3674 if (charset_id_0 < 0 |
3675 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_0))) | |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3676 /* This is SPACE or DEL. */ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3677 charset = CHARSET_FROM_ID (charset_ascii); |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3678 else |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3679 charset = CHARSET_FROM_ID (charset_id_0); |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3680 break; |
17052 | 3681 |
3682 case ISO_graphic_plane_0: | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3683 if (charset_id_0 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3684 charset = CHARSET_FROM_ID (charset_ascii); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3685 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3686 charset = CHARSET_FROM_ID (charset_id_0); |
17052 | 3687 break; |
3688 | |
3689 case ISO_0xA0_or_0xFF: | |
88365 | 3690 if (charset_id_1 < 0 |
3691 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1)) | |
3692 || CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) | |
3693 goto invalid_code; | |
17052 | 3694 /* This is a graphic character, we fall down ... */ |
3695 | |
3696 case ISO_graphic_plane_1: | |
88365 | 3697 if (charset_id_1 < 0) |
3698 goto invalid_code; | |
3699 charset = CHARSET_FROM_ID (charset_id_1); | |
17052 | 3700 break; |
3701 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3702 case ISO_control_0: |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3703 if (eol_crlf && c1 == '\r') |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3704 ONE_MORE_BYTE (byte_after_cr); |
88365 | 3705 MAYBE_FINISH_COMPOSITION (); |
3706 charset = CHARSET_FROM_ID (charset_ascii); | |
17052 | 3707 break; |
3708 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3709 case ISO_control_1: |
88365 | 3710 goto invalid_code; |
17052 | 3711 |
3712 case ISO_shift_out: | |
88365 | 3713 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
3714 || CODING_ISO_DESIGNATION (coding, 1) < 0) | |
3715 goto invalid_code; | |
3716 CODING_ISO_INVOCATION (coding, 0) = 1; | |
3717 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3718 continue; |
17052 | 3719 |
3720 case ISO_shift_in: | |
88365 | 3721 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT)) |
3722 goto invalid_code; | |
3723 CODING_ISO_INVOCATION (coding, 0) = 0; | |
3724 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3725 continue; |
17052 | 3726 |
3727 case ISO_single_shift_2_7: | |
3728 case ISO_single_shift_2: | |
88365 | 3729 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
3730 goto invalid_code; | |
17052 | 3731 /* SS2 is handled as an escape sequence of ESC 'N' */ |
3732 c1 = 'N'; | |
3733 goto label_escape_sequence; | |
3734 | |
3735 case ISO_single_shift_3: | |
88365 | 3736 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
3737 goto invalid_code; | |
17052 | 3738 /* SS2 is handled as an escape sequence of ESC 'O' */ |
3739 c1 = 'O'; | |
3740 goto label_escape_sequence; | |
3741 | |
3742 case ISO_control_sequence_introducer: | |
3743 /* CSI is handled as an escape sequence of ESC '[' ... */ | |
3744 c1 = '['; | |
3745 goto label_escape_sequence; | |
3746 | |
3747 case ISO_escape: | |
3748 ONE_MORE_BYTE (c1); | |
3749 label_escape_sequence: | |
88365 | 3750 /* Escape sequences handled here are invocation, |
17052 | 3751 designation, direction specification, and character |
3752 composition specification. */ | |
3753 switch (c1) | |
3754 { | |
3755 case '&': /* revision of following character set */ | |
3756 ONE_MORE_BYTE (c1); | |
3757 if (!(c1 >= '@' && c1 <= '~')) | |
88365 | 3758 goto invalid_code; |
17052 | 3759 ONE_MORE_BYTE (c1); |
3760 if (c1 != ISO_CODE_ESC) | |
88365 | 3761 goto invalid_code; |
17052 | 3762 ONE_MORE_BYTE (c1); |
3763 goto label_escape_sequence; | |
3764 | |
3765 case '$': /* designation of 2-byte character set */ | |
88365 | 3766 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
3767 goto invalid_code; | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3768 { |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3769 int reg, chars96; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3770 |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3771 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3772 if (c1 >= '@' && c1 <= 'B') |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3773 { /* designation of JISX0208.1978, GB2312.1980, |
23339
2da87b489590
(check_composing_code): Fix previous change. Now it
Kenichi Handa <handa@m17n.org>
parents:
23325
diff
changeset
|
3774 or JISX0208.1980 */ |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3775 reg = 0, chars96 = 0; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3776 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3777 else if (c1 >= 0x28 && c1 <= 0x2B) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3778 { /* designation of DIMENSION2_CHARS94 character set */ |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3779 reg = c1 - 0x28, chars96 = 0; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3780 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3781 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3782 else if (c1 >= 0x2C && c1 <= 0x2F) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3783 { /* designation of DIMENSION2_CHARS96 character set */ |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3784 reg = c1 - 0x2C, chars96 = 1; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3785 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3786 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3787 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3788 goto invalid_code; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3789 DECODE_DESIGNATION (reg, 2, chars96, c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3790 /* We must update these variables now. */ |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3791 if (reg == 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3792 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3793 else if (reg == 1) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3794 charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3795 if (chars96 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3796 goto invalid_code; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3797 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3798 continue; |
17052 | 3799 |
3800 case 'n': /* invocation of locking-shift-2 */ | |
88365 | 3801 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
3802 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
3803 goto invalid_code; | |
3804 CODING_ISO_INVOCATION (coding, 0) = 2; | |
3805 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3806 continue; |
17052 | 3807 |
3808 case 'o': /* invocation of locking-shift-3 */ | |
88365 | 3809 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
3810 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
3811 goto invalid_code; | |
3812 CODING_ISO_INVOCATION (coding, 0) = 3; | |
3813 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3814 continue; |
17052 | 3815 |
3816 case 'N': /* invocation of single-shift-2 */ | |
88365 | 3817 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
3818 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
3819 goto invalid_code; | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3820 charset_id_2 = CODING_ISO_DESIGNATION (coding, 2); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3821 if (charset_id_2 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3822 charset = CHARSET_FROM_ID (charset_ascii); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3823 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3824 charset = CHARSET_FROM_ID (charset_id_2); |
17052 | 3825 ONE_MORE_BYTE (c1); |
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
3826 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
88365 | 3827 goto invalid_code; |
17052 | 3828 break; |
3829 | |
3830 case 'O': /* invocation of single-shift-3 */ | |
88365 | 3831 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
3832 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
3833 goto invalid_code; | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3834 charset_id_3 = CODING_ISO_DESIGNATION (coding, 3); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3835 if (charset_id_3 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3836 charset = CHARSET_FROM_ID (charset_ascii); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3837 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3838 charset = CHARSET_FROM_ID (charset_id_3); |
17052 | 3839 ONE_MORE_BYTE (c1); |
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
3840 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
88365 | 3841 goto invalid_code; |
17052 | 3842 break; |
3843 | |
26847 | 3844 case '0': case '2': case '3': case '4': /* start composition */ |
88365 | 3845 if (! (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK)) |
3846 goto invalid_code; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3847 if (last_id != charset_ascii) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3848 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3849 ADD_CHARSET_DATA (charbuf, char_offset- last_offset, last_id); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3850 last_id = charset_ascii; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3851 last_offset = char_offset; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3852 } |
26847 | 3853 DECODE_COMPOSITION_START (c1); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3854 continue; |
17052 | 3855 |
26847 | 3856 case '1': /* end composition */ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3857 if (cmp_status->state == COMPOSING_NO) |
88365 | 3858 goto invalid_code; |
3859 DECODE_COMPOSITION_END (); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3860 continue; |
17052 | 3861 |
3862 case '[': /* specification of direction */ | |
88365 | 3863 if (! CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION) |
3864 goto invalid_code; | |
17052 | 3865 /* For the moment, nested direction is not supported. |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3866 So, `coding->mode & CODING_MODE_DIRECTION' zero means |
88365 | 3867 left-to-right, and nozero means right-to-left. */ |
17052 | 3868 ONE_MORE_BYTE (c1); |
3869 switch (c1) | |
3870 { | |
3871 case ']': /* end of the current direction */ | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3872 coding->mode &= ~CODING_MODE_DIRECTION; |
17052 | 3873 |
3874 case '0': /* end of the current direction */ | |
3875 case '1': /* start of left-to-right direction */ | |
3876 ONE_MORE_BYTE (c1); | |
3877 if (c1 == ']') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3878 coding->mode &= ~CODING_MODE_DIRECTION; |
17052 | 3879 else |
88365 | 3880 goto invalid_code; |
17052 | 3881 break; |
3882 | |
3883 case '2': /* start of right-to-left direction */ | |
3884 ONE_MORE_BYTE (c1); | |
3885 if (c1 == ']') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3886 coding->mode |= CODING_MODE_DIRECTION; |
17052 | 3887 else |
88365 | 3888 goto invalid_code; |
17052 | 3889 break; |
3890 | |
3891 default: | |
88365 | 3892 goto invalid_code; |
17052 | 3893 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3894 continue; |
17052 | 3895 |
51311 | 3896 case '%': |
3897 ONE_MORE_BYTE (c1); | |
3898 if (c1 == '/') | |
3899 { | |
3900 /* CTEXT extended segment: | |
3901 ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES-- | |
3902 We keep these bytes as is for the moment. | |
3903 They may be decoded by post-read-conversion. */ | |
3904 int dim, M, L; | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3905 int size; |
56191 | 3906 |
51311 | 3907 ONE_MORE_BYTE (dim); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3908 if (dim < 0 || dim > 4) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3909 goto invalid_code; |
51311 | 3910 ONE_MORE_BYTE (M); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3911 if (M < 128) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3912 goto invalid_code; |
51311 | 3913 ONE_MORE_BYTE (L); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3914 if (L < 128) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3915 goto invalid_code; |
51311 | 3916 size = ((M - 128) * 128) + (L - 128); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3917 if (charbuf + 6 > charbuf_end) |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3918 goto break_loop; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3919 *charbuf++ = ISO_CODE_ESC; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3920 *charbuf++ = '%'; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3921 *charbuf++ = '/'; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3922 *charbuf++ = dim; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3923 *charbuf++ = BYTE8_TO_CHAR (M); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3924 *charbuf++ = BYTE8_TO_CHAR (L); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3925 CODING_ISO_EXTSEGMENT_LEN (coding) = size; |
51311 | 3926 } |
3927 else if (c1 == 'G') | |
3928 { | |
3929 /* XFree86 extension for embedding UTF-8 in CTEXT: | |
3930 ESC % G --UTF-8-BYTES-- ESC % @ | |
3931 We keep these bytes as is for the moment. | |
3932 They may be decoded by post-read-conversion. */ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3933 if (charbuf + 3 > charbuf_end) |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3934 goto break_loop; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3935 *charbuf++ = ISO_CODE_ESC; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3936 *charbuf++ = '%'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3937 *charbuf++ = 'G'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3938 CODING_ISO_EMBEDDED_UTF_8 (coding) = 1; |
51311 | 3939 } |
3940 else | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3941 goto invalid_code; |
51311 | 3942 continue; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3943 break; |
51311 | 3944 |
17052 | 3945 default: |
88365 | 3946 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
3947 goto invalid_code; | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3948 { |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3949 int reg, chars96; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3950 |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3951 if (c1 >= 0x28 && c1 <= 0x2B) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3952 { /* designation of DIMENSION1_CHARS94 character set */ |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3953 reg = c1 - 0x28, chars96 = 0; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3954 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3955 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3956 else if (c1 >= 0x2C && c1 <= 0x2F) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3957 { /* designation of DIMENSION1_CHARS96 character set */ |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3958 reg = c1 - 0x2C, chars96 = 1; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3959 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3960 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3961 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3962 goto invalid_code; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3963 DECODE_DESIGNATION (reg, 1, chars96, c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3964 /* We must update these variables now. */ |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3965 if (reg == 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3966 charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3967 else if (reg == 1) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3968 charset_id_1 = CODING_ISO_INVOKED_CHARSET (coding, 1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3969 if (chars96 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3970 goto invalid_code; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3971 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3972 continue; |
17052 | 3973 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3974 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3975 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3976 if (cmp_status->state == COMPOSING_NO |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3977 && charset->id != charset_ascii |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3978 && last_id != charset->id) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3979 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3980 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
3981 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3982 last_id = charset->id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3983 last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3984 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3985 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3986 /* Now we know CHARSET and 1st position code C1 of a character. |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3987 Produce a decoded character while getting 2nd and 3rd |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3988 position codes C2, C3 if necessary. */ |
88365 | 3989 if (CHARSET_DIMENSION (charset) > 1) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3990 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3991 ONE_MORE_BYTE (c2); |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3992 if (c2 < 0x20 || (c2 >= 0x80 && c2 < 0xA0) |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3993 || ((c1 & 0x80) != (c2 & 0x80))) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3994 /* C2 is not in a valid range. */ |
88365 | 3995 goto invalid_code; |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3996 if (CHARSET_DIMENSION (charset) == 2) |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3997 c1 = (c1 << 8) | c2; |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3998 else |
88365 | 3999 { |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4000 ONE_MORE_BYTE (c3); |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4001 if (c3 < 0x20 || (c3 >= 0x80 && c3 < 0xA0) |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4002 || ((c1 & 0x80) != (c3 & 0x80))) |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4003 /* C3 is not in a valid range. */ |
88365 | 4004 goto invalid_code; |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4005 c1 = (c1 << 16) | (c2 << 8) | c2; |
88365 | 4006 } |
17052 | 4007 } |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4008 c1 &= 0x7F7F7F; |
88365 | 4009 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c1, c); |
4010 if (c < 0) | |
4011 { | |
4012 MAYBE_FINISH_COMPOSITION (); | |
4013 for (; src_base < src; src_base++, char_offset++) | |
4014 { | |
4015 if (ASCII_BYTE_P (*src_base)) | |
4016 *charbuf++ = *src_base; | |
4017 else | |
4018 *charbuf++ = BYTE8_TO_CHAR (*src_base); | |
4019 } | |
4020 } | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4021 else if (cmp_status->state == COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4022 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4023 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4024 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4025 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4026 else if ((cmp_status->state == COMPOSING_CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4027 ? cmp_status->nchars |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4028 : cmp_status->ncomps) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4029 >= MAX_COMPOSITION_COMPONENTS) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4030 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4031 /* Too long composition. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4032 MAYBE_FINISH_COMPOSITION (); |
88365 | 4033 *charbuf++ = c; |
4034 char_offset++; | |
4035 } | |
4036 else | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4037 STORE_COMPOSITION_CHAR (c); |
17052 | 4038 continue; |
4039 | |
88365 | 4040 invalid_code: |
4041 MAYBE_FINISH_COMPOSITION (); | |
4042 src = src_base; | |
4043 consumed_chars = consumed_chars_base; | |
4044 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4045 *charbuf++ = c < 0 ? -c : ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4046 char_offset++; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4047 coding->errors++; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
4048 continue; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
4049 |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
4050 break_loop: |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
4051 break; |
88365 | 4052 } |
4053 | |
4054 no_more_source: | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4055 if (cmp_status->state != COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4056 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4057 if (coding->mode & CODING_MODE_LAST_BLOCK) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4058 MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4059 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4060 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4061 charbuf -= cmp_status->length; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4062 for (i = 0; i < cmp_status->length; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4063 cmp_status->carryover[i] = charbuf[i]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4064 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4065 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4066 else if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4067 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 4068 coding->consumed_char += consumed_chars_base; |
4069 coding->consumed = src_base - coding->source; | |
4070 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 4071 } |
4072 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4073 |
18766 | 4074 /* ISO2022 encoding stuff. */ |
17052 | 4075 |
4076 /* | |
18766 | 4077 It is not enough to say just "ISO2022" on encoding, we have to |
88365 | 4078 specify more details. In Emacs, each coding system of ISO2022 |
17052 | 4079 variant has the following specifications: |
88365 | 4080 1. Initial designation to G0 thru G3. |
17052 | 4081 2. Allows short-form designation? |
4082 3. ASCII should be designated to G0 before control characters? | |
4083 4. ASCII should be designated to G0 at end of line? | |
4084 5. 7-bit environment or 8-bit environment? | |
4085 6. Use locking-shift? | |
4086 7. Use Single-shift? | |
4087 And the following two are only for Japanese: | |
4088 8. Use ASCII in place of JIS0201-1976-Roman? | |
4089 9. Use JISX0208-1983 in place of JISX0208-1978? | |
88365 | 4090 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits |
4091 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more | |
18766 | 4092 details. |
17052 | 4093 */ |
4094 | |
4095 /* Produce codes (escape sequence) for designating CHARSET to graphic | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4096 register REG at DST, and increment DST. If <final-char> of CHARSET is |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4097 '@', 'A', or 'B' and the coding system CODING allows, produce |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4098 designation sequence of short-form. */ |
17052 | 4099 |
4100 #define ENCODE_DESIGNATION(charset, reg, coding) \ | |
4101 do { \ | |
88365 | 4102 unsigned char final_char = CHARSET_ISO_FINAL (charset); \ |
17052 | 4103 char *intermediate_char_94 = "()*+"; \ |
4104 char *intermediate_char_96 = ",-./"; \ | |
88365 | 4105 int revision = -1; \ |
4106 int c; \ | |
4107 \ | |
4108 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \ | |
88856 | 4109 revision = CHARSET_ISO_REVISION (charset); \ |
88365 | 4110 \ |
4111 if (revision >= 0) \ | |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
4112 { \ |
88365 | 4113 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \ |
4114 EMIT_ONE_BYTE ('@' + revision); \ | |
17052 | 4115 } \ |
88365 | 4116 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \ |
17052 | 4117 if (CHARSET_DIMENSION (charset) == 1) \ |
4118 { \ | |
88365 | 4119 if (! CHARSET_ISO_CHARS_96 (charset)) \ |
4120 c = intermediate_char_94[reg]; \ | |
17052 | 4121 else \ |
88365 | 4122 c = intermediate_char_96[reg]; \ |
4123 EMIT_ONE_ASCII_BYTE (c); \ | |
17052 | 4124 } \ |
4125 else \ | |
4126 { \ | |
88365 | 4127 EMIT_ONE_ASCII_BYTE ('$'); \ |
4128 if (! CHARSET_ISO_CHARS_96 (charset)) \ | |
17052 | 4129 { \ |
88365 | 4130 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LONG_FORM \ |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4131 || reg != 0 \ |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4132 || final_char < '@' || final_char > 'B') \ |
88365 | 4133 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \ |
17052 | 4134 } \ |
4135 else \ | |
88365 | 4136 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \ |
17052 | 4137 } \ |
88365 | 4138 EMIT_ONE_ASCII_BYTE (final_char); \ |
4139 \ | |
4140 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \ | |
17052 | 4141 } while (0) |
4142 | |
88365 | 4143 |
17052 | 4144 /* The following two macros produce codes (control character or escape |
4145 sequence) for ISO2022 single-shift functions (single-shift-2 and | |
4146 single-shift-3). */ | |
4147 | |
88365 | 4148 #define ENCODE_SINGLE_SHIFT_2 \ |
4149 do { \ | |
4150 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
4151 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \ | |
4152 else \ | |
4153 EMIT_ONE_BYTE (ISO_CODE_SS2); \ | |
4154 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
17052 | 4155 } while (0) |
4156 | |
88365 | 4157 |
4158 #define ENCODE_SINGLE_SHIFT_3 \ | |
4159 do { \ | |
4160 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
4161 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \ | |
4162 else \ | |
4163 EMIT_ONE_BYTE (ISO_CODE_SS3); \ | |
4164 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
17052 | 4165 } while (0) |
4166 | |
88365 | 4167 |
17052 | 4168 /* The following four macros produce codes (control character or |
4169 escape sequence) for ISO2022 locking-shift functions (shift-in, | |
4170 shift-out, locking-shift-2, and locking-shift-3). */ | |
4171 | |
88365 | 4172 #define ENCODE_SHIFT_IN \ |
4173 do { \ | |
4174 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \ | |
4175 CODING_ISO_INVOCATION (coding, 0) = 0; \ | |
17052 | 4176 } while (0) |
4177 | |
88365 | 4178 |
4179 #define ENCODE_SHIFT_OUT \ | |
4180 do { \ | |
4181 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \ | |
4182 CODING_ISO_INVOCATION (coding, 0) = 1; \ | |
17052 | 4183 } while (0) |
4184 | |
88365 | 4185 |
4186 #define ENCODE_LOCKING_SHIFT_2 \ | |
4187 do { \ | |
4188 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
4189 CODING_ISO_INVOCATION (coding, 0) = 2; \ | |
17052 | 4190 } while (0) |
4191 | |
88365 | 4192 |
4193 #define ENCODE_LOCKING_SHIFT_3 \ | |
4194 do { \ | |
4195 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
4196 CODING_ISO_INVOCATION (coding, 0) = 3; \ | |
17052 | 4197 } while (0) |
4198 | |
88365 | 4199 |
18766 | 4200 /* Produce codes for a DIMENSION1 character whose character set is |
4201 CHARSET and whose position-code is C1. Designation and invocation | |
17052 | 4202 sequences are also produced in advance if necessary. */ |
4203 | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4204 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4205 do { \ |
88365 | 4206 int id = CHARSET_ID (charset); \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4207 \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4208 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_ROMAN) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4209 && id == charset_ascii) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4210 { \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4211 id = charset_jisx0201_roman; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4212 charset = CHARSET_FROM_ID (id); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4213 } \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4214 \ |
88365 | 4215 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4216 { \ |
88365 | 4217 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ |
4218 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4219 else \ |
88365 | 4220 EMIT_ONE_BYTE (c1 | 0x80); \ |
4221 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4222 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4223 } \ |
88365 | 4224 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4225 { \ |
88365 | 4226 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4227 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4228 } \ |
88365 | 4229 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4230 { \ |
88365 | 4231 EMIT_ONE_BYTE (c1 | 0x80); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4232 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4233 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4234 else \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4235 /* 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
|
4236 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
|
4237 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
|
4238 character. */ \ |
88365 | 4239 dst = encode_invocation_designation (charset, coding, dst, \ |
4240 &produced_chars); \ | |
17052 | 4241 } while (1) |
4242 | |
88365 | 4243 |
4244 /* Produce codes for a DIMENSION2 character whose character set is | |
4245 CHARSET and whose position-codes are C1 and C2. Designation and | |
4246 invocation codes are also produced in advance if necessary. */ | |
4247 | |
4248 #define ENCODE_ISO_CHARACTER_DIMENSION2(charset, c1, c2) \ | |
24506
219c99669e4b
(ENCODE_ISO_CHARACTER): Check validity of CHARSET. If
Kenichi Handa <handa@m17n.org>
parents:
24460
diff
changeset
|
4249 do { \ |
88365 | 4250 int id = CHARSET_ID (charset); \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4251 \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4252 if ((CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_USE_OLDJIS) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4253 && id == charset_jisx0208) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4254 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4255 id = charset_jisx0208_1978; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4256 charset = CHARSET_FROM_ID (id); \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4257 } \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4258 \ |
88365 | 4259 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ |
4260 { \ | |
4261 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
4262 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
4263 else \ | |
4264 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
4265 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
4266 break; \ | |
4267 } \ | |
4268 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \ | |
4269 { \ | |
4270 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
4271 break; \ | |
4272 } \ | |
4273 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \ | |
4274 { \ | |
4275 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
4276 break; \ | |
4277 } \ | |
4278 else \ | |
4279 /* Since CHARSET is not yet invoked to any graphic planes, we \ | |
4280 must invoke it, or, at first, designate it to some graphic \ | |
4281 register. Then repeat the loop to actually produce the \ | |
4282 character. */ \ | |
4283 dst = encode_invocation_designation (charset, coding, dst, \ | |
4284 &produced_chars); \ | |
4285 } while (1) | |
4286 | |
4287 | |
4288 #define ENCODE_ISO_CHARACTER(charset, c) \ | |
4289 do { \ | |
4290 int code = ENCODE_CHAR ((charset),(c)); \ | |
4291 \ | |
4292 if (CHARSET_DIMENSION (charset) == 1) \ | |
4293 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \ | |
4294 else \ | |
4295 ENCODE_ISO_CHARACTER_DIMENSION2 ((charset), code >> 8, code & 0xFF); \ | |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
4296 } while (0) |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4297 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
4298 |
17052 | 4299 /* Produce designation and invocation codes at a place pointed by DST |
88365 | 4300 to use CHARSET. The element `spec.iso_2022' of *CODING is updated. |
17052 | 4301 Return new DST. */ |
4302 | |
4303 unsigned char * | |
88365 | 4304 encode_invocation_designation (charset, coding, dst, p_nchars) |
4305 struct charset *charset; | |
17052 | 4306 struct coding_system *coding; |
4307 unsigned char *dst; | |
88365 | 4308 int *p_nchars; |
17052 | 4309 { |
88365 | 4310 int multibytep = coding->dst_multibyte; |
4311 int produced_chars = *p_nchars; | |
17052 | 4312 int reg; /* graphic register number */ |
88365 | 4313 int id = CHARSET_ID (charset); |
17052 | 4314 |
4315 /* At first, check designations. */ | |
4316 for (reg = 0; reg < 4; reg++) | |
88365 | 4317 if (id == CODING_ISO_DESIGNATION (coding, reg)) |
17052 | 4318 break; |
4319 | |
4320 if (reg >= 4) | |
4321 { | |
4322 /* CHARSET is not yet designated to any graphic registers. */ | |
4323 /* At first check the requested designation. */ | |
88365 | 4324 reg = CODING_ISO_REQUEST (coding, id); |
4325 if (reg < 0) | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
4326 /* Since CHARSET requests no special designation, designate it |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
4327 to graphic register 0. */ |
17052 | 4328 reg = 0; |
4329 | |
4330 ENCODE_DESIGNATION (charset, reg, coding); | |
4331 } | |
4332 | |
88365 | 4333 if (CODING_ISO_INVOCATION (coding, 0) != reg |
4334 && CODING_ISO_INVOCATION (coding, 1) != reg) | |
17052 | 4335 { |
4336 /* Since the graphic register REG is not invoked to any graphic | |
4337 planes, invoke it to graphic plane 0. */ | |
4338 switch (reg) | |
4339 { | |
4340 case 0: /* graphic register 0 */ | |
4341 ENCODE_SHIFT_IN; | |
4342 break; | |
4343 | |
4344 case 1: /* graphic register 1 */ | |
4345 ENCODE_SHIFT_OUT; | |
4346 break; | |
4347 | |
4348 case 2: /* graphic register 2 */ | |
88365 | 4349 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
17052 | 4350 ENCODE_SINGLE_SHIFT_2; |
4351 else | |
4352 ENCODE_LOCKING_SHIFT_2; | |
4353 break; | |
4354 | |
4355 case 3: /* graphic register 3 */ | |
88365 | 4356 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
17052 | 4357 ENCODE_SINGLE_SHIFT_3; |
4358 else | |
4359 ENCODE_LOCKING_SHIFT_3; | |
4360 break; | |
4361 } | |
4362 } | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4363 |
88365 | 4364 *p_nchars = produced_chars; |
17052 | 4365 return dst; |
4366 } | |
4367 | |
4368 /* The following three macros produce codes for indicating direction | |
4369 of text. */ | |
88365 | 4370 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \ |
4371 do { \ | |
4372 if (CODING_ISO_FLAGS (coding) == CODING_ISO_FLAG_SEVEN_BITS) \ | |
4373 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '['); \ | |
4374 else \ | |
4375 EMIT_ONE_BYTE (ISO_CODE_CSI); \ | |
17052 | 4376 } while (0) |
4377 | |
88365 | 4378 |
4379 #define ENCODE_DIRECTION_R2L() \ | |
4380 do { \ | |
4381 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
4382 EMIT_TWO_ASCII_BYTES ('2', ']'); \ | |
4383 } while (0) | |
4384 | |
4385 | |
4386 #define ENCODE_DIRECTION_L2R() \ | |
4387 do { \ | |
4388 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
4389 EMIT_TWO_ASCII_BYTES ('0', ']'); \ | |
4390 } while (0) | |
4391 | |
17052 | 4392 |
4393 /* Produce codes for designation and invocation to reset the graphic | |
4394 planes and registers to initial state. */ | |
88365 | 4395 #define ENCODE_RESET_PLANE_AND_REGISTER() \ |
4396 do { \ | |
4397 int reg; \ | |
4398 struct charset *charset; \ | |
4399 \ | |
4400 if (CODING_ISO_INVOCATION (coding, 0) != 0) \ | |
4401 ENCODE_SHIFT_IN; \ | |
4402 for (reg = 0; reg < 4; reg++) \ | |
4403 if (CODING_ISO_INITIAL (coding, reg) >= 0 \ | |
4404 && (CODING_ISO_DESIGNATION (coding, reg) \ | |
4405 != CODING_ISO_INITIAL (coding, reg))) \ | |
4406 { \ | |
4407 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \ | |
4408 ENCODE_DESIGNATION (charset, reg, coding); \ | |
4409 } \ | |
17052 | 4410 } while (0) |
4411 | |
88365 | 4412 |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4413 /* Produce designation sequences of charsets in the line started from |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4414 SRC to a place pointed by DST, and return updated DST. |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4415 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4416 If the current block ends before any end-of-line, we may fail to |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4417 find all the necessary designations. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4418 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4419 static unsigned char * |
88365 | 4420 encode_designation_at_bol (coding, charbuf, charbuf_end, dst) |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4421 struct coding_system *coding; |
88365 | 4422 int *charbuf, *charbuf_end; |
59168
0345f2b10f1d
(decode_coding_XXX, decode_composition_emacs_mule)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
59095
diff
changeset
|
4423 unsigned char *dst; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4424 { |
88365 | 4425 struct charset *charset; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4426 /* 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
|
4427 int r[4]; |
88365 | 4428 int c, found = 0, reg; |
4429 int produced_chars = 0; | |
4430 int multibytep = coding->dst_multibyte; | |
4431 Lisp_Object attrs; | |
4432 Lisp_Object charset_list; | |
4433 | |
4434 attrs = CODING_ID_ATTRS (coding->id); | |
4435 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
4436 if (EQ (charset_list, Qiso_2022)) | |
4437 charset_list = Viso_2022_charset_list; | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4438 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4439 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4440 r[reg] = -1; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4441 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4442 while (found < 4) |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4443 { |
88365 | 4444 int id; |
4445 | |
4446 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4447 if (c == '\n') |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4448 break; |
88365 | 4449 charset = char_charset (c, charset_list, NULL); |
4450 id = CHARSET_ID (charset); | |
4451 reg = CODING_ISO_REQUEST (coding, id); | |
4452 if (reg >= 0 && r[reg] < 0) | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4453 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4454 found++; |
88365 | 4455 r[reg] = id; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4456 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4457 } |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4458 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4459 if (found) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4460 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4461 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4462 if (r[reg] >= 0 |
88365 | 4463 && CODING_ISO_DESIGNATION (coding, reg) != r[reg]) |
4464 ENCODE_DESIGNATION (CHARSET_FROM_ID (r[reg]), reg, coding); | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4465 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4466 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4467 return dst; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4468 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4469 |
17052 | 4470 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */ |
4471 | |
88365 | 4472 static int |
4473 encode_coding_iso_2022 (coding) | |
17052 | 4474 struct coding_system *coding; |
4475 { | |
88365 | 4476 int multibytep = coding->dst_multibyte; |
4477 int *charbuf = coding->charbuf; | |
4478 int *charbuf_end = charbuf + coding->charbuf_used; | |
4479 unsigned char *dst = coding->destination + coding->produced; | |
4480 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4481 int safe_room = 16; | |
4482 int bol_designation | |
4483 = (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL | |
4484 && CODING_ISO_BOL (coding)); | |
4485 int produced_chars = 0; | |
4486 Lisp_Object attrs, eol_type, charset_list; | |
4487 int ascii_compatible; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4488 int c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4489 int preferred_charset_id = -1; |
88365 | 4490 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4491 CODING_GET_INFO (coding, attrs, charset_list); |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
4492 eol_type = inhibit_eol_conversion ? Qunix : CODING_ID_EOL_TYPE (coding->id); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4493 if (VECTORP (eol_type)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4494 eol_type = Qunix; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4495 |
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
4496 setup_iso_safe_charsets (attrs); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4497 /* Charset list may have been changed. */ |
90772
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4498 charset_list = CODING_ATTR_CHARSET_LIST (attrs); |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
4499 coding->safe_charsets = SDATA (CODING_ATTR_SAFE_CHARSETS (attrs)); |
88365 | 4500 |
4501 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
4502 | |
4503 while (charbuf < charbuf_end) | |
4504 { | |
4505 ASSURE_DESTINATION (safe_room); | |
4506 | |
4507 if (bol_designation) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4508 { |
88365 | 4509 unsigned char *dst_prev = dst; |
4510 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4511 /* We have to produce designation sequences if any now. */ |
88365 | 4512 dst = encode_designation_at_bol (coding, charbuf, charbuf_end, dst); |
4513 bol_designation = 0; | |
4514 /* We are sure that designation sequences are all ASCII bytes. */ | |
4515 produced_chars += dst - dst_prev; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4516 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4517 |
88365 | 4518 c = *charbuf++; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4519 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4520 if (c < 0) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4521 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4522 /* Handle an annotation. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4523 switch (*charbuf) |
17052 | 4524 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4525 case CODING_ANNOTATE_COMPOSITION_MASK: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4526 /* Not yet implemented. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4527 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4528 case CODING_ANNOTATE_CHARSET_MASK: |
90014
ade0c9a12f99
(encode_coding_iso_2022): Fix handling of charset
Kenichi Handa <handa@m17n.org>
parents:
90011
diff
changeset
|
4529 preferred_charset_id = charbuf[2]; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4530 if (preferred_charset_id >= 0 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4531 && NILP (Fmemq (make_number (preferred_charset_id), |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4532 charset_list))) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4533 preferred_charset_id = -1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4534 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4535 default: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4536 abort (); |
26847 | 4537 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4538 charbuf += -c - 1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4539 continue; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4540 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4541 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4542 /* Now encode the character C. */ |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4543 if (c < 0x20 || c == 0x7F) |
17052 | 4544 { |
88365 | 4545 if (c == '\n' |
4546 || (c == '\r' && EQ (eol_type, Qmac))) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4547 { |
88365 | 4548 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) |
4549 ENCODE_RESET_PLANE_AND_REGISTER (); | |
4550 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_INIT_AT_BOL) | |
4551 { | |
4552 int i; | |
4553 | |
4554 for (i = 0; i < 4; i++) | |
4555 CODING_ISO_DESIGNATION (coding, i) | |
4556 = CODING_ISO_INITIAL (coding, i); | |
4557 } | |
4558 bol_designation | |
4559 = CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL; | |
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
4560 } |
88365 | 4561 else if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_CNTL) |
4562 ENCODE_RESET_PLANE_AND_REGISTER (); | |
4563 EMIT_ONE_ASCII_BYTE (c); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4564 } |
88365 | 4565 else if (ASCII_CHAR_P (c)) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4566 { |
88365 | 4567 if (ascii_compatible) |
4568 EMIT_ONE_ASCII_BYTE (c); | |
4569 else | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4570 { |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4571 struct charset *charset = CHARSET_FROM_ID (charset_ascii); |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4572 ENCODE_ISO_CHARACTER (charset, c); |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4573 } |
17052 | 4574 } |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4575 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4576 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4577 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4578 EMIT_ONE_BYTE (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4579 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4580 else |
88365 | 4581 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4582 struct charset *charset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4583 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4584 if (preferred_charset_id >= 0) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4585 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4586 charset = CHARSET_FROM_ID (preferred_charset_id); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4587 if (! CHAR_CHARSET_P (c, charset)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4588 charset = char_charset (c, charset_list, NULL); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4589 } |
42104
d69c2368e549
(DECODE_COMPOSITION_END): Fixed a typo in the last
Sam Steingold <sds@gnu.org>
parents:
42103
diff
changeset
|
4590 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4591 charset = char_charset (c, charset_list, NULL); |
88365 | 4592 if (!charset) |
17052 | 4593 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4594 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4595 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4596 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4597 charset = CHARSET_FROM_ID (charset_ascii); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4598 } |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4599 else |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4600 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4601 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4602 charset = char_charset (c, charset_list, NULL); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4603 } |
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
4604 } |
88365 | 4605 ENCODE_ISO_CHARACTER (charset, c); |
4606 } | |
4607 } | |
4608 | |
4609 if (coding->mode & CODING_MODE_LAST_BLOCK | |
4610 && CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) | |
4611 { | |
4612 ASSURE_DESTINATION (safe_room); | |
4613 ENCODE_RESET_PLANE_AND_REGISTER (); | |
4614 } | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4615 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 4616 CODING_ISO_BOL (coding) = bol_designation; |
4617 coding->produced_char += produced_chars; | |
4618 coding->produced = dst - coding->destination; | |
4619 return 0; | |
17052 | 4620 } |
4621 | |
4622 | |
88365 | 4623 /*** 8,9. SJIS and BIG5 handlers ***/ |
4624 | |
4625 /* Although SJIS and BIG5 are not ISO's coding system, they are used | |
17052 | 4626 quite widely. So, for the moment, Emacs supports them in the bare |
4627 C code. But, in the future, they may be supported only by CCL. */ | |
4628 | |
4629 /* SJIS is a coding system encoding three character sets: ASCII, right | |
4630 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded | |
4631 as is. A character of charset katakana-jisx0201 is encoded by | |
4632 "position-code + 0x80". A character of charset japanese-jisx0208 | |
4633 is encoded in 2-byte but two position-codes are divided and shifted | |
88365 | 4634 so that it fit in the range below. |
17052 | 4635 |
4636 --- CODE RANGE of SJIS --- | |
4637 (character set) (range) | |
4638 ASCII 0x00 .. 0x7F | |
88365 | 4639 KATAKANA-JISX0201 0xA0 .. 0xDF |
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
4640 JISX0208 (1st byte) 0x81 .. 0x9F and 0xE0 .. 0xEF |
23564
6eb3e346d1fd
(DECODE_CHARACTER_ASCII): Check validity of inserted
Kenichi Handa <handa@m17n.org>
parents:
23542
diff
changeset
|
4641 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC |
17052 | 4642 ------------------------------- |
4643 | |
4644 */ | |
4645 | |
4646 /* BIG5 is a coding system encoding two character sets: ASCII and | |
4647 Big5. An ASCII character is encoded as is. Big5 is a two-byte | |
88365 | 4648 character set and is encoded in two-byte. |
17052 | 4649 |
4650 --- CODE RANGE of BIG5 --- | |
4651 (character set) (range) | |
4652 ASCII 0x00 .. 0x7F | |
4653 Big5 (1st byte) 0xA1 .. 0xFE | |
4654 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE | |
4655 -------------------------- | |
4656 | |
88365 | 4657 */ |
17052 | 4658 |
4659 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
4660 Check if a text is encoded in SJIS. If it is, return | |
88365 | 4661 CATEGORY_MASK_SJIS, else return 0. */ |
17052 | 4662 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
4663 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4664 detect_coding_sjis (coding, detect_info) |
88365 | 4665 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4666 struct coding_detection_info *detect_info; |
17052 | 4667 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4668 const unsigned char *src = coding->source, *src_base; |
89483 | 4669 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 4670 int multibytep = coding->src_multibyte; |
4671 int consumed_chars = 0; | |
4672 int found = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4673 int c; |
103762
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4674 Lisp_Object attrs, charset_list; |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4675 int max_first_byte_of_2_byte_code; |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4676 |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4677 CODING_GET_INFO (coding, attrs, charset_list); |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4678 max_first_byte_of_2_byte_code |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4679 = (XINT (Flength (charset_list)) > 3 ? 0xFC : 0xEF); |
88365 | 4680 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4681 detect_info->checked |= CATEGORY_MASK_SJIS; |
88365 | 4682 /* A coding system of this category is always ASCII compatible. */ |
4683 src += coding->head_ascii; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4684 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4685 while (1) |
17052 | 4686 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4687 src_base = src; |
88365 | 4688 ONE_MORE_BYTE (c); |
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
4689 if (c < 0x80) |
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
4690 continue; |
103762
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4691 if ((c >= 0x81 && c <= 0x9F) |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4692 || (c >= 0xE0 && c <= max_first_byte_of_2_byte_code)) |
17052 | 4693 { |
88365 | 4694 ONE_MORE_BYTE (c); |
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
4695 if (c < 0x40 || c == 0x7F || c > 0xFC) |
88365 | 4696 break; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4697 found = CATEGORY_MASK_SJIS; |
17052 | 4698 } |
88365 | 4699 else if (c >= 0xA0 && c < 0xE0) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4700 found = CATEGORY_MASK_SJIS; |
88365 | 4701 else |
4702 break; | |
4703 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4704 detect_info->rejected |= CATEGORY_MASK_SJIS; |
88365 | 4705 return 0; |
4706 | |
4707 no_more_source: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4708 if (src_base < src && coding->mode & CODING_MODE_LAST_BLOCK) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4709 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4710 detect_info->rejected |= CATEGORY_MASK_SJIS; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4711 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4712 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4713 detect_info->found |= found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4714 return 1; |
17052 | 4715 } |
4716 | |
4717 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
4718 Check if a text is encoded in BIG5. If it is, return | |
88365 | 4719 CATEGORY_MASK_BIG5, else return 0. */ |
17052 | 4720 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
4721 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4722 detect_coding_big5 (coding, detect_info) |
88365 | 4723 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4724 struct coding_detection_info *detect_info; |
17052 | 4725 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4726 const unsigned char *src = coding->source, *src_base; |
89483 | 4727 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 4728 int multibytep = coding->src_multibyte; |
4729 int consumed_chars = 0; | |
4730 int found = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4731 int c; |
88365 | 4732 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4733 detect_info->checked |= CATEGORY_MASK_BIG5; |
88365 | 4734 /* A coding system of this category is always ASCII compatible. */ |
4735 src += coding->head_ascii; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4736 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4737 while (1) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4738 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4739 src_base = src; |
88365 | 4740 ONE_MORE_BYTE (c); |
4741 if (c < 0x80) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4742 continue; |
88365 | 4743 if (c >= 0xA1) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4744 { |
88365 | 4745 ONE_MORE_BYTE (c); |
4746 if (c < 0x40 || (c >= 0x7F && c <= 0xA0)) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4747 return 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4748 found = CATEGORY_MASK_BIG5; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4749 } |
88365 | 4750 else |
4751 break; | |
4752 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4753 detect_info->rejected |= CATEGORY_MASK_BIG5; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4754 return 0; |
88365 | 4755 |
4756 no_more_source: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4757 if (src_base < src && coding->mode & CODING_MODE_LAST_BLOCK) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4758 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4759 detect_info->rejected |= CATEGORY_MASK_BIG5; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4760 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4761 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4762 detect_info->found |= found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4763 return 1; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4764 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4765 |
17052 | 4766 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". |
4767 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */ | |
4768 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4769 static void |
88365 | 4770 decode_coding_sjis (coding) |
17052 | 4771 struct coding_system *coding; |
4772 { | |
89483 | 4773 const unsigned char *src = coding->source + coding->consumed; |
4774 const unsigned char *src_end = coding->source + coding->src_bytes; | |
59168
0345f2b10f1d
(decode_coding_XXX, decode_composition_emacs_mule)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
59095
diff
changeset
|
4775 const unsigned char *src_base; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4776 int *charbuf = coding->charbuf + coding->charbuf_used; |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
4777 /* We may produce one charset annocation in one loop and one more at |
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
4778 the end. */ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4779 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
4780 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2); |
88365 | 4781 int consumed_chars = 0, consumed_chars_base; |
4782 int multibytep = coding->src_multibyte; | |
4783 struct charset *charset_roman, *charset_kanji, *charset_kana; | |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4784 struct charset *charset_kanji2; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4785 Lisp_Object attrs, charset_list, val; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4786 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4787 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4788 int last_id = charset_ascii; |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
4789 int eol_crlf = |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
4790 !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4791 int byte_after_cr = -1; |
88365 | 4792 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4793 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 4794 |
4795 val = charset_list; | |
4796 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4797 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4798 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4799 charset_kanji2 = NILP (val) ? NULL : CHARSET_FROM_ID (XINT (XCAR (val))); |
88365 | 4800 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4801 while (1) |
17052 | 4802 { |
88365 | 4803 int c, c1; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4804 struct charset *charset; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4805 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4806 src_base = src; |
88365 | 4807 consumed_chars_base = consumed_chars; |
4808 | |
4809 if (charbuf >= charbuf_end) | |
100936
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4810 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4811 if (byte_after_cr >= 0) |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4812 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4813 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4814 } |
88365 | 4815 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4816 if (byte_after_cr >= 0) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4817 c = byte_after_cr, byte_after_cr = -1; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4818 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4819 ONE_MORE_BYTE (c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4820 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4821 goto invalid_code; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4822 if (c < 0x80) |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4823 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4824 if (eol_crlf && c == '\r') |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4825 ONE_MORE_BYTE (byte_after_cr); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4826 charset = charset_roman; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4827 } |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4828 else if (c == 0x80 || c == 0xA0) |
89730
d8fcefca5cf6
(decode_coding_sjis): Check the first byte rigidly.
Kenichi Handa <handa@m17n.org>
parents:
89686
diff
changeset
|
4829 goto invalid_code; |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4830 else if (c >= 0xA1 && c <= 0xDF) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4831 { |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4832 /* SJIS -> JISX0201-Kana */ |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4833 c &= 0x7F; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4834 charset = charset_kana; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4835 } |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4836 else if (c <= 0xEF) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4837 { |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4838 /* SJIS -> JISX0208 */ |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4839 ONE_MORE_BYTE (c1); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4840 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4841 goto invalid_code; |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4842 c = (c << 8) | c1; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4843 SJIS_TO_JIS (c); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4844 charset = charset_kanji; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4845 } |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4846 else if (c <= 0xFC && charset_kanji2) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4847 { |
89779
74c503490829
(decode_coding_sjis): Fix comment.
Kenichi Handa <handa@m17n.org>
parents:
89764
diff
changeset
|
4848 /* SJIS -> JISX0213-2 */ |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4849 ONE_MORE_BYTE (c1); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4850 if (c1 < 0x40 || c1 == 0x7F || c1 > 0xFC) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4851 goto invalid_code; |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4852 c = (c << 8) | c1; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4853 SJIS_TO_JIS2 (c); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4854 charset = charset_kanji2; |
17052 | 4855 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4856 else |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4857 goto invalid_code; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4858 if (charset->id != charset_ascii |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4859 && last_id != charset->id) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4860 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4861 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4862 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4863 last_id = charset->id; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4864 last_offset = char_offset; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4865 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4866 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
88365 | 4867 *charbuf++ = c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4868 char_offset++; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4869 continue; |
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4870 |
88365 | 4871 invalid_code: |
17052 | 4872 src = src_base; |
88365 | 4873 consumed_chars = consumed_chars_base; |
4874 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4875 *charbuf++ = c < 0 ? -c : BYTE8_TO_CHAR (c); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4876 char_offset++; |
88365 | 4877 coding->errors++; |
4878 } | |
4879 | |
4880 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4881 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4882 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 4883 coding->consumed_char += consumed_chars_base; |
4884 coding->consumed = src_base - coding->source; | |
4885 coding->charbuf_used = charbuf - coding->charbuf; | |
4886 } | |
4887 | |
4888 static void | |
4889 decode_coding_big5 (coding) | |
4890 struct coding_system *coding; | |
4891 { | |
89483 | 4892 const unsigned char *src = coding->source + coding->consumed; |
4893 const unsigned char *src_end = coding->source + coding->src_bytes; | |
4894 const unsigned char *src_base; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4895 int *charbuf = coding->charbuf + coding->charbuf_used; |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
4896 /* We may produce one charset annocation in one loop and one more at |
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
4897 the end. */ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4898 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
4899 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2); |
88365 | 4900 int consumed_chars = 0, consumed_chars_base; |
4901 int multibytep = coding->src_multibyte; | |
4902 struct charset *charset_roman, *charset_big5; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4903 Lisp_Object attrs, charset_list, val; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4904 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4905 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4906 int last_id = charset_ascii; |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
4907 int eol_crlf = |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
4908 !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4909 int byte_after_cr = -1; |
88365 | 4910 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4911 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 4912 val = charset_list; |
4913 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
4914 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
4915 | |
4916 while (1) | |
4917 { | |
4918 int c, c1; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4919 struct charset *charset; |
88365 | 4920 |
4921 src_base = src; | |
4922 consumed_chars_base = consumed_chars; | |
4923 | |
4924 if (charbuf >= charbuf_end) | |
100936
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4925 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4926 if (byte_after_cr >= 0) |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4927 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4928 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4929 } |
88365 | 4930 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4931 if (byte_after_cr >= 0) |
92406
c36bda0a03cc
(decode_coding_big5, produce_chars): Fix typos in last
Andreas Schwab <schwab@suse.de>
parents:
92399
diff
changeset
|
4932 c = byte_after_cr, byte_after_cr = -1; |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4933 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4934 ONE_MORE_BYTE (c); |
88365 | 4935 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4936 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4937 goto invalid_code; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4938 if (c < 0x80) |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4939 { |
92406
c36bda0a03cc
(decode_coding_big5, produce_chars): Fix typos in last
Andreas Schwab <schwab@suse.de>
parents:
92399
diff
changeset
|
4940 if (eol_crlf && c == '\r') |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4941 ONE_MORE_BYTE (byte_after_cr); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4942 charset = charset_roman; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4943 } |
88365 | 4944 else |
4945 { | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4946 /* BIG5 -> Big5 */ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4947 if (c < 0xA1 || c > 0xFE) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4948 goto invalid_code; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4949 ONE_MORE_BYTE (c1); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4950 if (c1 < 0x40 || (c1 > 0x7E && c1 < 0xA1) || c1 > 0xFE) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4951 goto invalid_code; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4952 c = c << 8 | c1; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4953 charset = charset_big5; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4954 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4955 if (charset->id != charset_ascii |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4956 && last_id != charset->id) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4957 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4958 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4959 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4960 last_id = charset->id; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4961 last_offset = char_offset; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4962 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4963 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
88365 | 4964 *charbuf++ = c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4965 char_offset++; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4966 continue; |
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4967 |
88365 | 4968 invalid_code: |
17052 | 4969 src = src_base; |
88365 | 4970 consumed_chars = consumed_chars_base; |
4971 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4972 *charbuf++ = c < 0 ? -c : BYTE8_TO_CHAR (c); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4973 char_offset++; |
88365 | 4974 coding->errors++; |
4975 } | |
4976 | |
4977 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4978 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4979 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 4980 coding->consumed_char += consumed_chars_base; |
4981 coding->consumed = src_base - coding->source; | |
4982 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 4983 } |
4984 | |
4985 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4986 This function can encode charsets `ascii', `katakana-jisx0201', |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4987 `japanese-jisx0208', `chinese-big5-1', and `chinese-big5-2'. We |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4988 are sure that all these charsets are registered as official charset |
17052 | 4989 (i.e. do not have extended leading-codes). Characters of other |
4990 charsets are produced without any encoding. If SJIS_P is 1, encode | |
4991 SJIS text, else encode BIG5 text. */ | |
4992 | |
88365 | 4993 static int |
4994 encode_coding_sjis (coding) | |
17052 | 4995 struct coding_system *coding; |
4996 { | |
88365 | 4997 int multibytep = coding->dst_multibyte; |
4998 int *charbuf = coding->charbuf; | |
4999 int *charbuf_end = charbuf + coding->charbuf_used; | |
5000 unsigned char *dst = coding->destination + coding->produced; | |
5001 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5002 int safe_room = 4; | |
5003 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5004 Lisp_Object attrs, charset_list, val; |
88365 | 5005 int ascii_compatible; |
5006 struct charset *charset_roman, *charset_kanji, *charset_kana; | |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5007 struct charset *charset_kanji2; |
88365 | 5008 int c; |
5009 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5010 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 5011 val = charset_list; |
5012 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
5013 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5014 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5015 charset_kanji2 = NILP (val) ? NULL : CHARSET_FROM_ID (XINT (XCAR (val))); |
88365 | 5016 |
5017 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
5018 | |
5019 while (charbuf < charbuf_end) | |
5020 { | |
5021 ASSURE_DESTINATION (safe_room); | |
5022 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5023 /* Now encode the character C. */ |
88365 | 5024 if (ASCII_CHAR_P (c) && ascii_compatible) |
5025 EMIT_ONE_ASCII_BYTE (c); | |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5026 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5027 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5028 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5029 EMIT_ONE_BYTE (c); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5030 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5031 else |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5032 { |
88365 | 5033 unsigned code; |
5034 struct charset *charset = char_charset (c, charset_list, &code); | |
5035 | |
5036 if (!charset) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5037 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5038 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5039 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5040 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5041 charset = CHARSET_FROM_ID (charset_ascii); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5042 } |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5043 else |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5044 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5045 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5046 charset = char_charset (c, charset_list, &code); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5047 } |
88365 | 5048 } |
5049 if (code == CHARSET_INVALID_CODE (charset)) | |
5050 abort (); | |
5051 if (charset == charset_kanji) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5052 { |
88365 | 5053 int c1, c2; |
5054 JIS_TO_SJIS (code); | |
5055 c1 = code >> 8, c2 = code & 0xFF; | |
5056 EMIT_TWO_BYTES (c1, c2); | |
5057 } | |
5058 else if (charset == charset_kana) | |
5059 EMIT_ONE_BYTE (code | 0x80); | |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5060 else if (charset_kanji2 && charset == charset_kanji2) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5061 { |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5062 int c1, c2; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5063 |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5064 c1 = code >> 8; |
103762
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
5065 if (c1 == 0x21 || (c1 >= 0x23 && c1 <= 0x25) |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
5066 || c1 == 0x28 |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5067 || (c1 >= 0x2C && c1 <= 0x2F) || c1 >= 0x6E) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5068 { |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5069 JIS_TO_SJIS2 (code); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5070 c1 = code >> 8, c2 = code & 0xFF; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5071 EMIT_TWO_BYTES (c1, c2); |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5072 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5073 else |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5074 EMIT_ONE_ASCII_BYTE (code & 0x7F); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5075 } |
17052 | 5076 else |
88365 | 5077 EMIT_ONE_ASCII_BYTE (code & 0x7F); |
5078 } | |
5079 } | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5080 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5081 coding->produced_char += produced_chars; |
5082 coding->produced = dst - coding->destination; | |
5083 return 0; | |
5084 } | |
5085 | |
5086 static int | |
5087 encode_coding_big5 (coding) | |
5088 struct coding_system *coding; | |
5089 { | |
5090 int multibytep = coding->dst_multibyte; | |
5091 int *charbuf = coding->charbuf; | |
5092 int *charbuf_end = charbuf + coding->charbuf_used; | |
5093 unsigned char *dst = coding->destination + coding->produced; | |
5094 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5095 int safe_room = 4; | |
5096 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5097 Lisp_Object attrs, charset_list, val; |
88365 | 5098 int ascii_compatible; |
5099 struct charset *charset_roman, *charset_big5; | |
5100 int c; | |
5101 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5102 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 5103 val = charset_list; |
5104 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
5105 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
5106 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
5107 | |
5108 while (charbuf < charbuf_end) | |
5109 { | |
5110 ASSURE_DESTINATION (safe_room); | |
5111 c = *charbuf++; | |
5112 /* Now encode the character C. */ | |
5113 if (ASCII_CHAR_P (c) && ascii_compatible) | |
5114 EMIT_ONE_ASCII_BYTE (c); | |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5115 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5116 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5117 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5118 EMIT_ONE_BYTE (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5119 } |
88365 | 5120 else |
5121 { | |
5122 unsigned code; | |
5123 struct charset *charset = char_charset (c, charset_list, &code); | |
5124 | |
5125 if (! charset) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5126 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5127 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5128 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5129 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5130 charset = CHARSET_FROM_ID (charset_ascii); |
51140
94d903190cee
(ENCODE_UNSAFE_CHARACTER): Adjusted for the name change
Kenichi Handa <handa@m17n.org>
parents:
51090
diff
changeset
|
5131 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5132 else |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5133 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5134 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5135 charset = char_charset (c, charset_list, &code); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5136 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5137 } |
88365 | 5138 if (code == CHARSET_INVALID_CODE (charset)) |
5139 abort (); | |
5140 if (charset == charset_big5) | |
5141 { | |
5142 int c1, c2; | |
5143 | |
5144 c1 = code >> 8, c2 = code & 0xFF; | |
5145 EMIT_TWO_BYTES (c1, c2); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5146 } |
17052 | 5147 else |
88365 | 5148 EMIT_ONE_ASCII_BYTE (code & 0x7F); |
17052 | 5149 } |
88365 | 5150 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5151 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5152 coding->produced_char += produced_chars; |
5153 coding->produced = dst - coding->destination; | |
5154 return 0; | |
17052 | 5155 } |
5156 | |
5157 | |
88365 | 5158 /*** 10. CCL handlers ***/ |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5159 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5160 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5161 Check if a text is encoded in a coding system of which |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5162 encoder/decoder are written in CCL program. If it is, return |
88365 | 5163 CATEGORY_MASK_CCL, else return 0. */ |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5164 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
5165 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5166 detect_coding_ccl (coding, detect_info) |
88365 | 5167 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5168 struct coding_detection_info *detect_info; |
88365 | 5169 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5170 const unsigned char *src = coding->source, *src_base; |
89483 | 5171 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 5172 int multibytep = coding->src_multibyte; |
5173 int consumed_chars = 0; | |
5174 int found = 0; | |
89848
3edfa038a435
(detect_coding_emacs_mule): Fix counting of encoded
Kenichi Handa <handa@m17n.org>
parents:
89842
diff
changeset
|
5175 unsigned char *valids; |
88365 | 5176 int head_ascii = coding->head_ascii; |
5177 Lisp_Object attrs; | |
5178 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5179 detect_info->checked |= CATEGORY_MASK_CCL; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5180 |
88365 | 5181 coding = &coding_categories[coding_category_ccl]; |
89848
3edfa038a435
(detect_coding_emacs_mule): Fix counting of encoded
Kenichi Handa <handa@m17n.org>
parents:
89842
diff
changeset
|
5182 valids = CODING_CCL_VALIDS (coding); |
88365 | 5183 attrs = CODING_ID_ATTRS (coding->id); |
5184 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
5185 src += head_ascii; | |
5186 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5187 while (1) |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5188 { |
88365 | 5189 int c; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5190 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5191 src_base = src; |
88365 | 5192 ONE_MORE_BYTE (c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5193 if (c < 0 || ! valids[c]) |
88365 | 5194 break; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5195 if ((valids[c] > 1)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5196 found = CATEGORY_MASK_CCL; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5197 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5198 detect_info->rejected |= CATEGORY_MASK_CCL; |
88365 | 5199 return 0; |
5200 | |
5201 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5202 detect_info->found |= found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5203 return 1; |
88365 | 5204 } |
5205 | |
5206 static void | |
5207 decode_coding_ccl (coding) | |
5208 struct coding_system *coding; | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5209 { |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
5210 const unsigned char *src = coding->source + coding->consumed; |
89483 | 5211 const unsigned char *src_end = coding->source + coding->src_bytes; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5212 int *charbuf = coding->charbuf + coding->charbuf_used; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5213 int *charbuf_end = coding->charbuf + coding->charbuf_size; |
88365 | 5214 int consumed_chars = 0; |
5215 int multibytep = coding->src_multibyte; | |
5216 struct ccl_program ccl; | |
5217 int source_charbuf[1024]; | |
5218 int source_byteidx[1024]; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5219 Lisp_Object attrs, charset_list; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5220 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5221 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 5222 setup_ccl_program (&ccl, CODING_CCL_DECODER (coding)); |
5223 | |
5224 while (src < src_end) | |
5225 { | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
5226 const unsigned char *p = src; |
88365 | 5227 int *source, *source_end; |
5228 int i = 0; | |
5229 | |
5230 if (multibytep) | |
5231 while (i < 1024 && p < src_end) | |
5232 { | |
5233 source_byteidx[i] = p - src; | |
5234 source_charbuf[i++] = STRING_CHAR_ADVANCE (p); | |
5235 } | |
5236 else | |
5237 while (i < 1024 && p < src_end) | |
5238 source_charbuf[i++] = *p++; | |
89483 | 5239 |
88365 | 5240 if (p == src_end && coding->mode & CODING_MODE_LAST_BLOCK) |
5241 ccl.last_block = 1; | |
5242 | |
5243 source = source_charbuf; | |
5244 source_end = source + i; | |
5245 while (source < source_end) | |
5246 { | |
5247 ccl_driver (&ccl, source, charbuf, | |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
5248 source_end - source, charbuf_end - charbuf, |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
5249 charset_list); |
88365 | 5250 source += ccl.consumed; |
5251 charbuf += ccl.produced; | |
5252 if (ccl.status != CCL_STAT_SUSPEND_BY_DST) | |
5253 break; | |
5254 } | |
5255 if (source < source_end) | |
5256 src += source_byteidx[source - source_charbuf]; | |
5257 else | |
5258 src = p; | |
5259 consumed_chars += source - source_charbuf; | |
5260 | |
5261 if (ccl.status != CCL_STAT_SUSPEND_BY_SRC | |
5262 && ccl.status != CODING_RESULT_INSUFFICIENT_SRC) | |
5263 break; | |
5264 } | |
5265 | |
5266 switch (ccl.status) | |
5267 { | |
5268 case CCL_STAT_SUSPEND_BY_SRC: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5269 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_SRC); |
88365 | 5270 break; |
5271 case CCL_STAT_SUSPEND_BY_DST: | |
5272 break; | |
5273 case CCL_STAT_QUIT: | |
5274 case CCL_STAT_INVALID_CMD: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5275 record_conversion_result (coding, CODING_RESULT_INTERRUPT); |
88365 | 5276 break; |
5277 default: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5278 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5279 break; |
5280 } | |
5281 coding->consumed_char += consumed_chars; | |
5282 coding->consumed = src - coding->source; | |
5283 coding->charbuf_used = charbuf - coding->charbuf; | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5284 } |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5285 |
88365 | 5286 static int |
5287 encode_coding_ccl (coding) | |
5288 struct coding_system *coding; | |
5289 { | |
5290 struct ccl_program ccl; | |
5291 int multibytep = coding->dst_multibyte; | |
5292 int *charbuf = coding->charbuf; | |
5293 int *charbuf_end = charbuf + coding->charbuf_used; | |
5294 unsigned char *dst = coding->destination + coding->produced; | |
5295 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5296 int destination_charbuf[1024]; | |
5297 int i, produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5298 Lisp_Object attrs, charset_list; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5299 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5300 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 5301 setup_ccl_program (&ccl, CODING_CCL_ENCODER (coding)); |
5302 | |
5303 ccl.last_block = coding->mode & CODING_MODE_LAST_BLOCK; | |
5304 ccl.dst_multibyte = coding->dst_multibyte; | |
5305 | |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5306 while (charbuf < charbuf_end) |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5307 { |
88365 | 5308 ccl_driver (&ccl, charbuf, destination_charbuf, |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5309 charbuf_end - charbuf, 1024, charset_list); |
88365 | 5310 if (multibytep) |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5311 { |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5312 ASSURE_DESTINATION (ccl.produced * 2); |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5313 for (i = 0; i < ccl.produced; i++) |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5314 EMIT_ONE_BYTE (destination_charbuf[i] & 0xFF); |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5315 } |
88365 | 5316 else |
5317 { | |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5318 ASSURE_DESTINATION (ccl.produced); |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
5319 for (i = 0; i < ccl.produced; i++) |
88365 | 5320 *dst++ = destination_charbuf[i] & 0xFF; |
5321 produced_chars += ccl.produced; | |
5322 } | |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5323 charbuf += ccl.consumed; |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5324 if (ccl.status == CCL_STAT_QUIT |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5325 || ccl.status == CCL_STAT_INVALID_CMD) |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5326 break; |
88365 | 5327 } |
5328 | |
5329 switch (ccl.status) | |
5330 { | |
5331 case CCL_STAT_SUSPEND_BY_SRC: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5332 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_SRC); |
88365 | 5333 break; |
5334 case CCL_STAT_SUSPEND_BY_DST: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5335 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_DST); |
88365 | 5336 break; |
5337 case CCL_STAT_QUIT: | |
5338 case CCL_STAT_INVALID_CMD: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5339 record_conversion_result (coding, CODING_RESULT_INTERRUPT); |
88365 | 5340 break; |
5341 default: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5342 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5343 break; |
5344 } | |
5345 | |
5346 coding->produced_char += produced_chars; | |
5347 coding->produced = dst - coding->destination; | |
5348 return 0; | |
5349 } | |
5350 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5351 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5352 |
88365 | 5353 /*** 10, 11. no-conversion handlers ***/ |
17052 | 5354 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5355 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5356 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5357 static void |
88365 | 5358 decode_coding_raw_text (coding) |
17052 | 5359 struct coding_system *coding; |
5360 { | |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
5361 int eol_crlf = |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
5362 !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5363 |
88365 | 5364 coding->chars_at_source = 1; |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5365 coding->consumed_char = coding->src_chars; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5366 coding->consumed = coding->src_bytes; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5367 if (eol_crlf && coding->source[coding->src_bytes - 1] == '\r') |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5368 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5369 coding->consumed_char--; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5370 coding->consumed--; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5371 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_SRC); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5372 } |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5373 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5374 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5375 } |
5376 | |
5377 static int | |
5378 encode_coding_raw_text (coding) | |
17052 | 5379 struct coding_system *coding; |
88365 | 5380 { |
5381 int multibytep = coding->dst_multibyte; | |
5382 int *charbuf = coding->charbuf; | |
5383 int *charbuf_end = coding->charbuf + coding->charbuf_used; | |
5384 unsigned char *dst = coding->destination + coding->produced; | |
5385 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
95345
0350e5efb8f7
(encode_coding_raw_text): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95344
diff
changeset
|
5386 int produced_chars = 0; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5387 int c; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5388 |
88365 | 5389 if (multibytep) |
5390 { | |
5391 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
5392 | |
5393 if (coding->src_multibyte) | |
5394 while (charbuf < charbuf_end) | |
5395 { | |
5396 ASSURE_DESTINATION (safe_room); | |
5397 c = *charbuf++; | |
5398 if (ASCII_CHAR_P (c)) | |
5399 EMIT_ONE_ASCII_BYTE (c); | |
5400 else if (CHAR_BYTE8_P (c)) | |
5401 { | |
5402 c = CHAR_TO_BYTE8 (c); | |
5403 EMIT_ONE_BYTE (c); | |
5404 } | |
5405 else | |
5406 { | |
5407 unsigned char str[MAX_MULTIBYTE_LENGTH], *p0 = str, *p1 = str; | |
5408 | |
5409 CHAR_STRING_ADVANCE (c, p1); | |
5410 while (p0 < p1) | |
88950
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5411 { |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5412 EMIT_ONE_BYTE (*p0); |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5413 p0++; |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5414 } |
88365 | 5415 } |
5416 } | |
5417 else | |
5418 while (charbuf < charbuf_end) | |
5419 { | |
5420 ASSURE_DESTINATION (safe_room); | |
5421 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5422 EMIT_ONE_BYTE (c); |
88365 | 5423 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5424 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5425 else |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5426 { |
88365 | 5427 if (coding->src_multibyte) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5428 { |
88365 | 5429 int safe_room = MAX_MULTIBYTE_LENGTH; |
5430 | |
5431 while (charbuf < charbuf_end) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5432 { |
88365 | 5433 ASSURE_DESTINATION (safe_room); |
5434 c = *charbuf++; | |
5435 if (ASCII_CHAR_P (c)) | |
5436 *dst++ = c; | |
5437 else if (CHAR_BYTE8_P (c)) | |
5438 *dst++ = CHAR_TO_BYTE8 (c); | |
5439 else | |
5440 CHAR_STRING_ADVANCE (c, dst); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5441 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5442 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5443 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5444 { |
88365 | 5445 ASSURE_DESTINATION (charbuf_end - charbuf); |
5446 while (charbuf < charbuf_end && dst < dst_end) | |
5447 *dst++ = *charbuf++; | |
89483 | 5448 } |
95353
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
5449 produced_chars = dst - (coding->destination + coding->produced); |
88365 | 5450 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5451 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
95345
0350e5efb8f7
(encode_coding_raw_text): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95344
diff
changeset
|
5452 coding->produced_char += produced_chars; |
88365 | 5453 coding->produced = dst - coding->destination; |
5454 return 0; | |
5455 } | |
5456 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5457 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5458 Check if a text is encoded in a charset-based coding system. If it |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5459 is, return 1, else return 0. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5460 |
88365 | 5461 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5462 detect_coding_charset (coding, detect_info) |
88365 | 5463 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5464 struct coding_detection_info *detect_info; |
88365 | 5465 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5466 const unsigned char *src = coding->source, *src_base; |
89483 | 5467 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 5468 int multibytep = coding->src_multibyte; |
5469 int consumed_chars = 0; | |
98951
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5470 Lisp_Object attrs, valids, name; |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
5471 int found = 0; |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5472 int head_ascii = coding->head_ascii; |
98951
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5473 int check_latin_extra = 0; |
88365 | 5474 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5475 detect_info->checked |= CATEGORY_MASK_CHARSET; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5476 |
88365 | 5477 coding = &coding_categories[coding_category_charset]; |
5478 attrs = CODING_ID_ATTRS (coding->id); | |
5479 valids = AREF (attrs, coding_attr_charset_valids); | |
98951
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5480 name = CODING_ID_NAME (coding->id); |
102327
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5481 if (strncmp ((char *) SDATA (SYMBOL_NAME (name)), |
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5482 "iso-8859-", sizeof ("iso-8859-") - 1) == 0 |
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5483 || strncmp ((char *) SDATA (SYMBOL_NAME (name)), |
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5484 "iso-latin-", sizeof ("iso-latin-") - 1) == 0) |
98951
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5485 check_latin_extra = 1; |
102327
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5486 |
88365 | 5487 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5488 src += head_ascii; |
88365 | 5489 |
5490 while (1) | |
5491 { | |
5492 int c; | |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5493 Lisp_Object val; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5494 struct charset *charset; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5495 int dim, idx; |
88365 | 5496 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5497 src_base = src; |
88365 | 5498 ONE_MORE_BYTE (c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5499 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5500 continue; |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5501 val = AREF (valids, c); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5502 if (NILP (val)) |
88365 | 5503 break; |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
5504 if (c >= 0x80) |
98951
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5505 { |
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5506 if (c < 0xA0 |
102327
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5507 && check_latin_extra |
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5508 && (!VECTORP (Vlatin_extra_code_table) |
102325
2c693a021d83
(detect_coding_charset): If not checking latin extra,
Jason Rumney <jasonr@gnu.org>
parents:
102320
diff
changeset
|
5509 || NILP (XVECTOR (Vlatin_extra_code_table)->contents[c]))) |
98951
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5510 break; |
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5511 found = CATEGORY_MASK_CHARSET; |
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5512 } |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5513 if (INTEGERP (val)) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5514 { |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5515 charset = CHARSET_FROM_ID (XFASTINT (val)); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5516 dim = CHARSET_DIMENSION (charset); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5517 for (idx = 1; idx < dim; idx++) |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5518 { |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5519 if (src == src_end) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5520 goto too_short; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5521 ONE_MORE_BYTE (c); |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
5522 if (c < charset->code_space[(dim - 1 - idx) * 2] |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5523 || c > charset->code_space[(dim - 1 - idx) * 2 + 1]) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5524 break; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5525 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5526 if (idx < dim) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5527 break; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5528 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5529 else |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5530 { |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5531 idx = 1; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5532 for (; CONSP (val); val = XCDR (val)) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5533 { |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5534 charset = CHARSET_FROM_ID (XFASTINT (XCAR (val))); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5535 dim = CHARSET_DIMENSION (charset); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5536 while (idx < dim) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5537 { |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5538 if (src == src_end) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5539 goto too_short; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5540 ONE_MORE_BYTE (c); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5541 if (c < charset->code_space[(dim - 1 - idx) * 4] |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5542 || c > charset->code_space[(dim - 1 - idx) * 4 + 1]) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5543 break; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5544 idx++; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5545 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5546 if (idx == dim) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5547 { |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5548 val = Qnil; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5549 break; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5550 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5551 } |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5552 if (CONSP (val)) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5553 break; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5554 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5555 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5556 too_short: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5557 detect_info->rejected |= CATEGORY_MASK_CHARSET; |
88365 | 5558 return 0; |
5559 | |
5560 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5561 detect_info->found |= found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5562 return 1; |
88365 | 5563 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5564 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5565 static void |
88365 | 5566 decode_coding_charset (coding) |
17052 | 5567 struct coding_system *coding; |
88365 | 5568 { |
89483 | 5569 const unsigned char *src = coding->source + coding->consumed; |
5570 const unsigned char *src_end = coding->source + coding->src_bytes; | |
46548
cb1914307488
(encode_eol, detect_coding, detect_eol):
Ken Raeburn <raeburn@raeburn.org>
parents:
46462
diff
changeset
|
5571 const unsigned char *src_base; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5572 int *charbuf = coding->charbuf + coding->charbuf_used; |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
5573 /* We may produce one charset annocation in one loop and one more at |
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
5574 the end. */ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5575 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
5576 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2); |
88365 | 5577 int consumed_chars = 0, consumed_chars_base; |
5578 int multibytep = coding->src_multibyte; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5579 Lisp_Object attrs, charset_list, valids; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5580 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5581 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5582 int last_id = charset_ascii; |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
5583 int eol_crlf = |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
5584 !inhibit_eol_conversion && EQ (CODING_ID_EOL_TYPE (coding->id), Qdos); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5585 int byte_after_cr = -1; |
88365 | 5586 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5587 CODING_GET_INFO (coding, attrs, charset_list); |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5588 valids = AREF (attrs, coding_attr_charset_valids); |
88365 | 5589 |
5590 while (1) | |
5591 { | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5592 int c; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5593 Lisp_Object val; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5594 struct charset *charset; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5595 int dim; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5596 int len = 1; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5597 unsigned code; |
88365 | 5598 |
29093
176708661b08
(encode_eol): Fix a bug of DOS style EOL encoding.
Kenichi Handa <handa@m17n.org>
parents:
29005
diff
changeset
|
5599 src_base = src; |
88365 | 5600 consumed_chars_base = consumed_chars; |
5601 | |
5602 if (charbuf >= charbuf_end) | |
100936
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
5603 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
5604 if (byte_after_cr >= 0) |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
5605 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
5606 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
5607 } |
88365 | 5608 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5609 if (byte_after_cr >= 0) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5610 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5611 c = byte_after_cr; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5612 byte_after_cr = -1; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5613 } |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5614 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5615 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5616 ONE_MORE_BYTE (c); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5617 if (eol_crlf && c == '\r') |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5618 ONE_MORE_BYTE (byte_after_cr); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5619 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5620 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5621 goto invalid_code; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5622 code = c; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5623 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5624 val = AREF (valids, c); |
100170
86455974b971
(decode_coding_charset): Check type of an element of
Kenichi Handa <handa@m17n.org>
parents:
100135
diff
changeset
|
5625 if (! INTEGERP (val) && ! CONSP (val)) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5626 goto invalid_code; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5627 if (INTEGERP (val)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5628 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5629 charset = CHARSET_FROM_ID (XFASTINT (val)); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5630 dim = CHARSET_DIMENSION (charset); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5631 while (len < dim) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5632 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5633 ONE_MORE_BYTE (c); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5634 code = (code << 8) | c; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5635 len++; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5636 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5637 CODING_DECODE_CHAR (coding, src, src_base, src_end, |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5638 charset, code, c); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5639 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5640 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5641 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5642 /* VAL is a list of charset IDs. It is assured that the |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5643 list is sorted by charset dimensions (smaller one |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5644 comes first). */ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5645 while (CONSP (val)) |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5646 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5647 charset = CHARSET_FROM_ID (XFASTINT (XCAR (val))); |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
5648 dim = CHARSET_DIMENSION (charset); |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
5649 while (len < dim) |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5650 { |
88598
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
5651 ONE_MORE_BYTE (c); |
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
5652 code = (code << 8) | c; |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
5653 len++; |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5654 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5655 CODING_DECODE_CHAR (coding, src, src_base, |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5656 src_end, charset, code, c); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5657 if (c >= 0) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5658 break; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5659 val = XCDR (val); |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5660 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5661 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5662 if (c < 0) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5663 goto invalid_code; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5664 if (charset->id != charset_ascii |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5665 && last_id != charset->id) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5666 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5667 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5668 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5669 last_id = charset->id; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5670 last_offset = char_offset; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5671 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5672 |
88365 | 5673 *charbuf++ = c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5674 char_offset++; |
88365 | 5675 continue; |
5676 | |
5677 invalid_code: | |
5678 src = src_base; | |
5679 consumed_chars = consumed_chars_base; | |
5680 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5681 *charbuf++ = c < 0 ? -c : ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5682 char_offset++; |
88365 | 5683 coding->errors++; |
5684 } | |
5685 | |
5686 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5687 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5688 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 5689 coding->consumed_char += consumed_chars_base; |
5690 coding->consumed = src_base - coding->source; | |
5691 coding->charbuf_used = charbuf - coding->charbuf; | |
5692 } | |
5693 | |
5694 static int | |
5695 encode_coding_charset (coding) | |
5696 struct coding_system *coding; | |
5697 { | |
5698 int multibytep = coding->dst_multibyte; | |
5699 int *charbuf = coding->charbuf; | |
5700 int *charbuf_end = charbuf + coding->charbuf_used; | |
5701 unsigned char *dst = coding->destination + coding->produced; | |
5702 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5703 int safe_room = MAX_MULTIBYTE_LENGTH; | |
5704 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5705 Lisp_Object attrs, charset_list; |
88365 | 5706 int ascii_compatible; |
5707 int c; | |
5708 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5709 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 5710 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); |
5711 | |
5712 while (charbuf < charbuf_end) | |
5713 { | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5714 struct charset *charset; |
88365 | 5715 unsigned code; |
89483 | 5716 |
88365 | 5717 ASSURE_DESTINATION (safe_room); |
5718 c = *charbuf++; | |
5719 if (ascii_compatible && ASCII_CHAR_P (c)) | |
5720 EMIT_ONE_ASCII_BYTE (c); | |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5721 else if (CHAR_BYTE8_P (c)) |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5722 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5723 c = CHAR_TO_BYTE8 (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5724 EMIT_ONE_BYTE (c); |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5725 } |
88365 | 5726 else |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5727 { |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5728 charset = char_charset (c, charset_list, &code); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5729 if (charset) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5730 { |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5731 if (CHARSET_DIMENSION (charset) == 1) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5732 EMIT_ONE_BYTE (code); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5733 else if (CHARSET_DIMENSION (charset) == 2) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5734 EMIT_TWO_BYTES (code >> 8, code & 0xFF); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5735 else if (CHARSET_DIMENSION (charset) == 3) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5736 EMIT_THREE_BYTES (code >> 16, (code >> 8) & 0xFF, code & 0xFF); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5737 else |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5738 EMIT_FOUR_BYTES (code >> 24, (code >> 16) & 0xFF, |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5739 (code >> 8) & 0xFF, code & 0xFF); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5740 } |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5741 else |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5742 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5743 if (coding->mode & CODING_MODE_SAFE_ENCODING) |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5744 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5745 else |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5746 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5747 EMIT_ONE_BYTE (c); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5748 } |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5749 } |
88365 | 5750 } |
5751 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5752 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5753 coding->produced_char += produced_chars; |
5754 coding->produced = dst - coding->destination; | |
5755 return 0; | |
17052 | 5756 } |
5757 | |
5758 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5759 /*** 7. C library functions ***/ |
17052 | 5760 |
88365 | 5761 /* Setup coding context CODING from information about CODING_SYSTEM. |
5762 If CODING_SYSTEM is nil, `no-conversion' is assumed. If | |
5763 CODING_SYSTEM is invalid, signal an error. */ | |
5764 | |
5765 void | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
5766 setup_coding_system (coding_system, coding) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
5767 Lisp_Object coding_system; |
17052 | 5768 struct coding_system *coding; |
5769 { | |
88365 | 5770 Lisp_Object attrs; |
5771 Lisp_Object eol_type; | |
5772 Lisp_Object coding_type; | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
5773 Lisp_Object val; |
17052 | 5774 |
24460
be35d27a4bfb
(setup_coding_system): Check for CODING_SYSTEM = nil.
Kenichi Handa <handa@m17n.org>
parents:
24425
diff
changeset
|
5775 if (NILP (coding_system)) |
90011
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
5776 coding_system = Qundecided; |
88365 | 5777 |
5778 CHECK_CODING_SYSTEM_GET_ID (coding_system, coding->id); | |
5779 | |
5780 attrs = CODING_ID_ATTRS (coding->id); | |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
5781 eol_type = inhibit_eol_conversion ? Qunix : CODING_ID_EOL_TYPE (coding->id); |
88365 | 5782 |
5783 coding->mode = 0; | |
5784 coding->head_ascii = -1; | |
17052 | 5785 if (VECTORP (eol_type)) |
90587
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5786 coding->common_flags = (CODING_REQUIRE_DECODING_MASK |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5787 | CODING_REQUIRE_DETECTION_MASK); |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5788 else if (! EQ (eol_type, Qunix)) |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5789 coding->common_flags = (CODING_REQUIRE_DECODING_MASK |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5790 | CODING_REQUIRE_ENCODING_MASK); |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5791 else |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5792 coding->common_flags = 0; |
89448
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
5793 if (! NILP (CODING_ATTR_POST_READ (attrs))) |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
5794 coding->common_flags |= CODING_REQUIRE_DECODING_MASK; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
5795 if (! NILP (CODING_ATTR_PRE_WRITE (attrs))) |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
5796 coding->common_flags |= CODING_REQUIRE_ENCODING_MASK; |
89483 | 5797 if (! NILP (CODING_ATTR_FOR_UNIBYTE (attrs))) |
5798 coding->common_flags |= CODING_FOR_UNIBYTE_MASK; | |
88365 | 5799 |
5800 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
89483 | 5801 coding->max_charset_id = SCHARS (val) - 1; |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
5802 coding->safe_charsets = SDATA (val); |
88365 | 5803 coding->default_char = XINT (CODING_ATTR_DEFAULT_CHAR (attrs)); |
103655
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
5804 coding->carryover_bytes = 0; |
88365 | 5805 |
5806 coding_type = CODING_ATTR_TYPE (attrs); | |
5807 if (EQ (coding_type, Qundecided)) | |
5808 { | |
5809 coding->detector = NULL; | |
5810 coding->decoder = decode_coding_raw_text; | |
5811 coding->encoder = encode_coding_raw_text; | |
5812 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; | |
5813 } | |
5814 else if (EQ (coding_type, Qiso_2022)) | |
5815 { | |
5816 int i; | |
5817 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
5818 | |
5819 /* Invoke graphic register 0 to plane 0. */ | |
5820 CODING_ISO_INVOCATION (coding, 0) = 0; | |
5821 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */ | |
5822 CODING_ISO_INVOCATION (coding, 1) | |
5823 = (flags & CODING_ISO_FLAG_SEVEN_BITS ? -1 : 1); | |
5824 /* Setup the initial status of designation. */ | |
5825 for (i = 0; i < 4; i++) | |
5826 CODING_ISO_DESIGNATION (coding, i) = CODING_ISO_INITIAL (coding, i); | |
5827 /* Not single shifting initially. */ | |
5828 CODING_ISO_SINGLE_SHIFTING (coding) = 0; | |
5829 /* Beginning of buffer should also be regarded as bol. */ | |
5830 CODING_ISO_BOL (coding) = 1; | |
5831 coding->detector = detect_coding_iso_2022; | |
5832 coding->decoder = decode_coding_iso_2022; | |
5833 coding->encoder = encode_coding_iso_2022; | |
5834 if (flags & CODING_ISO_FLAG_SAFE) | |
5835 coding->mode |= CODING_MODE_SAFE_ENCODING; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5836 coding->common_flags |
88365 | 5837 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
5838 | CODING_REQUIRE_FLUSHING_MASK); | |
5839 if (flags & CODING_ISO_FLAG_COMPOSITION) | |
5840 coding->common_flags |= CODING_ANNOTATE_COMPOSITION_MASK; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5841 if (flags & CODING_ISO_FLAG_DESIGNATION) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5842 coding->common_flags |= CODING_ANNOTATE_CHARSET_MASK; |
88365 | 5843 if (flags & CODING_ISO_FLAG_FULL_SUPPORT) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5844 { |
88365 | 5845 setup_iso_safe_charsets (attrs); |
5846 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
89483 | 5847 coding->max_charset_id = SCHARS (val) - 1; |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
5848 coding->safe_charsets = SDATA (val); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5849 } |
88365 | 5850 CODING_ISO_FLAGS (coding) = flags; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5851 CODING_ISO_CMP_STATUS (coding)->state = COMPOSING_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5852 CODING_ISO_CMP_STATUS (coding)->method = COMPOSITION_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5853 CODING_ISO_EXTSEGMENT_LEN (coding) = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5854 CODING_ISO_EMBEDDED_UTF_8 (coding) = 0; |
88365 | 5855 } |
5856 else if (EQ (coding_type, Qcharset)) | |
5857 { | |
5858 coding->detector = detect_coding_charset; | |
5859 coding->decoder = decode_coding_charset; | |
5860 coding->encoder = encode_coding_charset; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
5861 coding->common_flags |
88365 | 5862 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
5863 } | |
5864 else if (EQ (coding_type, Qutf_8)) | |
5865 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5866 val = AREF (attrs, coding_attr_utf_bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5867 CODING_UTF_8_BOM (coding) = (CONSP (val) ? utf_detect_bom |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5868 : EQ (val, Qt) ? utf_with_bom |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5869 : utf_without_bom); |
88365 | 5870 coding->detector = detect_coding_utf_8; |
5871 coding->decoder = decode_coding_utf_8; | |
5872 coding->encoder = encode_coding_utf_8; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
5873 coding->common_flags |
88365 | 5874 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5875 if (CODING_UTF_8_BOM (coding) == utf_detect_bom) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5876 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; |
88365 | 5877 } |
5878 else if (EQ (coding_type, Qutf_16)) | |
5879 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5880 val = AREF (attrs, coding_attr_utf_bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5881 CODING_UTF_16_BOM (coding) = (CONSP (val) ? utf_detect_bom |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5882 : EQ (val, Qt) ? utf_with_bom |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5883 : utf_without_bom); |
88365 | 5884 val = AREF (attrs, coding_attr_utf_16_endian); |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
5885 CODING_UTF_16_ENDIAN (coding) = (EQ (val, Qbig) ? utf_16_big_endian |
88365 | 5886 : utf_16_little_endian); |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
5887 CODING_UTF_16_SURROGATE (coding) = 0; |
88365 | 5888 coding->detector = detect_coding_utf_16; |
5889 coding->decoder = decode_coding_utf_16; | |
5890 coding->encoder = encode_coding_utf_16; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5891 coding->common_flags |
88365 | 5892 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5893 if (CODING_UTF_16_BOM (coding) == utf_detect_bom) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
5894 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; |
88365 | 5895 } |
5896 else if (EQ (coding_type, Qccl)) | |
5897 { | |
5898 coding->detector = detect_coding_ccl; | |
5899 coding->decoder = decode_coding_ccl; | |
5900 coding->encoder = encode_coding_ccl; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5901 coding->common_flags |
88365 | 5902 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
5903 | CODING_REQUIRE_FLUSHING_MASK); | |
5904 } | |
5905 else if (EQ (coding_type, Qemacs_mule)) | |
5906 { | |
5907 coding->detector = detect_coding_emacs_mule; | |
5908 coding->decoder = decode_coding_emacs_mule; | |
5909 coding->encoder = encode_coding_emacs_mule; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5910 coding->common_flags |
88365 | 5911 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5912 coding->spec.emacs_mule.full_support = 1; |
88365 | 5913 if (! NILP (AREF (attrs, coding_attr_emacs_mule_full)) |
5914 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Vemacs_mule_charset_list)) | |
5915 { | |
5916 Lisp_Object tail, safe_charsets; | |
5917 int max_charset_id = 0; | |
5918 | |
5919 for (tail = Vemacs_mule_charset_list; CONSP (tail); | |
5920 tail = XCDR (tail)) | |
5921 if (max_charset_id < XFASTINT (XCAR (tail))) | |
5922 max_charset_id = XFASTINT (XCAR (tail)); | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
5923 safe_charsets = make_uninit_string (max_charset_id + 1); |
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
5924 memset (SDATA (safe_charsets), 255, max_charset_id + 1); |
88365 | 5925 for (tail = Vemacs_mule_charset_list; CONSP (tail); |
5926 tail = XCDR (tail)) | |
89483 | 5927 SSET (safe_charsets, XFASTINT (XCAR (tail)), 0); |
88365 | 5928 coding->max_charset_id = max_charset_id; |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
5929 coding->safe_charsets = SDATA (safe_charsets); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5930 coding->spec.emacs_mule.full_support = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5931 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5932 coding->spec.emacs_mule.cmp_status.state = COMPOSING_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5933 coding->spec.emacs_mule.cmp_status.method = COMPOSITION_NO; |
88365 | 5934 } |
5935 else if (EQ (coding_type, Qshift_jis)) | |
5936 { | |
5937 coding->detector = detect_coding_sjis; | |
5938 coding->decoder = decode_coding_sjis; | |
5939 coding->encoder = encode_coding_sjis; | |
5940 coding->common_flags | |
5941 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
5942 } | |
5943 else if (EQ (coding_type, Qbig5)) | |
5944 { | |
5945 coding->detector = detect_coding_big5; | |
5946 coding->decoder = decode_coding_big5; | |
5947 coding->encoder = encode_coding_big5; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5948 coding->common_flags |
88365 | 5949 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
5950 } | |
5951 else /* EQ (coding_type, Qraw_text) */ | |
5952 { | |
5953 coding->detector = NULL; | |
5954 coding->decoder = decode_coding_raw_text; | |
5955 coding->encoder = encode_coding_raw_text; | |
89933
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5956 if (! EQ (eol_type, Qunix)) |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5957 { |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5958 coding->common_flags |= CODING_REQUIRE_DECODING_MASK; |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5959 if (! VECTORP (eol_type)) |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5960 coding->common_flags |= CODING_REQUIRE_ENCODING_MASK; |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5961 } |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5962 |
88365 | 5963 } |
5964 | |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
5965 return; |
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
5966 } |
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
5967 |
90061
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5968 /* Return a list of charsets supported by CODING. */ |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5969 |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5970 Lisp_Object |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5971 coding_charset_list (coding) |
26847 | 5972 struct coding_system *coding; |
5973 { | |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
5974 Lisp_Object attrs, charset_list; |
90061
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5975 |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5976 CODING_GET_INFO (coding, attrs, charset_list); |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5977 if (EQ (CODING_ATTR_TYPE (attrs), Qiso_2022)) |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5978 { |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5979 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5980 |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5981 if (flags & CODING_ISO_FLAG_FULL_SUPPORT) |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5982 charset_list = Viso_2022_charset_list; |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5983 } |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5984 else if (EQ (CODING_ATTR_TYPE (attrs), Qemacs_mule)) |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5985 { |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5986 charset_list = Vemacs_mule_charset_list; |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5987 } |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5988 return charset_list; |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5989 } |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5990 |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5991 |
101776
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
5992 /* Return a list of charsets supported by CODING-SYSTEM. */ |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
5993 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
5994 Lisp_Object |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
5995 coding_system_charset_list (coding_system) |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
5996 Lisp_Object coding_system; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
5997 { |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
5998 int id; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
5999 Lisp_Object attrs, charset_list; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6000 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6001 CHECK_CODING_SYSTEM_GET_ID (coding_system, id); |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6002 attrs = CODING_ID_ATTRS (id); |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6003 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6004 if (EQ (CODING_ATTR_TYPE (attrs), Qiso_2022)) |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6005 { |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6006 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6007 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6008 if (flags & CODING_ISO_FLAG_FULL_SUPPORT) |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6009 charset_list = Viso_2022_charset_list; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6010 else |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6011 charset_list = CODING_ATTR_CHARSET_LIST (attrs); |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6012 } |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6013 else if (EQ (CODING_ATTR_TYPE (attrs), Qemacs_mule)) |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6014 { |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6015 charset_list = Vemacs_mule_charset_list; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6016 } |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6017 else |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6018 { |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6019 charset_list = CODING_ATTR_CHARSET_LIST (attrs); |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6020 } |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6021 return charset_list; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6022 } |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6023 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6024 |
88365 | 6025 /* Return raw-text or one of its subsidiaries that has the same |
6026 eol_type as CODING-SYSTEM. */ | |
6027 | |
6028 Lisp_Object | |
6029 raw_text_coding_system (coding_system) | |
6030 Lisp_Object coding_system; | |
26847 | 6031 { |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
6032 Lisp_Object spec, attrs; |
88365 | 6033 Lisp_Object eol_type, raw_text_eol_type; |
6034 | |
89462
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
6035 if (NILP (coding_system)) |
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
6036 return Qraw_text; |
88365 | 6037 spec = CODING_SYSTEM_SPEC (coding_system); |
6038 attrs = AREF (spec, 0); | |
89483 | 6039 |
88365 | 6040 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text)) |
6041 return coding_system; | |
6042 | |
6043 eol_type = AREF (spec, 2); | |
6044 if (VECTORP (eol_type)) | |
6045 return Qraw_text; | |
6046 spec = CODING_SYSTEM_SPEC (Qraw_text); | |
6047 raw_text_eol_type = AREF (spec, 2); | |
6048 return (EQ (eol_type, Qunix) ? AREF (raw_text_eol_type, 0) | |
6049 : EQ (eol_type, Qdos) ? AREF (raw_text_eol_type, 1) | |
6050 : AREF (raw_text_eol_type, 2)); | |
26847 | 6051 } |
6052 | |
88365 | 6053 |
6054 /* If CODING_SYSTEM doesn't specify end-of-line format but PARENT | |
6055 does, return one of the subsidiary that has the same eol-spec as | |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6056 PARENT. Otherwise, return CODING_SYSTEM. If PARENT is nil, |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6057 inherit end-of-line format from the system's setting |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6058 (system_eol_type). */ |
88365 | 6059 |
6060 Lisp_Object | |
6061 coding_inherit_eol_type (coding_system, parent) | |
88473 | 6062 Lisp_Object coding_system, parent; |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
6063 { |
89545
4f394eed6ff2
(inhibit_pre_post_conversion): Removed (unused).
Dave Love <fx@gnu.org>
parents:
89519
diff
changeset
|
6064 Lisp_Object spec, eol_type; |
88365 | 6065 |
89462
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
6066 if (NILP (coding_system)) |
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
6067 coding_system = Qraw_text; |
88365 | 6068 spec = CODING_SYSTEM_SPEC (coding_system); |
6069 eol_type = AREF (spec, 2); | |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6070 if (VECTORP (eol_type)) |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6071 { |
88365 | 6072 Lisp_Object parent_eol_type; |
6073 | |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6074 if (! NILP (parent)) |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6075 { |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6076 Lisp_Object parent_spec; |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6077 |
90587
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
6078 parent_spec = CODING_SYSTEM_SPEC (parent); |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6079 parent_eol_type = AREF (parent_spec, 2); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6080 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6081 else |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6082 parent_eol_type = system_eol_type; |
88365 | 6083 if (EQ (parent_eol_type, Qunix)) |
6084 coding_system = AREF (eol_type, 0); | |
6085 else if (EQ (parent_eol_type, Qdos)) | |
6086 coding_system = AREF (eol_type, 1); | |
6087 else if (EQ (parent_eol_type, Qmac)) | |
6088 coding_system = AREF (eol_type, 2); | |
6089 } | |
6090 return coding_system; | |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
6091 } |
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
6092 |
17052 | 6093 /* Emacs has a mechanism to automatically detect a coding system if it |
6094 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But, | |
6095 it's impossible to distinguish some coding systems accurately | |
6096 because they use the same range of codes. So, at first, coding | |
6097 systems are categorized into 7, those are: | |
6098 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
6099 o coding-category-emacs-mule |
17052 | 6100 |
6101 The category for a coding system which has the same code range | |
6102 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
|
6103 symbol) `emacs-mule' by default. |
17052 | 6104 |
6105 o coding-category-sjis | |
6106 | |
6107 The category for a coding system which has the same code range | |
6108 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
|
6109 symbol) `japanese-shift-jis' by default. |
17052 | 6110 |
6111 o coding-category-iso-7 | |
6112 | |
6113 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
|
6114 as ISO2022 of 7-bit environment. This doesn't use any locking |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6115 shift and single shift functions. This can encode/decode all |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6116 charsets. Assigned the coding-system (Lisp symbol) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6117 `iso-2022-7bit' by default. |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6118 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6119 o coding-category-iso-7-tight |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6120 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6121 Same as coding-category-iso-7 except that this can |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6122 encode/decode only the specified charsets. |
17052 | 6123 |
6124 o coding-category-iso-8-1 | |
6125 | |
6126 The category for a coding system which has the same code range | |
6127 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
|
6128 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
|
6129 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
|
6130 symbol) `iso-latin-1' by default. |
17052 | 6131 |
6132 o coding-category-iso-8-2 | |
6133 | |
6134 The category for a coding system which has the same code range | |
6135 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
|
6136 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
|
6137 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
|
6138 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
|
6139 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
6140 o coding-category-iso-7-else |
17052 | 6141 |
6142 The category for a coding system which has the same code range | |
88365 | 6143 as ISO2022 of 7-bit environemnt but uses locking shift or |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
6144 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
|
6145 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
|
6146 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
6147 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
|
6148 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
6149 The category for a coding system which has the same code range |
88365 | 6150 as ISO2022 of 8-bit environemnt but uses locking shift or |
18787
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
6151 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
|
6152 symbol) `iso-2022-8bit-ss2' by default. |
17052 | 6153 |
6154 o coding-category-big5 | |
6155 | |
6156 The category for a coding system which has the same code range | |
6157 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
|
6158 `cn-big5' by default. |
17052 | 6159 |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6160 o coding-category-utf-8 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6161 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6162 The category for a coding system which has the same code range |
54303 | 6163 as UTF-8 (cf. RFC3629). Assigned the coding-system (Lisp |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6164 symbol) `utf-8' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6165 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6166 o coding-category-utf-16-be |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6167 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6168 The category for a coding system in which a text has an |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6169 Unicode signature (cf. Unicode Standard) in the order of BIG |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6170 endian at the head. Assigned the coding-system (Lisp symbol) |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6171 `utf-16-be' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6172 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6173 o coding-category-utf-16-le |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6174 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6175 The category for a coding system in which a text has an |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6176 Unicode signature (cf. Unicode Standard) in the order of |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6177 LITTLE endian at the head. Assigned the coding-system (Lisp |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6178 symbol) `utf-16-le' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6179 |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6180 o coding-category-ccl |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6181 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6182 The category for a coding system of which encoder/decoder is |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6183 written in CCL programs. The default value is nil, i.e., no |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6184 coding system is assigned. |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6185 |
17052 | 6186 o coding-category-binary |
6187 | |
6188 The category for a coding system not categorized in any of the | |
6189 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
|
6190 `no-conversion' by default. |
17052 | 6191 |
6192 Each of them is a Lisp symbol and the value is an actual | |
88365 | 6193 `coding-system's (this is also a Lisp symbol) assigned by a user. |
17052 | 6194 What Emacs does actually is to detect a category of coding system. |
6195 Then, it uses a `coding-system' assigned to it. If Emacs can't | |
88365 | 6196 decide only one possible category, it selects a category of the |
17052 | 6197 highest priority. Priorities of categories are also specified by a |
6198 user in a Lisp variable `coding-category-list'. | |
6199 | |
6200 */ | |
6201 | |
88365 | 6202 #define EOL_SEEN_NONE 0 |
6203 #define EOL_SEEN_LF 1 | |
6204 #define EOL_SEEN_CR 2 | |
6205 #define EOL_SEEN_CRLF 4 | |
17052 | 6206 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6207 /* Detect how end-of-line of a text of length SRC_BYTES pointed by |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6208 SOURCE is encoded. If CATEGORY is one of |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6209 coding_category_utf_16_XXXX, assume that CR and LF are encoded by |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6210 two-byte, else they are encoded by one-byte. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6211 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6212 Return one of EOL_SEEN_XXX. */ |
17052 | 6213 |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
6214 #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
|
6215 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6216 static int |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6217 detect_eol (source, src_bytes, category) |
84646
922a7e3b7383
(detect_eol_type, detect_eol_type_in_2_octet_form):
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83648
diff
changeset
|
6218 const unsigned char *source; |
88365 | 6219 EMACS_INT src_bytes; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6220 enum coding_category category; |
17052 | 6221 { |
84646
922a7e3b7383
(detect_eol_type, detect_eol_type_in_2_octet_form):
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83648
diff
changeset
|
6222 const unsigned char *src = source, *src_end = src + src_bytes; |
17052 | 6223 unsigned char c; |
88365 | 6224 int total = 0; |
6225 int eol_seen = EOL_SEEN_NONE; | |
6226 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6227 if ((1 << category) & CATEGORY_MASK_UTF_16) |
88365 | 6228 { |
6229 int msb, lsb; | |
6230 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6231 msb = category == (coding_category_utf_16_le |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6232 | coding_category_utf_16_le_nosig); |
88365 | 6233 lsb = 1 - msb; |
6234 | |
6235 while (src + 1 < src_end) | |
17052 | 6236 { |
88365 | 6237 c = src[lsb]; |
6238 if (src[msb] == 0 && (c == '\n' || c == '\r')) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6239 { |
88365 | 6240 int this_eol; |
6241 | |
6242 if (c == '\n') | |
6243 this_eol = EOL_SEEN_LF; | |
6244 else if (src + 3 >= src_end | |
6245 || src[msb + 2] != 0 | |
6246 || src[lsb + 2] != '\n') | |
6247 this_eol = EOL_SEEN_CR; | |
6248 else | |
101678
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6249 { |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6250 this_eol = EOL_SEEN_CRLF; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6251 src += 2; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6252 } |
88365 | 6253 |
6254 if (eol_seen == EOL_SEEN_NONE) | |
6255 /* This is the first end-of-line. */ | |
6256 eol_seen = this_eol; | |
6257 else if (eol_seen != this_eol) | |
6258 { | |
101678
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6259 /* The found type is different from what found before. |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6260 Allow for stray ^M characters in DOS EOL files. */ |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6261 if (eol_seen == EOL_SEEN_CR && this_eol == EOL_SEEN_CRLF |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6262 || eol_seen == EOL_SEEN_CRLF && this_eol == EOL_SEEN_CR) |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6263 eol_seen = EOL_SEEN_CRLF; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6264 else |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6265 { |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6266 eol_seen = EOL_SEEN_LF; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6267 break; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6268 } |
88365 | 6269 } |
6270 if (++total == MAX_EOL_CHECK_COUNT) | |
6271 break; | |
6272 } | |
6273 src += 2; | |
6274 } | |
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
6275 } |
88365 | 6276 else |
6277 { | |
6278 while (src < src_end) | |
6279 { | |
6280 c = *src++; | |
6281 if (c == '\n' || c == '\r') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6282 { |
88365 | 6283 int this_eol; |
6284 | |
6285 if (c == '\n') | |
6286 this_eol = EOL_SEEN_LF; | |
6287 else if (src >= src_end || *src != '\n') | |
6288 this_eol = EOL_SEEN_CR; | |
6289 else | |
6290 this_eol = EOL_SEEN_CRLF, src++; | |
6291 | |
6292 if (eol_seen == EOL_SEEN_NONE) | |
6293 /* This is the first end-of-line. */ | |
6294 eol_seen = this_eol; | |
6295 else if (eol_seen != this_eol) | |
6296 { | |
101678
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6297 /* The found type is different from what found before. |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6298 Allow for stray ^M characters in DOS EOL files. */ |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6299 if (eol_seen == EOL_SEEN_CR && this_eol == EOL_SEEN_CRLF |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6300 || eol_seen == EOL_SEEN_CRLF && this_eol == EOL_SEEN_CR) |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6301 eol_seen = EOL_SEEN_CRLF; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6302 else |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6303 { |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6304 eol_seen = EOL_SEEN_LF; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6305 break; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6306 } |
88365 | 6307 } |
6308 if (++total == MAX_EOL_CHECK_COUNT) | |
6309 break; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6310 } |
17052 | 6311 } |
6312 } | |
88365 | 6313 return eol_seen; |
17052 | 6314 } |
6315 | |
88365 | 6316 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6317 static Lisp_Object |
88365 | 6318 adjust_coding_eol_type (coding, eol_seen) |
6319 struct coding_system *coding; | |
6320 int eol_seen; | |
6321 { | |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
6322 Lisp_Object eol_type; |
89483 | 6323 |
88365 | 6324 eol_type = CODING_ID_EOL_TYPE (coding->id); |
6325 if (eol_seen & EOL_SEEN_LF) | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6326 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6327 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 0)); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6328 eol_type = Qunix; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6329 } |
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
6330 else if (eol_seen & EOL_SEEN_CRLF) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6331 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6332 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 1)); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6333 eol_type = Qdos; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6334 } |
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
6335 else if (eol_seen & EOL_SEEN_CR) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6336 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6337 coding->id = CODING_SYSTEM_ID (AREF (eol_type, 2)); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6338 eol_type = Qmac; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6339 } |
19181
917138730635
(detect_eol_type): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
19173
diff
changeset
|
6340 return eol_type; |
17052 | 6341 } |
6342 | |
88365 | 6343 /* Detect how a text specified in CODING is encoded. If a coding |
6344 system is detected, update fields of CODING by the detected coding | |
6345 system. */ | |
17052 | 6346 |
6347 void | |
88365 | 6348 detect_coding (coding) |
17052 | 6349 struct coding_system *coding; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6350 { |
89483 | 6351 const unsigned char *src, *src_end; |
102105
a5023e8bbb1e
(detect_coding): Preserve coding->mode.
Kenichi Handa <handa@m17n.org>
parents:
102058
diff
changeset
|
6352 int saved_mode = coding->mode; |
88365 | 6353 |
6354 coding->consumed = coding->consumed_char = 0; | |
6355 coding->produced = coding->produced_char = 0; | |
6356 coding_set_source (coding); | |
6357 | |
6358 src_end = coding->source + coding->src_bytes; | |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6359 coding->head_ascii = 0; |
88365 | 6360 |
6361 /* If we have not yet decided the text encoding type, detect it | |
6362 now. */ | |
6363 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qundecided)) | |
6364 { | |
6365 int c, i; | |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6366 struct coding_detection_info detect_info; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6367 int null_byte_found = 0, eight_bit_found = 0; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6368 |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6369 detect_info.checked = detect_info.found = detect_info.rejected = 0; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6370 for (src = coding->source; src < src_end; src++) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6371 { |
88365 | 6372 c = *src; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6373 if (c & 0x80) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6374 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6375 eight_bit_found = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6376 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6377 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6378 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6379 else if (c < 0x20) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6380 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6381 if ((c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6382 && ! inhibit_iso_escape_detection |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6383 && ! detect_info.checked) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6384 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6385 if (detect_coding_iso_2022 (coding, &detect_info)) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6386 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6387 /* We have scanned the whole data. */ |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6388 if (! (detect_info.rejected & CATEGORY_MASK_ISO_7_ELSE)) |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6389 { |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6390 /* We didn't find an 8-bit code. We may |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6391 have found a null-byte, but it's very |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6392 rare that a binary file confirm to |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6393 ISO-2022. */ |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6394 src = src_end; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6395 coding->head_ascii = src - coding->source; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6396 } |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6397 detect_info.rejected |= ~CATEGORY_MASK_ISO_ESCAPE; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6398 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6399 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6400 } |
101040 | 6401 else if (! c && !inhibit_null_byte_detection) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6402 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6403 null_byte_found = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6404 if (eight_bit_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6405 break; |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6406 } |
95585
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
6407 if (! eight_bit_found) |
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
6408 coding->head_ascii++; |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6409 } |
95585
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
6410 else if (! eight_bit_found) |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6411 coding->head_ascii++; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6412 } |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6413 |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6414 if (null_byte_found || eight_bit_found |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6415 || coding->head_ascii < coding->src_bytes |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6416 || detect_info.found) |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6417 { |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6418 enum coding_category category; |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6419 struct coding_system *this; |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6420 |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6421 if (coding->head_ascii == coding->src_bytes) |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6422 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */ |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6423 for (i = 0; i < coding_category_raw_text; i++) |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6424 { |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6425 category = coding_priorities[i]; |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6426 this = coding_categories + category; |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6427 if (detect_info.found & (1 << category)) |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6428 break; |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6429 } |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6430 else |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6431 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6432 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6433 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6434 detect_info.checked |= ~CATEGORY_MASK_UTF_16; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6435 detect_info.rejected |= ~CATEGORY_MASK_UTF_16; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6436 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6437 for (i = 0; i < coding_category_raw_text; i++) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6438 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6439 category = coding_priorities[i]; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6440 this = coding_categories + category; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6441 if (this->id < 0) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6442 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6443 /* No coding system of this category is defined. */ |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6444 detect_info.rejected |= (1 << category); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6445 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6446 else if (category >= coding_category_raw_text) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6447 continue; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6448 else if (detect_info.checked & (1 << category)) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6449 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6450 if (detect_info.found & (1 << category)) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6451 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6452 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6453 else if ((*(this->detector)) (coding, &detect_info) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6454 && detect_info.found & (1 << category)) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6455 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6456 if (category == coding_category_utf_16_auto) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6457 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6458 if (detect_info.found & CATEGORY_MASK_UTF_16_LE) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6459 category = coding_category_utf_16_le; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6460 else |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6461 category = coding_category_utf_16_be; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6462 } |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6463 break; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6464 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6465 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6466 } |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6467 |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6468 if (i < coding_category_raw_text) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6469 setup_coding_system (CODING_ID_NAME (this->id), coding); |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6470 else if (null_byte_found) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6471 setup_coding_system (Qno_conversion, coding); |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6472 else if ((detect_info.rejected & CATEGORY_MASK_ANY) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6473 == CATEGORY_MASK_ANY) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6474 setup_coding_system (Qraw_text, coding); |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6475 else if (detect_info.rejected) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6476 for (i = 0; i < coding_category_raw_text; i++) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6477 if (! (detect_info.rejected & (1 << coding_priorities[i]))) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6478 { |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6479 this = coding_categories + coding_priorities[i]; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6480 setup_coding_system (CODING_ID_NAME (this->id), coding); |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6481 break; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6482 } |
88365 | 6483 } |
6484 } | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6485 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding->id))) |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6486 == coding_category_utf_8_auto) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6487 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6488 Lisp_Object coding_systems; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6489 struct coding_detection_info detect_info; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6490 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6491 coding_systems |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6492 = AREF (CODING_ID_ATTRS (coding->id), coding_attr_utf_bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6493 detect_info.found = detect_info.rejected = 0; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6494 coding->head_ascii = 0; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6495 if (CONSP (coding_systems) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6496 && detect_coding_utf_8 (coding, &detect_info)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6497 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6498 if (detect_info.found & CATEGORY_MASK_UTF_8_SIG) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6499 setup_coding_system (XCAR (coding_systems), coding); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6500 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6501 setup_coding_system (XCDR (coding_systems), coding); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6502 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6503 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6504 else if (XINT (CODING_ATTR_CATEGORY (CODING_ID_ATTRS (coding->id))) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6505 == coding_category_utf_16_auto) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6506 { |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6507 Lisp_Object coding_systems; |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6508 struct coding_detection_info detect_info; |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6509 |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6510 coding_systems |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6511 = AREF (CODING_ID_ATTRS (coding->id), coding_attr_utf_bom); |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6512 detect_info.found = detect_info.rejected = 0; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6513 coding->head_ascii = 0; |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6514 if (CONSP (coding_systems) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6515 && detect_coding_utf_16 (coding, &detect_info)) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6516 { |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6517 if (detect_info.found & CATEGORY_MASK_UTF_16_LE) |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6518 setup_coding_system (XCAR (coding_systems), coding); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6519 else if (detect_info.found & CATEGORY_MASK_UTF_16_BE) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6520 setup_coding_system (XCDR (coding_systems), coding); |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6521 } |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6522 } |
102105
a5023e8bbb1e
(detect_coding): Preserve coding->mode.
Kenichi Handa <handa@m17n.org>
parents:
102058
diff
changeset
|
6523 coding->mode = saved_mode; |
88365 | 6524 } |
6525 | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6526 |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6527 static void |
88365 | 6528 decode_eol (coding) |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6529 struct coding_system *coding; |
88365 | 6530 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6531 Lisp_Object eol_type; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6532 unsigned char *p, *pbeg, *pend; |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
6533 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6534 eol_type = CODING_ID_EOL_TYPE (coding->id); |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
6535 if (EQ (eol_type, Qunix) || inhibit_eol_conversion) |
17052 | 6536 return; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6537 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6538 if (NILP (coding->dst_object)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6539 pbeg = coding->destination; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6540 else |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6541 pbeg = BYTE_POS_ADDR (coding->dst_pos_byte); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6542 pend = pbeg + coding->produced; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6543 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6544 if (VECTORP (eol_type)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6545 { |
88365 | 6546 int eol_seen = EOL_SEEN_NONE; |
6547 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6548 for (p = pbeg; p < pend; p++) |
88365 | 6549 { |
6550 if (*p == '\n') | |
6551 eol_seen |= EOL_SEEN_LF; | |
6552 else if (*p == '\r') | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6553 { |
88365 | 6554 if (p + 1 < pend && *(p + 1) == '\n') |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6555 { |
88365 | 6556 eol_seen |= EOL_SEEN_CRLF; |
6557 p++; | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6558 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6559 else |
88365 | 6560 eol_seen |= EOL_SEEN_CR; |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6561 } |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6562 } |
101678
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6563 /* Handle DOS-style EOLs in a file with stray ^M characters. */ |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6564 if ((eol_seen & EOL_SEEN_CRLF) != 0 |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6565 && (eol_seen & EOL_SEEN_CR) != 0 |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6566 && (eol_seen & EOL_SEEN_LF) == 0) |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6567 eol_seen = EOL_SEEN_CRLF; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6568 else if (eol_seen != EOL_SEEN_NONE |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6569 && eol_seen != EOL_SEEN_LF |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6570 && eol_seen != EOL_SEEN_CRLF |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6571 && eol_seen != EOL_SEEN_CR) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6572 eol_seen = EOL_SEEN_LF; |
88365 | 6573 if (eol_seen != EOL_SEEN_NONE) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6574 eol_type = adjust_coding_eol_type (coding, eol_seen); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6575 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6576 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6577 if (EQ (eol_type, Qmac)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6578 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6579 for (p = pbeg; p < pend; p++) |
88365 | 6580 if (*p == '\r') |
6581 *p = '\n'; | |
6582 } | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6583 else if (EQ (eol_type, Qdos)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6584 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6585 int n = 0; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6586 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6587 if (NILP (coding->dst_object)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6588 { |
90378
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6589 /* Start deleting '\r' from the tail to minimize the memory |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6590 movement. */ |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6591 for (p = pend - 2; p >= pbeg; p--) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6592 if (*p == '\r') |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6593 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6594 safe_bcopy ((char *) (p + 1), (char *) p, pend-- - p - 1); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6595 n++; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6596 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6597 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6598 else |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6599 { |
90378
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6600 int pos_byte = coding->dst_pos_byte; |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6601 int pos = coding->dst_pos; |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6602 int pos_end = pos + coding->produced_char - 1; |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6603 |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6604 while (pos < pos_end) |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6605 { |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6606 p = BYTE_POS_ADDR (pos_byte); |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6607 if (*p == '\r' && p[1] == '\n') |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6608 { |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6609 del_range_2 (pos, pos_byte, pos + 1, pos_byte + 1, 0); |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6610 n++; |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6611 pos_end--; |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6612 } |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6613 pos++; |
91535
419a669bc4f2
(decode_eol): Pay attention to coding->dst_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
91367
diff
changeset
|
6614 if (coding->dst_multibyte) |
419a669bc4f2
(decode_eol): Pay attention to coding->dst_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
91367
diff
changeset
|
6615 pos_byte += BYTES_BY_CHAR_HEAD (*p); |
419a669bc4f2
(decode_eol): Pay attention to coding->dst_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
91367
diff
changeset
|
6616 else |
419a669bc4f2
(decode_eol): Pay attention to coding->dst_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
91367
diff
changeset
|
6617 pos_byte++; |
90378
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6618 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6619 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6620 coding->produced -= n; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6621 coding->produced_char -= n; |
17052 | 6622 } |
6623 } | |
6624 | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6625 |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6626 /* Return a translation table (or list of them) from coding system |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6627 attribute vector ATTRS for encoding (ENCODEP is nonzero) or |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6628 decoding (ENCODEP is zero). */ |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6629 |
89858
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
6630 static Lisp_Object |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6631 get_translation_table (attrs, encodep, max_lookup) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6632 Lisp_Object attrs; |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6633 int encodep, *max_lookup; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6634 { |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6635 Lisp_Object standard, translation_table; |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6636 Lisp_Object val; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6637 |
103306
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6638 if (NILP (Venable_character_translation)) |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6639 { |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6640 if (max_lookup) |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6641 *max_lookup = 0; |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6642 return Qnil; |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6643 } |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6644 if (encodep) |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6645 translation_table = CODING_ATTR_ENCODE_TBL (attrs), |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6646 standard = Vstandard_translation_table_for_encode; |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6647 else |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6648 translation_table = CODING_ATTR_DECODE_TBL (attrs), |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6649 standard = Vstandard_translation_table_for_decode; |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6650 if (NILP (translation_table)) |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6651 translation_table = standard; |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6652 else |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6653 { |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6654 if (SYMBOLP (translation_table)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6655 translation_table = Fget (translation_table, Qtranslation_table); |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6656 else if (CONSP (translation_table)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6657 { |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6658 translation_table = Fcopy_sequence (translation_table); |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6659 for (val = translation_table; CONSP (val); val = XCDR (val)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6660 if (SYMBOLP (XCAR (val))) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6661 XSETCAR (val, Fget (XCAR (val), Qtranslation_table)); |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6662 } |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6663 if (CHAR_TABLE_P (standard)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6664 { |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6665 if (CONSP (translation_table)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6666 translation_table = nconc2 (translation_table, |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6667 Fcons (standard, Qnil)); |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6668 else |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6669 translation_table = Fcons (translation_table, |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6670 Fcons (standard, Qnil)); |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6671 } |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6672 } |
89861
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6673 |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6674 if (max_lookup) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6675 { |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6676 *max_lookup = 1; |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6677 if (CHAR_TABLE_P (translation_table) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6678 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (translation_table)) > 1) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6679 { |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6680 val = XCHAR_TABLE (translation_table)->extras[1]; |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6681 if (NATNUMP (val) && *max_lookup < XFASTINT (val)) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6682 *max_lookup = XFASTINT (val); |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6683 } |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6684 else if (CONSP (translation_table)) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6685 { |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6686 Lisp_Object tail, val; |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6687 |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6688 for (tail = translation_table; CONSP (tail); tail = XCDR (tail)) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6689 if (CHAR_TABLE_P (XCAR (tail)) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6690 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (XCAR (tail))) > 1) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6691 { |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6692 val = XCHAR_TABLE (XCAR (tail))->extras[1]; |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6693 if (NATNUMP (val) && *max_lookup < XFASTINT (val)) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6694 *max_lookup = XFASTINT (val); |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6695 } |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6696 } |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6697 } |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6698 return translation_table; |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6699 } |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6700 |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6701 #define LOOKUP_TRANSLATION_TABLE(table, c, trans) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6702 do { \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6703 trans = Qnil; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6704 if (CHAR_TABLE_P (table)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6705 { \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6706 trans = CHAR_TABLE_REF (table, c); \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6707 if (CHARACTERP (trans)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6708 c = XFASTINT (trans), trans = Qnil; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6709 } \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6710 else if (CONSP (table)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6711 { \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6712 Lisp_Object tail; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6713 \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6714 for (tail = table; CONSP (tail); tail = XCDR (tail)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6715 if (CHAR_TABLE_P (XCAR (tail))) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6716 { \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6717 trans = CHAR_TABLE_REF (XCAR (tail), c); \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6718 if (CHARACTERP (trans)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6719 c = XFASTINT (trans), trans = Qnil; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6720 else if (! NILP (trans)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6721 break; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6722 } \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6723 } \ |
89858
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
6724 } while (0) |
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
6725 |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6726 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6727 /* Return a translation of character(s) at BUF according to TRANS. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6728 TRANS is TO-CHAR or ((FROM . TO) ...) where |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6729 FROM = [FROM-CHAR ...], TO is TO-CHAR or [TO-CHAR ...]. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6730 The return value is TO-CHAR or ([FROM-CHAR ...] . TO) if a |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6731 translation is found, and Qnil if not found.. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6732 If BUF is too short to lookup characters in FROM, return Qt. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6733 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6734 static Lisp_Object |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6735 get_translation (trans, buf, buf_end) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6736 Lisp_Object trans; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6737 int *buf, *buf_end; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6738 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6739 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6740 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6741 return trans; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6742 for (; CONSP (trans); trans = XCDR (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6743 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6744 Lisp_Object val = XCAR (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6745 Lisp_Object from = XCAR (val); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6746 int len = ASIZE (from); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6747 int i; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6748 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6749 for (i = 0; i < len; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6750 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6751 if (buf + i == buf_end) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6752 return Qt; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6753 if (XINT (AREF (from, i)) != buf[i]) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6754 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6755 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6756 if (i == len) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6757 return val; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6758 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6759 return Qnil; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6760 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6761 |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6762 |
88365 | 6763 static int |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6764 produce_chars (coding, translation_table, last_block) |
17052 | 6765 struct coding_system *coding; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6766 Lisp_Object translation_table; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6767 int last_block; |
17052 | 6768 { |
88365 | 6769 unsigned char *dst = coding->destination + coding->produced; |
6770 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6771 EMACS_INT produced; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6772 EMACS_INT produced_chars = 0; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6773 int carryover = 0; |
88365 | 6774 |
6775 if (! coding->chars_at_source) | |
6776 { | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6777 /* Source characters are in coding->charbuf. */ |
89575
59d10ebd2a0b
(produce_chars): Revert last change.
Andreas Schwab <schwab@suse.de>
parents:
89571
diff
changeset
|
6778 int *buf = coding->charbuf; |
59d10ebd2a0b
(produce_chars): Revert last change.
Andreas Schwab <schwab@suse.de>
parents:
89571
diff
changeset
|
6779 int *buf_end = buf + coding->charbuf_used; |
88365 | 6780 |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6781 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6782 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6783 coding_set_source (coding); |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6784 dst_end = ((unsigned char *) coding->source) + coding->consumed; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6785 } |
88365 | 6786 |
6787 while (buf < buf_end) | |
6788 { | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6789 int c = *buf, i; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6790 |
88365 | 6791 if (c >= 0) |
6792 { | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6793 int from_nchars = 1, to_nchars = 1; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6794 Lisp_Object trans = Qnil; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6795 |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6796 LOOKUP_TRANSLATION_TABLE (translation_table, c, trans); |
89858
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
6797 if (! NILP (trans)) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6798 { |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6799 trans = get_translation (trans, buf, buf_end); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6800 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6801 c = XINT (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6802 else if (CONSP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6803 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6804 from_nchars = ASIZE (XCAR (trans)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6805 trans = XCDR (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6806 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6807 c = XINT (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6808 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6809 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6810 to_nchars = ASIZE (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6811 c = XINT (AREF (trans, 0)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6812 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6813 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6814 else if (EQ (trans, Qt) && ! last_block) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6815 break; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6816 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6817 |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6818 if (dst + MAX_MULTIBYTE_LENGTH * to_nchars > dst_end) |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6819 { |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6820 dst = alloc_destination (coding, |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6821 buf_end - buf |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6822 + MAX_MULTIBYTE_LENGTH * to_nchars, |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6823 dst); |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6824 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6825 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6826 coding_set_source (coding); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6827 dst_end = (((unsigned char *) coding->source) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6828 + coding->consumed); |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6829 } |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6830 else |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6831 dst_end = coding->destination + coding->dst_bytes; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6832 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6833 |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
6834 for (i = 0; i < to_nchars; i++) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6835 { |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
6836 if (i > 0) |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
6837 c = XINT (AREF (trans, i)); |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6838 if (coding->dst_multibyte |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6839 || ! CHAR_BYTE8_P (c)) |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6840 CHAR_STRING_ADVANCE_NO_UNIFY (c, dst); |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6841 else |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6842 *dst++ = CHAR_TO_BYTE8 (c); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6843 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6844 produced_chars += to_nchars; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6845 buf += from_nchars; |
88365 | 6846 } |
6847 else | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6848 /* This is an annotation datum. (-C) is the length. */ |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6849 buf += -c; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6850 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6851 carryover = buf_end - buf; |
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
6852 } |
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
6853 else |
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
6854 { |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6855 /* Source characters are at coding->source. */ |
89483 | 6856 const unsigned char *src = coding->source; |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6857 const unsigned char *src_end = src + coding->consumed; |
88365 | 6858 |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6859 if (EQ (coding->dst_object, coding->src_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6860 dst_end = (unsigned char *) src; |
88365 | 6861 if (coding->src_multibyte != coding->dst_multibyte) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6862 { |
88365 | 6863 if (coding->src_multibyte) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6864 { |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
6865 int multibytep = 1; |
100135
0e17542db552
(detect_coding_system): Initialize utf_16_le_eol to -1, val to
Kenichi Handa <handa@m17n.org>
parents:
100133
diff
changeset
|
6866 EMACS_INT consumed_chars = 0; |
88365 | 6867 |
6868 while (1) | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6869 { |
89483 | 6870 const unsigned char *src_base = src; |
88365 | 6871 int c; |
6872 | |
6873 ONE_MORE_BYTE (c); | |
6874 if (dst == dst_end) | |
6875 { | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6876 if (EQ (coding->src_object, coding->dst_object)) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6877 dst_end = (unsigned char *) src; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6878 if (dst == dst_end) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6879 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6880 EMACS_INT offset = src - coding->source; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6881 |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6882 dst = alloc_destination (coding, src_end - src + 1, |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6883 dst); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6884 dst_end = coding->destination + coding->dst_bytes; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6885 coding_set_source (coding); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6886 src = coding->source + offset; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6887 src_end = coding->source + coding->src_bytes; |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6888 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6889 dst_end = (unsigned char *) src; |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6890 } |
88365 | 6891 } |
6892 *dst++ = c; | |
6893 produced_chars++; | |
6894 } | |
6895 no_more_source: | |
6896 ; | |
6897 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6898 else |
88365 | 6899 while (src < src_end) |
6900 { | |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
6901 int multibytep = 1; |
88365 | 6902 int c = *src++; |
6903 | |
6904 if (dst >= dst_end - 1) | |
6905 { | |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
6906 if (EQ (coding->src_object, coding->dst_object)) |
89483 | 6907 dst_end = (unsigned char *) src; |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
6908 if (dst >= dst_end - 1) |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
6909 { |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6910 EMACS_INT offset = src - coding->source; |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6911 EMACS_INT more_bytes; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6912 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6913 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6914 more_bytes = ((src_end - src) / 2) + 2; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6915 else |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6916 more_bytes = src_end - src + 2; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6917 dst = alloc_destination (coding, more_bytes, dst); |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
6918 dst_end = coding->destination + coding->dst_bytes; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
6919 coding_set_source (coding); |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6920 src = coding->source + offset; |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
6921 src_end = coding->source + coding->src_bytes; |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6922 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6923 dst_end = (unsigned char *) src; |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
6924 } |
88365 | 6925 } |
6926 EMIT_ONE_BYTE (c); | |
6927 } | |
6928 } | |
6929 else | |
6930 { | |
6931 if (!EQ (coding->src_object, coding->dst_object)) | |
6932 { | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6933 EMACS_INT require = coding->src_bytes - coding->dst_bytes; |
88365 | 6934 |
6935 if (require > 0) | |
23325
bbd06336cd0c
(check_composing_code): If the current composing
Kenichi Handa <handa@m17n.org>
parents:
23315
diff
changeset
|
6936 { |
88365 | 6937 EMACS_INT offset = src - coding->source; |
6938 | |
6939 dst = alloc_destination (coding, require, dst); | |
6940 coding_set_source (coding); | |
6941 src = coding->source + offset; | |
6942 src_end = coding->source + coding->src_bytes; | |
23325
bbd06336cd0c
(check_composing_code): If the current composing
Kenichi Handa <handa@m17n.org>
parents:
23315
diff
changeset
|
6943 } |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6944 } |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6945 produced_chars = coding->consumed_char; |
88365 | 6946 while (src < src_end) |
92406
c36bda0a03cc
(decode_coding_big5, produce_chars): Fix typos in last
Andreas Schwab <schwab@suse.de>
parents:
92399
diff
changeset
|
6947 *dst++ = *src++; |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6948 } |
88365 | 6949 } |
6950 | |
6951 produced = dst - (coding->destination + coding->produced); | |
90809
3c52757d5f6e
(produce_chars): Don't call insert_from_gap if no
Kenichi Handa <handa@m17n.org>
parents:
90772
diff
changeset
|
6952 if (BUFFERP (coding->dst_object) && produced_chars > 0) |
88365 | 6953 insert_from_gap (produced_chars, produced); |
6954 coding->produced += produced; | |
6955 coding->produced_char += produced_chars; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6956 return carryover; |
88365 | 6957 } |
6958 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6959 /* Compose text in CODING->object according to the annotation data at |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6960 CHARBUF. CHARBUF is an array: |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6961 [ -LENGTH ANNOTATION_MASK NCHARS NBYTES METHOD [ COMPONENTS... ] ] |
88365 | 6962 */ |
6963 | |
6964 static INLINE void | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6965 produce_composition (coding, charbuf, pos) |
88365 | 6966 struct coding_system *coding; |
6967 int *charbuf; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6968 EMACS_INT pos; |
88365 | 6969 { |
6970 int len; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6971 EMACS_INT to; |
88365 | 6972 enum composition_method method; |
6973 Lisp_Object components; | |
6974 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6975 len = -charbuf[0] - MAX_ANNOTATION_LENGTH; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6976 to = pos + charbuf[2]; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6977 method = (enum composition_method) (charbuf[4]); |
88365 | 6978 |
6979 if (method == COMPOSITION_RELATIVE) | |
6980 components = Qnil; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6981 else |
88365 | 6982 { |
6983 Lisp_Object args[MAX_COMPOSITION_COMPONENTS * 2 - 1]; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6984 int i, j; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6985 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6986 if (method == COMPOSITION_WITH_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6987 len = charbuf[2] * 3 - 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6988 charbuf += MAX_ANNOTATION_LENGTH; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6989 /* charbuf = [ CHRA ... CHAR] or [ CHAR -2 RULE ... CHAR ] */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6990 for (i = j = 0; i < len && charbuf[i] != -1; i++, j++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6991 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6992 if (charbuf[i] >= 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6993 args[j] = make_number (charbuf[i]); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6994 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6995 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6996 i++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6997 args[j] = make_number (charbuf[i] % 0x100); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6998 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6999 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7000 components = (i == j ? Fstring (j, args) : Fvector (j, args)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7001 } |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7002 compose_text (pos, to, components, Qnil, coding->dst_object); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7003 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7004 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7005 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7006 /* Put `charset' property on text in CODING->object according to |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7007 the annotation data at CHARBUF. CHARBUF is an array: |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7008 [ -LENGTH ANNOTATION_MASK NCHARS CHARSET-ID ] |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7009 */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7010 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7011 static INLINE void |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7012 produce_charset (coding, charbuf, pos) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7013 struct coding_system *coding; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7014 int *charbuf; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7015 EMACS_INT pos; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7016 { |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7017 EMACS_INT from = pos - charbuf[2]; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7018 struct charset *charset = CHARSET_FROM_ID (charbuf[3]); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7019 |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7020 Fput_text_property (make_number (from), make_number (pos), |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7021 Qcharset, CHARSET_NAME (charset), |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7022 coding->dst_object); |
88365 | 7023 } |
7024 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7025 |
88365 | 7026 #define CHARBUF_SIZE 0x4000 |
7027 | |
7028 #define ALLOC_CONVERSION_WORK_AREA(coding) \ | |
7029 do { \ | |
101943
97c9e9322753
Remove spurious semicolons.
Juanma Barranquero <lekktu@gmail.com>
parents:
101904
diff
changeset
|
7030 int size = CHARBUF_SIZE; \ |
88365 | 7031 \ |
7032 coding->charbuf = NULL; \ | |
7033 while (size > 1024) \ | |
7034 { \ | |
7035 coding->charbuf = (int *) alloca (sizeof (int) * size); \ | |
7036 if (coding->charbuf) \ | |
7037 break; \ | |
7038 size >>= 1; \ | |
7039 } \ | |
7040 if (! coding->charbuf) \ | |
7041 { \ | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7042 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_MEM); \ |
88365 | 7043 return coding->result; \ |
7044 } \ | |
7045 coding->charbuf_size = size; \ | |
7046 } while (0) | |
7047 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7048 |
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
7049 static void |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7050 produce_annotation (coding, pos) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7051 struct coding_system *coding; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7052 EMACS_INT pos; |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7053 { |
88365 | 7054 int *charbuf = coding->charbuf; |
7055 int *charbuf_end = charbuf + coding->charbuf_used; | |
7056 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7057 if (NILP (coding->dst_object)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7058 return; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7059 |
88365 | 7060 while (charbuf < charbuf_end) |
7061 { | |
7062 if (*charbuf >= 0) | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7063 pos++, charbuf++; |
88365 | 7064 else |
29877
7b43e1fb478a
(decode_eol_post_ccl): Special handling for undecided
Eli Zaretskii <eliz@gnu.org>
parents:
29725
diff
changeset
|
7065 { |
88365 | 7066 int len = -*charbuf; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7067 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7068 if (len > 2) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7069 switch (charbuf[1]) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7070 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7071 case CODING_ANNOTATE_COMPOSITION_MASK: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7072 produce_composition (coding, charbuf, pos); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7073 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7074 case CODING_ANNOTATE_CHARSET_MASK: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7075 produce_charset (coding, charbuf, pos); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7076 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7077 } |
88365 | 7078 charbuf += len; |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7079 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7080 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7081 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7082 |
88365 | 7083 /* Decode the data at CODING->src_object into CODING->dst_object. |
7084 CODING->src_object is a buffer, a string, or nil. | |
7085 CODING->dst_object is a buffer. | |
7086 | |
7087 If CODING->src_object is a buffer, it must be the current buffer. | |
7088 In this case, if CODING->src_pos is positive, it is a position of | |
7089 the source text in the buffer, otherwise, the source text is in the | |
7090 gap area of the buffer, and CODING->src_pos specifies the offset of | |
7091 the text from GPT (which must be the same as PT). If this is the | |
7092 same buffer as CODING->dst_object, CODING->src_pos must be | |
7093 negative. | |
7094 | |
90380
4bf7966e0788
(decode_coding): Typo in comment fixed.
Kenichi Handa <handa@m17n.org>
parents:
90378
diff
changeset
|
7095 If CODING->src_object is a string, CODING->src_pos is an index to |
88365 | 7096 that string. |
7097 | |
7098 If CODING->src_object is nil, CODING->source must already point to | |
7099 the non-relocatable memory area. In this case, CODING->src_pos is | |
7100 an offset from CODING->source. | |
7101 | |
7102 The decoded data is inserted at the current point of the buffer | |
7103 CODING->dst_object. | |
7104 */ | |
7105 | |
7106 static int | |
7107 decode_coding (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7108 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7109 { |
88365 | 7110 Lisp_Object attrs; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7111 Lisp_Object undo_list; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
7112 Lisp_Object translation_table; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7113 int carryover; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7114 int i; |
88365 | 7115 |
7116 if (BUFFERP (coding->src_object) | |
7117 && coding->src_pos > 0 | |
7118 && coding->src_pos < GPT | |
7119 && coding->src_pos + coding->src_chars > GPT) | |
7120 move_gap_both (coding->src_pos, coding->src_pos_byte); | |
7121 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7122 undo_list = Qt; |
88365 | 7123 if (BUFFERP (coding->dst_object)) |
7124 { | |
7125 if (current_buffer != XBUFFER (coding->dst_object)) | |
7126 set_buffer_internal (XBUFFER (coding->dst_object)); | |
7127 if (GPT != PT) | |
7128 move_gap_both (PT, PT_BYTE); | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7129 undo_list = current_buffer->undo_list; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7130 current_buffer->undo_list = Qt; |
88365 | 7131 } |
7132 | |
7133 coding->consumed = coding->consumed_char = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7134 coding->produced = coding->produced_char = 0; |
88365 | 7135 coding->chars_at_source = 0; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7136 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7137 coding->errors = 0; |
88365 | 7138 |
7139 ALLOC_CONVERSION_WORK_AREA (coding); | |
7140 | |
7141 attrs = CODING_ID_ATTRS (coding->id); | |
89861
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
7142 translation_table = get_translation_table (attrs, 0, NULL); |
88365 | 7143 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7144 carryover = 0; |
88365 | 7145 do |
7146 { | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7147 EMACS_INT pos = coding->dst_pos + coding->produced_char; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7148 |
88365 | 7149 coding_set_source (coding); |
7150 coding->annotated = 0; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7151 coding->charbuf_used = carryover; |
88365 | 7152 (*(coding->decoder)) (coding); |
7153 coding_set_destination (coding); | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7154 carryover = produce_chars (coding, translation_table, 0); |
88365 | 7155 if (coding->annotated) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7156 produce_annotation (coding, pos); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7157 for (i = 0; i < carryover; i++) |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7158 coding->charbuf[i] |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7159 = coding->charbuf[coding->charbuf_used - carryover + i]; |
88365 | 7160 } |
7161 while (coding->consumed < coding->src_bytes | |
90336
f0338dbf2276
(decode_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
90327
diff
changeset
|
7162 && (coding->result == CODING_RESULT_SUCCESS |
f0338dbf2276
(decode_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
90327
diff
changeset
|
7163 || coding->result == CODING_RESULT_INVALID_SRC)); |
88365 | 7164 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7165 if (carryover > 0) |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7166 { |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7167 coding_set_destination (coding); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7168 coding->charbuf_used = carryover; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7169 produce_chars (coding, translation_table, 1); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7170 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7171 |
88365 | 7172 coding->carryover_bytes = 0; |
7173 if (coding->consumed < coding->src_bytes) | |
7174 { | |
7175 int nbytes = coding->src_bytes - coding->consumed; | |
89483 | 7176 const unsigned char *src; |
88365 | 7177 |
7178 coding_set_source (coding); | |
7179 coding_set_destination (coding); | |
7180 src = coding->source + coding->consumed; | |
7181 | |
7182 if (coding->mode & CODING_MODE_LAST_BLOCK) | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7183 { |
88365 | 7184 /* Flush out unprocessed data as binary chars. We are sure |
7185 that the number of data is less than the size of | |
7186 coding->charbuf. */ | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7187 coding->charbuf_used = 0; |
100587
d91e3320dd81
(decode_coding): Clear chars_at_source flag when using charbuf.
Jason Rumney <jasonr@gnu.org>
parents:
100303
diff
changeset
|
7188 coding->chars_at_source = 0; |
d91e3320dd81
(decode_coding): Clear chars_at_source flag when using charbuf.
Jason Rumney <jasonr@gnu.org>
parents:
100303
diff
changeset
|
7189 |
88365 | 7190 while (nbytes-- > 0) |
7191 { | |
7192 int c = *src++; | |
89279
1fd77c471ee6
(decode_coding_utf_8): When eol_type is Qdos, handle
Kenichi Handa <handa@m17n.org>
parents:
89227
diff
changeset
|
7193 |
90243
c59afb15f5c6
(decode_coding): Fix handling of invalid bytes.
Kenichi Handa <handa@m17n.org>
parents:
90231
diff
changeset
|
7194 if (c & 0x80) |
c59afb15f5c6
(decode_coding): Fix handling of invalid bytes.
Kenichi Handa <handa@m17n.org>
parents:
90231
diff
changeset
|
7195 c = BYTE8_TO_CHAR (c); |
c59afb15f5c6
(decode_coding): Fix handling of invalid bytes.
Kenichi Handa <handa@m17n.org>
parents:
90231
diff
changeset
|
7196 coding->charbuf[coding->charbuf_used++] = c; |
88365 | 7197 } |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
7198 produce_chars (coding, Qnil, 1); |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7199 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7200 else |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7201 { |
88365 | 7202 /* Record unprocessed bytes in coding->carryover. We are |
7203 sure that the number of data is less than the size of | |
7204 coding->carryover. */ | |
7205 unsigned char *p = coding->carryover; | |
7206 | |
102115
db1f94e25359
(detect_coding): Don't overflow coding->carryover.
Kenichi Handa <handa@m17n.org>
parents:
102105
diff
changeset
|
7207 if (nbytes > sizeof coding->carryover) |
db1f94e25359
(detect_coding): Don't overflow coding->carryover.
Kenichi Handa <handa@m17n.org>
parents:
102105
diff
changeset
|
7208 nbytes = sizeof coding->carryover; |
88365 | 7209 coding->carryover_bytes = nbytes; |
7210 while (nbytes-- > 0) | |
7211 *p++ = *src++; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7212 } |
88365 | 7213 coding->consumed = coding->src_bytes; |
7214 } | |
7215 | |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
7216 if (! EQ (CODING_ID_EOL_TYPE (coding->id), Qunix) |
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
7217 && !inhibit_eol_conversion) |
90378
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
7218 decode_eol (coding); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7219 if (BUFFERP (coding->dst_object)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7220 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7221 current_buffer->undo_list = undo_list; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7222 record_insert (coding->dst_pos, coding->produced_char); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7223 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7224 return coding->result; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7225 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7226 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7227 |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
7228 /* Extract an annotation datum from a composition starting at POS and |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7229 ending before LIMIT of CODING->src_object (buffer or string), store |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7230 the data in BUF, set *STOP to a starting position of the next |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7231 composition (if any) or to LIMIT, and return the address of the |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7232 next element of BUF. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7233 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7234 If such an annotation is not found, set *STOP to a starting |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7235 position of a composition after POS (if any) or to LIMIT, and |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7236 return BUF. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7237 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7238 static INLINE int * |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7239 handle_composition_annotation (pos, limit, coding, buf, stop) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7240 EMACS_INT pos, limit; |
26847 | 7241 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7242 int *buf; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7243 EMACS_INT *stop; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7244 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7245 EMACS_INT start, end; |
26847 | 7246 Lisp_Object prop; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7247 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7248 if (! find_composition (pos, limit, &start, &end, &prop, coding->src_object) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7249 || end > limit) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7250 *stop = limit; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7251 else if (start > pos) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7252 *stop = start; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7253 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7254 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7255 if (start == pos) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7256 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7257 /* We found a composition. Store the corresponding |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7258 annotation data in BUF. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7259 int *head = buf; |
26847 | 7260 enum composition_method method = COMPOSITION_METHOD (prop); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7261 int nchars = COMPOSITION_LENGTH (prop); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7262 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7263 ADD_COMPOSITION_DATA (buf, nchars, 0, method); |
26847 | 7264 if (method != COMPOSITION_RELATIVE) |
7265 { | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7266 Lisp_Object components; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7267 int len, i, i_byte; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7268 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7269 components = COMPOSITION_COMPONENTS (prop); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7270 if (VECTORP (components)) |
26847 | 7271 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7272 len = XVECTOR (components)->size; |
26847 | 7273 for (i = 0; i < len; i++) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7274 *buf++ = XINT (AREF (components, i)); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7275 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7276 else if (STRINGP (components)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7277 { |
89483 | 7278 len = SCHARS (components); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7279 i = i_byte = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7280 while (i < len) |
26847 | 7281 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7282 FETCH_STRING_CHAR_ADVANCE (*buf, components, i, i_byte); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7283 buf++; |
26847 | 7284 } |
7285 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7286 else if (INTEGERP (components)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7287 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7288 len = 1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7289 *buf++ = XINT (components); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7290 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7291 else if (CONSP (components)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7292 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7293 for (len = 0; CONSP (components); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7294 len++, components = XCDR (components)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7295 *buf++ = XINT (XCAR (components)); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7296 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7297 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7298 abort (); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7299 *head -= len; |
26847 | 7300 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7301 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7302 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7303 if (find_composition (end, limit, &start, &end, &prop, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7304 coding->src_object) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7305 && end <= limit) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7306 *stop = start; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7307 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7308 *stop = limit; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7309 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7310 return buf; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7311 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7312 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7313 |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
7314 /* Extract an annotation datum from a text property `charset' at POS of |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7315 CODING->src_object (buffer of string), store the data in BUF, set |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7316 *STOP to the position where the value of `charset' property changes |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7317 (limiting by LIMIT), and return the address of the next element of |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7318 BUF. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7319 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7320 If the property value is nil, set *STOP to the position where the |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7321 property value is non-nil (limiting by LIMIT), and return BUF. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7322 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7323 static INLINE int * |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7324 handle_charset_annotation (pos, limit, coding, buf, stop) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7325 EMACS_INT pos, limit; |
26847 | 7326 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7327 int *buf; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7328 EMACS_INT *stop; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7329 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7330 Lisp_Object val, next; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7331 int id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7332 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7333 val = Fget_text_property (make_number (pos), Qcharset, coding->src_object); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7334 if (! NILP (val) && CHARSETP (val)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7335 id = XINT (CHARSET_SYMBOL_ID (val)); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7336 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7337 id = -1; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7338 ADD_CHARSET_DATA (buf, 0, id); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7339 next = Fnext_single_property_change (make_number (pos), Qcharset, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7340 coding->src_object, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7341 make_number (limit)); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7342 *stop = XINT (next); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7343 return buf; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7344 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7345 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7346 |
88365 | 7347 static void |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7348 consume_chars (coding, translation_table, max_lookup) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7349 struct coding_system *coding; |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7350 Lisp_Object translation_table; |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7351 int max_lookup; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7352 { |
88365 | 7353 int *buf = coding->charbuf; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7354 int *buf_end = coding->charbuf + coding->charbuf_size; |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
7355 const unsigned char *src = coding->source + coding->consumed; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7356 const unsigned char *src_end = coding->source + coding->src_bytes; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7357 EMACS_INT pos = coding->src_pos + coding->consumed_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7358 EMACS_INT end_pos = coding->src_pos + coding->src_chars; |
88365 | 7359 int multibytep = coding->src_multibyte; |
7360 Lisp_Object eol_type; | |
7361 int c; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7362 EMACS_INT stop, stop_composition, stop_charset; |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7363 int *lookup_buf = NULL; |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7364 |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7365 if (! NILP (translation_table)) |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7366 lookup_buf = alloca (sizeof (int) * max_lookup); |
88365 | 7367 |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
7368 eol_type = inhibit_eol_conversion ? Qunix : CODING_ID_EOL_TYPE (coding->id); |
88365 | 7369 if (VECTORP (eol_type)) |
7370 eol_type = Qunix; | |
7371 | |
7372 /* Note: composition handling is not yet implemented. */ | |
7373 coding->common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
7374 | |
89562
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7375 if (NILP (coding->src_object)) |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7376 stop = stop_composition = stop_charset = end_pos; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7377 else |
89562
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7378 { |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7379 if (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK) |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7380 stop = stop_composition = pos; |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7381 else |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7382 stop = stop_composition = end_pos; |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7383 if (coding->common_flags & CODING_ANNOTATE_CHARSET_MASK) |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7384 stop = stop_charset = pos; |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7385 else |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7386 stop_charset = end_pos; |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7387 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7388 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7389 /* Compensate for CRLF and conversion. */ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7390 buf_end -= 1 + MAX_ANNOTATION_LENGTH; |
88365 | 7391 while (buf < buf_end) |
7392 { | |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7393 Lisp_Object trans; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7394 |
88365 | 7395 if (pos == stop) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7396 { |
88365 | 7397 if (pos == end_pos) |
7398 break; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7399 if (pos == stop_composition) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7400 buf = handle_composition_annotation (pos, end_pos, coding, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7401 buf, &stop_composition); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7402 if (pos == stop_charset) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7403 buf = handle_charset_annotation (pos, end_pos, coding, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7404 buf, &stop_charset); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7405 stop = (stop_composition < stop_charset |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7406 ? stop_composition : stop_charset); |
88365 | 7407 } |
7408 | |
7409 if (! multibytep) | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7410 { |
89462
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
7411 EMACS_INT bytes; |
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
7412 |
89933
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7413 if (coding->encoder == encode_coding_raw_text) |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7414 c = *src++, pos++; |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7415 else if ((bytes = MULTIBYTE_LENGTH (src, src_end)) > 0) |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
7416 c = STRING_CHAR_ADVANCE_NO_UNIFY (src), pos += bytes; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7417 else |
89917
1763eef5ad02
(encode_coding_utf_8): Fix handling of raw-byte char.
Kenichi Handa <handa@m17n.org>
parents:
89905
diff
changeset
|
7418 c = BYTE8_TO_CHAR (*src), src++, pos++; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7419 } |
88365 | 7420 else |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
7421 c = STRING_CHAR_ADVANCE_NO_UNIFY (src), pos++; |
88365 | 7422 if ((c == '\r') && (coding->mode & CODING_MODE_SELECTIVE_DISPLAY)) |
7423 c = '\n'; | |
7424 if (! EQ (eol_type, Qunix)) | |
7425 { | |
7426 if (c == '\n') | |
32443
57fa108c491f
(code_convert_region): Be sure to initialize coding->category_idx.
Kenichi Handa <handa@m17n.org>
parents:
31458
diff
changeset
|
7427 { |
88365 | 7428 if (EQ (eol_type, Qdos)) |
7429 *buf++ = '\r'; | |
7430 else | |
7431 c = '\r'; | |
32443
57fa108c491f
(code_convert_region): Be sure to initialize coding->category_idx.
Kenichi Handa <handa@m17n.org>
parents:
31458
diff
changeset
|
7432 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7433 } |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7434 |
89858
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
7435 trans = Qnil; |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7436 LOOKUP_TRANSLATION_TABLE (translation_table, c, trans); |
89858
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
7437 if (NILP (trans)) |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7438 *buf++ = c; |
26847 | 7439 else |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7440 { |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7441 int from_nchars = 1, to_nchars = 1; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7442 int *lookup_buf_end; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7443 const unsigned char *p = src; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7444 int i; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7445 |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7446 lookup_buf[0] = c; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7447 for (i = 1; i < max_lookup && p < src_end; i++) |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7448 lookup_buf[i] = STRING_CHAR_ADVANCE (p); |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7449 lookup_buf_end = lookup_buf + i; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7450 trans = get_translation (trans, lookup_buf, lookup_buf_end); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7451 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7452 c = XINT (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7453 else if (CONSP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7454 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7455 from_nchars = ASIZE (XCAR (trans)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7456 trans = XCDR (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7457 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7458 c = XINT (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7459 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7460 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7461 to_nchars = ASIZE (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7462 if (buf + to_nchars > buf_end) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7463 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7464 c = XINT (AREF (trans, 0)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7465 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7466 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7467 else |
23881
20d595402dea
(DECODE_DESIGNATION): Jump to label_invalid_code if
Kenichi Handa <handa@m17n.org>
parents:
23564
diff
changeset
|
7468 break; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7469 *buf++ = c; |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7470 for (i = 1; i < to_nchars; i++) |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7471 *buf++ = XINT (AREF (trans, i)); |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7472 for (i = 1; i < from_nchars; i++, pos++) |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7473 src += MULTIBYTE_LENGTH_NO_CHECK (src); |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7474 } |
88365 | 7475 } |
7476 | |
7477 coding->consumed = src - coding->source; | |
7478 coding->consumed_char = pos - coding->src_pos; | |
7479 coding->charbuf_used = buf - coding->charbuf; | |
7480 coding->chars_at_source = 0; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7481 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7482 |
88365 | 7483 |
7484 /* Encode the text at CODING->src_object into CODING->dst_object. | |
7485 CODING->src_object is a buffer or a string. | |
7486 CODING->dst_object is a buffer or nil. | |
7487 | |
7488 If CODING->src_object is a buffer, it must be the current buffer. | |
7489 In this case, if CODING->src_pos is positive, it is a position of | |
7490 the source text in the buffer, otherwise. the source text is in the | |
7491 gap area of the buffer, and coding->src_pos specifies the offset of | |
7492 the text from GPT (which must be the same as PT). If this is the | |
7493 same buffer as CODING->dst_object, CODING->src_pos must be | |
7494 negative and CODING should not have `pre-write-conversion'. | |
7495 | |
7496 If CODING->src_object is a string, CODING should not have | |
7497 `pre-write-conversion'. | |
7498 | |
7499 If CODING->dst_object is a buffer, the encoded data is inserted at | |
7500 the current point of that buffer. | |
7501 | |
7502 If CODING->dst_object is nil, the encoded data is placed at the | |
7503 memory area specified by CODING->destination. */ | |
7504 | |
7505 static int | |
7506 encode_coding (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7507 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7508 { |
88365 | 7509 Lisp_Object attrs; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
7510 Lisp_Object translation_table; |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7511 int max_lookup; |
88365 | 7512 |
7513 attrs = CODING_ID_ATTRS (coding->id); | |
89933
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7514 if (coding->encoder == encode_coding_raw_text) |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7515 translation_table = Qnil, max_lookup = 0; |
42661
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
7516 else |
89933
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7517 translation_table = get_translation_table (attrs, 1, &max_lookup); |
88365 | 7518 |
7519 if (BUFFERP (coding->dst_object)) | |
7520 { | |
7521 set_buffer_internal (XBUFFER (coding->dst_object)); | |
7522 coding->dst_multibyte | |
7523 = ! NILP (current_buffer->enable_multibyte_characters); | |
7524 } | |
7525 | |
7526 coding->consumed = coding->consumed_char = 0; | |
7527 coding->produced = coding->produced_char = 0; | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7528 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 7529 coding->errors = 0; |
7530 | |
7531 ALLOC_CONVERSION_WORK_AREA (coding); | |
7532 | |
7533 do { | |
7534 coding_set_source (coding); | |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7535 consume_chars (coding, translation_table, max_lookup); |
88365 | 7536 coding_set_destination (coding); |
7537 (*(coding->encoder)) (coding); | |
7538 } while (coding->consumed_char < coding->src_chars); | |
7539 | |
90809
3c52757d5f6e
(produce_chars): Don't call insert_from_gap if no
Kenichi Handa <handa@m17n.org>
parents:
90772
diff
changeset
|
7540 if (BUFFERP (coding->dst_object) && coding->produced_char > 0) |
88365 | 7541 insert_from_gap (coding->produced_char, coding->produced); |
7542 | |
7543 return (coding->result); | |
7544 } | |
7545 | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7546 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7547 /* Name (or base name) of work buffer for code conversion. */ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7548 static Lisp_Object Vcode_conversion_workbuf_name; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7549 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7550 /* A working buffer used by the top level conversion. Once it is |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7551 created, it is never destroyed. It has the name |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7552 Vcode_conversion_workbuf_name. The other working buffers are |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7553 destroyed after the use is finished, and their names are modified |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7554 versions of Vcode_conversion_workbuf_name. */ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7555 static Lisp_Object Vcode_conversion_reused_workbuf; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7556 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7557 /* 1 iff Vcode_conversion_reused_workbuf is already in use. */ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7558 static int reused_workbuf_in_use; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7559 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7560 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7561 /* Return a working buffer of code convesion. MULTIBYTE specifies the |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7562 multibyteness of returning buffer. */ |
88365 | 7563 |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
7564 static Lisp_Object |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7565 make_conversion_work_buffer (multibyte) |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
7566 int multibyte; |
88365 | 7567 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7568 Lisp_Object name, workbuf; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7569 struct buffer *current; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7570 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7571 if (reused_workbuf_in_use++) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7572 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7573 name = Fgenerate_new_buffer_name (Vcode_conversion_workbuf_name, Qnil); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7574 workbuf = Fget_buffer_create (name); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7575 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7576 else |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7577 { |
99074
10cd979d05ca
(make_conversion_work_buffer): Check that Vcode_conversion_reused_workbuf
Noah Friedman <friedman@splode.com>
parents:
98992
diff
changeset
|
7578 if (NILP (Fbuffer_live_p (Vcode_conversion_reused_workbuf))) |
98186
1cfa973fde14
(make_conversion_work_buffer): Avoid calling
Kenichi Handa <handa@m17n.org>
parents:
96571
diff
changeset
|
7579 Vcode_conversion_reused_workbuf |
1cfa973fde14
(make_conversion_work_buffer): Avoid calling
Kenichi Handa <handa@m17n.org>
parents:
96571
diff
changeset
|
7580 = Fget_buffer_create (Vcode_conversion_workbuf_name); |
1cfa973fde14
(make_conversion_work_buffer): Avoid calling
Kenichi Handa <handa@m17n.org>
parents:
96571
diff
changeset
|
7581 workbuf = Vcode_conversion_reused_workbuf; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7582 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7583 current = current_buffer; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7584 set_buffer_internal (XBUFFER (workbuf)); |
100262
46114a72fb0e
(make_conversion_work_buffer): Disable buffer modification hooks in
Chong Yidong <cyd@stupidchicken.com>
parents:
100176
diff
changeset
|
7585 /* We can't allow modification hooks to run in the work buffer. For |
46114a72fb0e
(make_conversion_work_buffer): Disable buffer modification hooks in
Chong Yidong <cyd@stupidchicken.com>
parents:
100176
diff
changeset
|
7586 instance, directory_files_internal assumes that file decoding |
46114a72fb0e
(make_conversion_work_buffer): Disable buffer modification hooks in
Chong Yidong <cyd@stupidchicken.com>
parents:
100176
diff
changeset
|
7587 doesn't compile new regexps. */ |
46114a72fb0e
(make_conversion_work_buffer): Disable buffer modification hooks in
Chong Yidong <cyd@stupidchicken.com>
parents:
100176
diff
changeset
|
7588 Fset (Fmake_local_variable (Qinhibit_modification_hooks), Qt); |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
7589 Ferase_buffer (); |
88365 | 7590 current_buffer->undo_list = Qt; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7591 current_buffer->enable_multibyte_characters = multibyte ? Qt : Qnil; |
88365 | 7592 set_buffer_internal (current); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7593 return workbuf; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7594 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7595 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7596 |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7597 static Lisp_Object |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7598 code_conversion_restore (arg) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7599 Lisp_Object arg; |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
7600 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7601 Lisp_Object current, workbuf; |
90263
80fb4c061e99
(code_conversion_restore): GCPRO arg.
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
7602 struct gcpro gcpro1; |
80fb4c061e99
(code_conversion_restore): GCPRO arg.
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
7603 |
80fb4c061e99
(code_conversion_restore): GCPRO arg.
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
7604 GCPRO1 (arg); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7605 current = XCAR (arg); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7606 workbuf = XCDR (arg); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7607 if (! NILP (workbuf)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7608 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7609 if (EQ (workbuf, Vcode_conversion_reused_workbuf)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7610 reused_workbuf_in_use = 0; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7611 else if (! NILP (Fbuffer_live_p (workbuf))) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7612 Fkill_buffer (workbuf); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7613 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7614 set_buffer_internal (XBUFFER (current)); |
90263
80fb4c061e99
(code_conversion_restore): GCPRO arg.
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
7615 UNGCPRO; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7616 return Qnil; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7617 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7618 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7619 Lisp_Object |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7620 code_conversion_save (with_work_buf, multibyte) |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7621 int with_work_buf, multibyte; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7622 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7623 Lisp_Object workbuf = Qnil; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7624 |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7625 if (with_work_buf) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7626 workbuf = make_conversion_work_buffer (multibyte); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7627 record_unwind_protect (code_conversion_restore, |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7628 Fcons (Fcurrent_buffer (), workbuf)); |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7629 return workbuf; |
17052 | 7630 } |
7631 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7632 int |
88365 | 7633 decode_coding_gap (coding, chars, bytes) |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7634 struct coding_system *coding; |
88365 | 7635 EMACS_INT chars, bytes; |
7636 { | |
7637 int count = specpdl_ptr - specpdl; | |
89448
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7638 Lisp_Object attrs; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7639 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7640 code_conversion_save (0, 0); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7641 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7642 coding->src_object = Fcurrent_buffer (); |
88365 | 7643 coding->src_chars = chars; |
7644 coding->src_bytes = bytes; | |
7645 coding->src_pos = -chars; | |
7646 coding->src_pos_byte = -bytes; | |
7647 coding->src_multibyte = chars < bytes; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7648 coding->dst_object = coding->src_object; |
88365 | 7649 coding->dst_pos = PT; |
7650 coding->dst_pos_byte = PT_BYTE; | |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
7651 coding->dst_multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
88365 | 7652 |
7653 if (CODING_REQUIRE_DETECTION (coding)) | |
7654 detect_coding (coding); | |
89483 | 7655 |
90350
60eaefb08cf7
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90346
diff
changeset
|
7656 coding->mode |= CODING_MODE_LAST_BLOCK; |
90772
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
7657 current_buffer->text->inhibit_shrinking = 1; |
88365 | 7658 decode_coding (coding); |
90772
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
7659 current_buffer->text->inhibit_shrinking = 0; |
88365 | 7660 |
89448
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7661 attrs = CODING_ID_ATTRS (coding->id); |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7662 if (! NILP (CODING_ATTR_POST_READ (attrs))) |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7663 { |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7664 EMACS_INT prev_Z = Z, prev_Z_BYTE = Z_BYTE; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7665 Lisp_Object val; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7666 |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7667 TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte); |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7668 val = call1 (CODING_ATTR_POST_READ (attrs), |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7669 make_number (coding->produced_char)); |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7670 CHECK_NATNUM (val); |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7671 coding->produced_char += Z - prev_Z; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7672 coding->produced += Z_BYTE - prev_Z_BYTE; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7673 } |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7674 |
88365 | 7675 unbind_to (count, Qnil); |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7676 return coding->result; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7677 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7678 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7679 int |
88365 | 7680 encode_coding_gap (coding, chars, bytes) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7681 struct coding_system *coding; |
88365 | 7682 EMACS_INT chars, bytes; |
26847 | 7683 { |
88365 | 7684 int count = specpdl_ptr - specpdl; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7685 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7686 code_conversion_save (0, 0); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7687 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7688 coding->src_object = Fcurrent_buffer (); |
88365 | 7689 coding->src_chars = chars; |
7690 coding->src_bytes = bytes; | |
7691 coding->src_pos = -chars; | |
7692 coding->src_pos_byte = -bytes; | |
7693 coding->src_multibyte = chars < bytes; | |
7694 coding->dst_object = coding->src_object; | |
7695 coding->dst_pos = PT; | |
7696 coding->dst_pos_byte = PT_BYTE; | |
7697 | |
7698 encode_coding (coding); | |
7699 | |
7700 unbind_to (count, Qnil); | |
7701 return coding->result; | |
26847 | 7702 } |
7703 | |
88365 | 7704 |
7705 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in | |
7706 SRC_OBJECT into DST_OBJECT by coding context CODING. | |
7707 | |
7708 SRC_OBJECT is a buffer, a string, or Qnil. | |
7709 | |
7710 If it is a buffer, the text is at point of the buffer. FROM and TO | |
7711 are positions in the buffer. | |
7712 | |
7713 If it is a string, the text is at the beginning of the string. | |
7714 FROM and TO are indices to the string. | |
7715 | |
7716 If it is nil, the text is at coding->source. FROM and TO are | |
7717 indices to coding->source. | |
7718 | |
7719 DST_OBJECT is a buffer, Qt, or Qnil. | |
7720 | |
7721 If it is a buffer, the decoded text is inserted at point of the | |
7722 buffer. If the buffer is the same as SRC_OBJECT, the source text | |
7723 is deleted. | |
7724 | |
7725 If it is Qt, a string is made from the decoded text, and | |
7726 set in CODING->dst_object. | |
7727 | |
7728 If it is Qnil, the decoded text is stored at CODING->destination. | |
89418
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
7729 The caller must allocate CODING->dst_bytes bytes at |
88365 | 7730 CODING->destination by xmalloc. If the decoded text is longer than |
7731 CODING->dst_bytes, CODING->destination is relocated by xrealloc. | |
7732 */ | |
26847 | 7733 |
7734 void | |
88365 | 7735 decode_coding_object (coding, src_object, from, from_byte, to, to_byte, |
7736 dst_object) | |
26847 | 7737 struct coding_system *coding; |
88365 | 7738 Lisp_Object src_object; |
7739 EMACS_INT from, from_byte, to, to_byte; | |
7740 Lisp_Object dst_object; | |
26847 | 7741 { |
88365 | 7742 int count = specpdl_ptr - specpdl; |
7743 unsigned char *destination; | |
7744 EMACS_INT dst_bytes; | |
7745 EMACS_INT chars = to - from; | |
7746 EMACS_INT bytes = to_byte - from_byte; | |
7747 Lisp_Object attrs; | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7748 int saved_pt = -1, saved_pt_byte; |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7749 int need_marker_adjustment = 0; |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7750 Lisp_Object old_deactivate_mark; |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7751 |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7752 old_deactivate_mark = Vdeactivate_mark; |
88365 | 7753 |
7754 if (NILP (dst_object)) | |
7755 { | |
7756 destination = coding->destination; | |
7757 dst_bytes = coding->dst_bytes; | |
7758 } | |
7759 | |
7760 coding->src_object = src_object; | |
7761 coding->src_chars = chars; | |
7762 coding->src_bytes = bytes; | |
7763 coding->src_multibyte = chars < bytes; | |
7764 | |
7765 if (STRINGP (src_object)) | |
7766 { | |
7767 coding->src_pos = from; | |
7768 coding->src_pos_byte = from_byte; | |
7769 } | |
7770 else if (BUFFERP (src_object)) | |
7771 { | |
7772 set_buffer_internal (XBUFFER (src_object)); | |
7773 if (from != GPT) | |
7774 move_gap_both (from, from_byte); | |
7775 if (EQ (src_object, dst_object)) | |
26847 | 7776 { |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7777 struct Lisp_Marker *tail; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7778 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7779 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next) |
26847 | 7780 { |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7781 tail->need_adjustment |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7782 = tail->charpos == (tail->insertion_type ? from : to); |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7783 need_marker_adjustment |= tail->need_adjustment; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7784 } |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7785 saved_pt = PT, saved_pt_byte = PT_BYTE; |
88365 | 7786 TEMP_SET_PT_BOTH (from, from_byte); |
92458
5f5f07a5c076
(decode_coding_object): Inhibit gap shrinking while
Andreas Schwab <schwab@suse.de>
parents:
92406
diff
changeset
|
7787 current_buffer->text->inhibit_shrinking = 1; |
88365 | 7788 del_range_both (from, from_byte, to, to_byte, 1); |
7789 coding->src_pos = -chars; | |
7790 coding->src_pos_byte = -bytes; | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
7791 } |
42661
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
7792 else |
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
7793 { |
88365 | 7794 coding->src_pos = from; |
7795 coding->src_pos_byte = from_byte; | |
29985
c17e78d8c720
(code_convert_region): Even if the length of text is
Kenichi Handa <handa@m17n.org>
parents:
29932
diff
changeset
|
7796 } |
88365 | 7797 } |
7798 | |
7799 if (CODING_REQUIRE_DETECTION (coding)) | |
7800 detect_coding (coding); | |
7801 attrs = CODING_ID_ATTRS (coding->id); | |
7802 | |
89418
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
7803 if (EQ (dst_object, Qt) |
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
7804 || (! NILP (CODING_ATTR_POST_READ (attrs)) |
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
7805 && NILP (dst_object))) |
88365 | 7806 { |
93321
c3fe9ef79b56
(decode_coding_object): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93197
diff
changeset
|
7807 coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding); |
c3fe9ef79b56
(decode_coding_object): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93197
diff
changeset
|
7808 coding->dst_object = code_conversion_save (1, coding->dst_multibyte); |
88365 | 7809 coding->dst_pos = BEG; |
7810 coding->dst_pos_byte = BEG_BYTE; | |
7811 } | |
7812 else if (BUFFERP (dst_object)) | |
7813 { | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7814 code_conversion_save (0, 0); |
88365 | 7815 coding->dst_object = dst_object; |
7816 coding->dst_pos = BUF_PT (XBUFFER (dst_object)); | |
7817 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object)); | |
7818 coding->dst_multibyte | |
7819 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
7820 } | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7821 else |
29172
46ad5a027334
(run_pre_post_conversion_on_str): Set point to the
Kenichi Handa <handa@m17n.org>
parents:
29093
diff
changeset
|
7822 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7823 code_conversion_save (0, 0); |
88365 | 7824 coding->dst_object = Qnil; |
93322
3b82aab9d8fc
(decode_coding_object): Revert part of last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93321
diff
changeset
|
7825 /* Most callers presume this will return a multibyte result, and they |
3b82aab9d8fc
(decode_coding_object): Revert part of last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93321
diff
changeset
|
7826 won't use `binary' or `raw-text' anyway, so let's not worry about |
3b82aab9d8fc
(decode_coding_object): Revert part of last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93321
diff
changeset
|
7827 CODING_FOR_UNIBYTE. */ |
93323
06e93ffa2e9f
(decode_coding_object): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93322
diff
changeset
|
7828 coding->dst_multibyte = 1; |
88365 | 7829 } |
7830 | |
7831 decode_coding (coding); | |
7832 | |
7833 if (BUFFERP (coding->dst_object)) | |
7834 set_buffer_internal (XBUFFER (coding->dst_object)); | |
7835 | |
7836 if (! NILP (CODING_ATTR_POST_READ (attrs))) | |
7837 { | |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7838 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
88365 | 7839 EMACS_INT prev_Z = Z, prev_Z_BYTE = Z_BYTE; |
7840 Lisp_Object val; | |
7841 | |
88506
a7f0d13affa5
(decode_coding_object): Move point to coding->dst_pos before
Kenichi Handa <handa@m17n.org>
parents:
88497
diff
changeset
|
7842 TEMP_SET_PT_BOTH (coding->dst_pos, coding->dst_pos_byte); |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7843 GCPRO5 (coding->src_object, coding->dst_object, src_object, dst_object, |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7844 old_deactivate_mark); |
90131
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7845 val = safe_call1 (CODING_ATTR_POST_READ (attrs), |
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7846 make_number (coding->produced_char)); |
88365 | 7847 UNGCPRO; |
7848 CHECK_NATNUM (val); | |
7849 coding->produced_char += Z - prev_Z; | |
7850 coding->produced += Z_BYTE - prev_Z_BYTE; | |
7851 } | |
7852 | |
7853 if (EQ (dst_object, Qt)) | |
7854 { | |
7855 coding->dst_object = Fbuffer_string (); | |
7856 } | |
7857 else if (NILP (dst_object) && BUFFERP (coding->dst_object)) | |
7858 { | |
7859 set_buffer_internal (XBUFFER (coding->dst_object)); | |
7860 if (dst_bytes < coding->produced) | |
42105
09cc243e2d14
(code_convert_region): Update coding->cmp_data->char_offset
Richard M. Stallman <rms@gnu.org>
parents:
42104
diff
changeset
|
7861 { |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7862 destination = xrealloc (destination, coding->produced); |
88365 | 7863 if (! destination) |
26847 | 7864 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7865 record_conversion_result (coding, |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7866 CODING_RESULT_INSUFFICIENT_DST); |
88365 | 7867 unbind_to (count, Qnil); |
7868 return; | |
26847 | 7869 } |
88365 | 7870 if (BEGV < GPT && GPT < BEGV + coding->produced_char) |
7871 move_gap_both (BEGV, BEGV_BYTE); | |
7872 bcopy (BEGV_ADDR, destination, coding->produced); | |
7873 coding->destination = destination; | |
23279
ca159e828a68
(ccl_coding_driver): If ccl_driver is interrupted by a
Kenichi Handa <handa@m17n.org>
parents:
23258
diff
changeset
|
7874 } |
88365 | 7875 } |
7876 | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7877 if (saved_pt >= 0) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7878 { |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7879 /* This is the case of: |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7880 (BUFFERP (src_object) && EQ (src_object, dst_object)) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7881 As we have moved PT while replacing the original buffer |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7882 contents, we must recover it now. */ |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7883 set_buffer_internal (XBUFFER (src_object)); |
92458
5f5f07a5c076
(decode_coding_object): Inhibit gap shrinking while
Andreas Schwab <schwab@suse.de>
parents:
92406
diff
changeset
|
7884 current_buffer->text->inhibit_shrinking = 0; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7885 if (saved_pt < from) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7886 TEMP_SET_PT_BOTH (saved_pt, saved_pt_byte); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7887 else if (saved_pt < from + chars) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7888 TEMP_SET_PT_BOTH (from, from_byte); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7889 else if (! NILP (current_buffer->enable_multibyte_characters)) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7890 TEMP_SET_PT_BOTH (saved_pt + (coding->produced_char - chars), |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7891 saved_pt_byte + (coding->produced - bytes)); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7892 else |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7893 TEMP_SET_PT_BOTH (saved_pt + (coding->produced - bytes), |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7894 saved_pt_byte + (coding->produced - bytes)); |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7895 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7896 if (need_marker_adjustment) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7897 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7898 struct Lisp_Marker *tail; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7899 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7900 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7901 if (tail->need_adjustment) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7902 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7903 tail->need_adjustment = 0; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7904 if (tail->insertion_type) |
26847 | 7905 { |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7906 tail->bytepos = from_byte; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7907 tail->charpos = from; |
26847 | 7908 } |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7909 else |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7910 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7911 tail->bytepos = from_byte + coding->produced; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7912 tail->charpos |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7913 = (NILP (current_buffer->enable_multibyte_characters) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7914 ? tail->bytepos : from + coding->produced_char); |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7915 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7916 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7917 } |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7918 } |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7919 |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7920 Vdeactivate_mark = old_deactivate_mark; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7921 unbind_to (count, coding->dst_object); |
88365 | 7922 } |
7923 | |
26847 | 7924 |
29275
b4ea9178e480
(DECODE_COMPOSITION_START): If coding->cmp_data is not
Kenichi Handa <handa@m17n.org>
parents:
29247
diff
changeset
|
7925 void |
88365 | 7926 encode_coding_object (coding, src_object, from, from_byte, to, to_byte, |
7927 dst_object) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7928 struct coding_system *coding; |
88365 | 7929 Lisp_Object src_object; |
7930 EMACS_INT from, from_byte, to, to_byte; | |
7931 Lisp_Object dst_object; | |
7932 { | |
7933 int count = specpdl_ptr - specpdl; | |
7934 EMACS_INT chars = to - from; | |
7935 EMACS_INT bytes = to_byte - from_byte; | |
7936 Lisp_Object attrs; | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7937 int saved_pt = -1, saved_pt_byte; |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7938 int need_marker_adjustment = 0; |
90231
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
7939 int kill_src_buffer = 0; |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7940 Lisp_Object old_deactivate_mark; |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7941 |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7942 old_deactivate_mark = Vdeactivate_mark; |
88365 | 7943 |
7944 coding->src_object = src_object; | |
7945 coding->src_chars = chars; | |
7946 coding->src_bytes = bytes; | |
7947 coding->src_multibyte = chars < bytes; | |
7948 | |
7949 attrs = CODING_ID_ATTRS (coding->id); | |
7950 | |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7951 if (EQ (src_object, dst_object)) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7952 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7953 struct Lisp_Marker *tail; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7954 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7955 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7956 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7957 tail->need_adjustment |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7958 = tail->charpos == (tail->insertion_type ? from : to); |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7959 need_marker_adjustment |= tail->need_adjustment; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7960 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7961 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7962 |
88365 | 7963 if (! NILP (CODING_ATTR_PRE_WRITE (attrs))) |
21062
839b22ad1e42
(code_convert_region): Handle the case that codes
Kenichi Handa <handa@m17n.org>
parents:
20999
diff
changeset
|
7964 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7965 coding->src_object = code_conversion_save (1, coding->src_multibyte); |
88365 | 7966 set_buffer_internal (XBUFFER (coding->src_object)); |
7967 if (STRINGP (src_object)) | |
7968 insert_from_string (src_object, from, from_byte, chars, bytes, 0); | |
7969 else if (BUFFERP (src_object)) | |
7970 insert_from_buffer (XBUFFER (src_object), from, chars, 0); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7971 else |
88365 | 7972 insert_1_both (coding->source + from, chars, bytes, 0, 0, 0); |
7973 | |
7974 if (EQ (src_object, dst_object)) | |
7975 { | |
7976 set_buffer_internal (XBUFFER (src_object)); | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7977 saved_pt = PT, saved_pt_byte = PT_BYTE; |
88365 | 7978 del_range_both (from, from_byte, to, to_byte, 1); |
7979 set_buffer_internal (XBUFFER (coding->src_object)); | |
7980 } | |
7981 | |
90131
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7982 { |
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7983 Lisp_Object args[3]; |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7984 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7985 |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7986 GCPRO5 (coding->src_object, coding->dst_object, src_object, dst_object, |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7987 old_deactivate_mark); |
90131
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7988 args[0] = CODING_ATTR_PRE_WRITE (attrs); |
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7989 args[1] = make_number (BEG); |
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7990 args[2] = make_number (Z); |
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7991 safe_call (3, args); |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7992 UNGCPRO; |
90131
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7993 } |
90231
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
7994 if (XBUFFER (coding->src_object) != current_buffer) |
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
7995 kill_src_buffer = 1; |
88510
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
7996 coding->src_object = Fcurrent_buffer (); |
88365 | 7997 if (BEG != GPT) |
7998 move_gap_both (BEG, BEG_BYTE); | |
7999 coding->src_chars = Z - BEG; | |
8000 coding->src_bytes = Z_BYTE - BEG_BYTE; | |
8001 coding->src_pos = BEG; | |
8002 coding->src_pos_byte = BEG_BYTE; | |
8003 coding->src_multibyte = Z < Z_BYTE; | |
8004 } | |
8005 else if (STRINGP (src_object)) | |
8006 { | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8007 code_conversion_save (0, 0); |
88365 | 8008 coding->src_pos = from; |
8009 coding->src_pos_byte = from_byte; | |
8010 } | |
8011 else if (BUFFERP (src_object)) | |
8012 { | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8013 code_conversion_save (0, 0); |
88365 | 8014 set_buffer_internal (XBUFFER (src_object)); |
8015 if (EQ (src_object, dst_object)) | |
8016 { | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8017 saved_pt = PT, saved_pt_byte = PT_BYTE; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8018 coding->src_object = del_range_1 (from, to, 1, 1); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8019 coding->src_pos = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8020 coding->src_pos_byte = 0; |
88365 | 8021 } |
23514
7bad909cd6f1
(setup_coding_system): Fix setting up
Kenichi Handa <handa@m17n.org>
parents:
23475
diff
changeset
|
8022 else |
42105
09cc243e2d14
(code_convert_region): Update coding->cmp_data->char_offset
Richard M. Stallman <rms@gnu.org>
parents:
42104
diff
changeset
|
8023 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8024 if (from < GPT && to >= GPT) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8025 move_gap_both (from, from_byte); |
88365 | 8026 coding->src_pos = from; |
8027 coding->src_pos_byte = from_byte; | |
8028 } | |
64308
93129de4b8a4
(code_convert_region_unwind): ARG is changed to a cons.
Kenichi Handa <handa@m17n.org>
parents:
64251
diff
changeset
|
8029 } |
93129de4b8a4
(code_convert_region_unwind): ARG is changed to a cons.
Kenichi Handa <handa@m17n.org>
parents:
64251
diff
changeset
|
8030 else |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8031 code_conversion_save (0, 0); |
88365 | 8032 |
8033 if (BUFFERP (dst_object)) | |
8034 { | |
8035 coding->dst_object = dst_object; | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8036 if (EQ (src_object, dst_object)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8037 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8038 coding->dst_pos = from; |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8039 coding->dst_pos_byte = from_byte; |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8040 } |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8041 else |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8042 { |
95353
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8043 struct buffer *current = current_buffer; |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8044 |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8045 set_buffer_temp (XBUFFER (dst_object)); |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8046 coding->dst_pos = PT; |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8047 coding->dst_pos_byte = PT_BYTE; |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8048 move_gap_both (coding->dst_pos, coding->dst_pos_byte); |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8049 set_buffer_temp (current); |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8050 } |
88365 | 8051 coding->dst_multibyte |
8052 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
8053 } | |
8054 else if (EQ (dst_object, Qt)) | |
8055 { | |
8056 coding->dst_object = Qnil; | |
8057 coding->dst_bytes = coding->src_chars; | |
88510
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
8058 if (coding->dst_bytes == 0) |
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
8059 coding->dst_bytes = 1; |
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
8060 coding->destination = (unsigned char *) xmalloc (coding->dst_bytes); |
88365 | 8061 coding->dst_multibyte = 0; |
65506
f376635f5061
(code_convert_region_unwind): Argument format changed.
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
8062 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
8063 else |
29172
46ad5a027334
(run_pre_post_conversion_on_str): Set point to the
Kenichi Handa <handa@m17n.org>
parents:
29093
diff
changeset
|
8064 { |
88365 | 8065 coding->dst_object = Qnil; |
8066 coding->dst_multibyte = 0; | |
8067 } | |
8068 | |
8069 encode_coding (coding); | |
8070 | |
8071 if (EQ (dst_object, Qt)) | |
8072 { | |
8073 if (BUFFERP (coding->dst_object)) | |
8074 coding->dst_object = Fbuffer_string (); | |
23514
7bad909cd6f1
(setup_coding_system): Fix setting up
Kenichi Handa <handa@m17n.org>
parents:
23475
diff
changeset
|
8075 else |
88365 | 8076 { |
8077 coding->dst_object | |
8078 = make_unibyte_string ((char *) coding->destination, | |
8079 coding->produced); | |
8080 xfree (coding->destination); | |
8081 } | |
8082 } | |
8083 | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8084 if (saved_pt >= 0) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8085 { |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8086 /* This is the case of: |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8087 (BUFFERP (src_object) && EQ (src_object, dst_object)) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8088 As we have moved PT while replacing the original buffer |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8089 contents, we must recover it now. */ |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8090 set_buffer_internal (XBUFFER (src_object)); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8091 if (saved_pt < from) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8092 TEMP_SET_PT_BOTH (saved_pt, saved_pt_byte); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8093 else if (saved_pt < from + chars) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8094 TEMP_SET_PT_BOTH (from, from_byte); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8095 else if (! NILP (current_buffer->enable_multibyte_characters)) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8096 TEMP_SET_PT_BOTH (saved_pt + (coding->produced_char - chars), |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8097 saved_pt_byte + (coding->produced - bytes)); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8098 else |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8099 TEMP_SET_PT_BOTH (saved_pt + (coding->produced - bytes), |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8100 saved_pt_byte + (coding->produced - bytes)); |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8101 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8102 if (need_marker_adjustment) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8103 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8104 struct Lisp_Marker *tail; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8105 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8106 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8107 if (tail->need_adjustment) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8108 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8109 tail->need_adjustment = 0; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8110 if (tail->insertion_type) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8111 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8112 tail->bytepos = from_byte; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8113 tail->charpos = from; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8114 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8115 else |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8116 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8117 tail->bytepos = from_byte + coding->produced; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8118 tail->charpos |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8119 = (NILP (current_buffer->enable_multibyte_characters) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8120 ? tail->bytepos : from + coding->produced_char); |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8121 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8122 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8123 } |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8124 } |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8125 |
90231
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
8126 if (kill_src_buffer) |
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
8127 Fkill_buffer (coding->src_object); |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
8128 |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
8129 Vdeactivate_mark = old_deactivate_mark; |
88365 | 8130 unbind_to (count, Qnil); |
58637
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
8131 } |
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
8132 |
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
8133 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
8134 Lisp_Object |
88365 | 8135 preferred_coding_system () |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8136 { |
88365 | 8137 int id = coding_categories[coding_priorities[0]].id; |
8138 | |
8139 return CODING_ID_NAME (id); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8140 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8141 |
17052 | 8142 |
8143 #ifdef emacs | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
8144 /*** 8. Emacs Lisp library functions ***/ |
17052 | 8145 |
8146 DEFUN ("coding-system-p", Fcoding_system_p, Scoding_system_p, 1, 1, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8147 doc: /* Return t if OBJECT is nil or a coding-system. |
88365 | 8148 See the documentation of `define-coding-system' for information |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8149 about coding-system objects. */) |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8150 (object) |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8151 Lisp_Object object; |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8152 { |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8153 if (NILP (object) |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8154 || CODING_SYSTEM_ID (object) >= 0) |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8155 return Qt; |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8156 if (! SYMBOLP (object) |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8157 || NILP (Fget (object, Qcoding_system_define_form))) |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8158 return Qnil; |
90272
f1df126ec7de
Sync to HEAD for handling autoload-coding-system.
Kenichi Handa <handa@m17n.org>
parents:
90263
diff
changeset
|
8159 return Qt; |
17052 | 8160 } |
8161 | |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
8162 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
|
8163 Sread_non_nil_coding_system, 1, 1, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8164 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8165 (prompt) |
17052 | 8166 Lisp_Object prompt; |
8167 { | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8168 Lisp_Object val; |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
8169 do |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
8170 { |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8171 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil, |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8172 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
|
8173 } |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
8174 while (SCHARS (val) == 0); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8175 return (Fintern (val, Qnil)); |
17052 | 8176 } |
8177 | |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
8178 DEFUN ("read-coding-system", Fread_coding_system, Sread_coding_system, 1, 2, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8179 doc: /* Read a coding system from the minibuffer, prompting with string PROMPT. |
79107
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8180 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM. |
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8181 Ignores case when completing coding systems (all Emacs coding systems |
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8182 are lower-case). */) |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8183 (prompt, default_coding_system) |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
8184 Lisp_Object prompt, default_coding_system; |
17052 | 8185 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
8186 Lisp_Object val; |
79107
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8187 int count = SPECPDL_INDEX (); |
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8188 |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
8189 if (SYMBOLP (default_coding_system)) |
45396
cab845213388
* coding.c (Fread_coding_system, code_convert_region1)
Ken Raeburn <raeburn@raeburn.org>
parents:
45239
diff
changeset
|
8190 default_coding_system = SYMBOL_NAME (default_coding_system); |
79107
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8191 specbind (Qcompletion_ignore_case, Qt); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8192 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
|
8193 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
|
8194 default_coding_system, Qnil); |
79107
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8195 unbind_to (count, Qnil); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
8196 return (SCHARS (val) == 0 ? Qnil : Fintern (val, Qnil)); |
17052 | 8197 } |
8198 | |
8199 DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | |
8200 1, 1, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8201 doc: /* Check validity of CODING-SYSTEM. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8202 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. |
89892 | 8203 It is valid if it is nil or a symbol defined as a coding system by the |
8204 function `define-coding-system'. */) | |
88365 | 8205 (coding_system) |
17052 | 8206 Lisp_Object coding_system; |
8207 { | |
52794
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8208 Lisp_Object define_form; |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8209 |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8210 define_form = Fget (coding_system, Qcoding_system_define_form); |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8211 if (! NILP (define_form)) |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8212 { |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8213 Fput (coding_system, Qcoding_system_define_form, Qnil); |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8214 safe_eval (define_form); |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8215 } |
17052 | 8216 if (!NILP (Fcoding_system_p (coding_system))) |
8217 return coding_system; | |
71972
eaa3c19b94d2
(Fcheck_coding_system): Use xsignal1. Remove loop.
Kim F. Storm <storm@cua.dk>
parents:
71084
diff
changeset
|
8218 xsignal1 (Qcoding_system_error, coding_system); |
17052 | 8219 } |
88365 | 8220 |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
8221 |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8222 /* Detect how the bytes at SRC of length SRC_BYTES are encoded. If |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8223 HIGHEST is nonzero, return the coding system of the highest |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8224 priority among the detected coding systems. Otherwize return a |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8225 list of detected coding systems sorted by their priorities. If |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8226 MULTIBYTEP is nonzero, it is assumed that the bytes are in correct |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8227 multibyte form but contains only ASCII and eight-bit chars. |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8228 Otherwise, the bytes are raw bytes. |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8229 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8230 CODING-SYSTEM controls the detection as below: |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8231 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8232 If it is nil, detect both text-format and eol-format. If the |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8233 text-format part of CODING-SYSTEM is already specified |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8234 (e.g. `iso-latin-1'), detect only eol-format. If the eol-format |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8235 part of CODING-SYSTEM is already specified (e.g. `undecided-unix'), |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8236 detect only text-format. */ |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8237 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8238 Lisp_Object |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8239 detect_coding_system (src, src_chars, src_bytes, highest, multibytep, |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8240 coding_system) |
46548
cb1914307488
(encode_eol, detect_coding, detect_eol):
Ken Raeburn <raeburn@raeburn.org>
parents:
46462
diff
changeset
|
8241 const unsigned char *src; |
91807
507bcfb4342c
* coding.c (coding_set_destination): Use BEG_BYTE rather than hardcoding 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91622
diff
changeset
|
8242 EMACS_INT src_chars, src_bytes; |
507bcfb4342c
* coding.c (coding_set_destination): Use BEG_BYTE rather than hardcoding 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91622
diff
changeset
|
8243 int highest; |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
8244 int multibytep; |
88365 | 8245 Lisp_Object coding_system; |
17052 | 8246 { |
89483 | 8247 const unsigned char *src_end = src + src_bytes; |
88365 | 8248 Lisp_Object attrs, eol_type; |
100135
0e17542db552
(detect_coding_system): Initialize utf_16_le_eol to -1, val to
Kenichi Handa <handa@m17n.org>
parents:
100133
diff
changeset
|
8249 Lisp_Object val = Qnil; |
88365 | 8250 struct coding_system coding; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8251 int id; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8252 struct coding_detection_info detect_info; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8253 enum coding_category base_category; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8254 int null_byte_found = 0, eight_bit_found = 0; |
88365 | 8255 |
8256 if (NILP (coding_system)) | |
8257 coding_system = Qundecided; | |
8258 setup_coding_system (coding_system, &coding); | |
8259 attrs = CODING_ID_ATTRS (coding.id); | |
8260 eol_type = CODING_ID_EOL_TYPE (coding.id); | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8261 coding_system = CODING_ATTR_BASE_NAME (attrs); |
88365 | 8262 |
8263 coding.source = src; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8264 coding.src_chars = src_chars; |
88365 | 8265 coding.src_bytes = src_bytes; |
8266 coding.src_multibyte = multibytep; | |
8267 coding.consumed = 0; | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8268 coding.mode |= CODING_MODE_LAST_BLOCK; |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8269 coding.head_ascii = 0; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8270 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8271 detect_info.checked = detect_info.found = detect_info.rejected = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8272 |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8273 /* At first, detect text-format if necessary. */ |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8274 base_category = XINT (CODING_ATTR_CATEGORY (attrs)); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8275 if (base_category == coding_category_undecided) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8276 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8277 enum coding_category category; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8278 struct coding_system *this; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8279 int c, i; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8280 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8281 /* Skip all ASCII bytes except for a few ISO2022 controls. */ |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8282 for (; src < src_end; src++) |
17052 | 8283 { |
88365 | 8284 c = *src; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8285 if (c & 0x80) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8286 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8287 eight_bit_found = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8288 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8289 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8290 } |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8291 else if (c < 0x20) |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8292 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8293 if ((c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8294 && ! inhibit_iso_escape_detection |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8295 && ! detect_info.checked) |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8296 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8297 if (detect_coding_iso_2022 (&coding, &detect_info)) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8298 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8299 /* We have scanned the whole data. */ |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8300 if (! (detect_info.rejected & CATEGORY_MASK_ISO_7_ELSE)) |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8301 { |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8302 /* We didn't find an 8-bit code. We may |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8303 have found a null-byte, but it's very |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8304 rare that a binary file confirm to |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8305 ISO-2022. */ |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8306 src = src_end; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8307 coding.head_ascii = src - coding.source; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8308 } |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8309 detect_info.rejected |= ~CATEGORY_MASK_ISO_ESCAPE; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8310 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8311 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8312 } |
101040 | 8313 else if (! c && !inhibit_null_byte_detection) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8314 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8315 null_byte_found = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8316 if (eight_bit_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8317 break; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8318 } |
95585
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
8319 if (! eight_bit_found) |
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
8320 coding.head_ascii++; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8321 } |
95585
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
8322 else if (! eight_bit_found) |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8323 coding.head_ascii++; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8324 } |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8325 |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8326 if (null_byte_found || eight_bit_found |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8327 || coding.head_ascii < coding.src_bytes |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8328 || detect_info.found) |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8329 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8330 if (coding.head_ascii == coding.src_bytes) |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8331 /* As all bytes are 7-bit, we can ignore non-ISO-2022 codings. */ |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8332 for (i = 0; i < coding_category_raw_text; i++) |
88365 | 8333 { |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8334 category = coding_priorities[i]; |
90594
a965377e6761
(detect_coding_system): Fix for handling off
Kenichi Handa <handa@m17n.org>
parents:
90587
diff
changeset
|
8335 this = coding_categories + category; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8336 if (detect_info.found & (1 << category)) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8337 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8338 } |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8339 else |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8340 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8341 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8342 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8343 detect_info.checked |= ~CATEGORY_MASK_UTF_16; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8344 detect_info.rejected |= ~CATEGORY_MASK_UTF_16; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8345 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8346 for (i = 0; i < coding_category_raw_text; i++) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8347 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8348 category = coding_priorities[i]; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8349 this = coding_categories + category; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8350 |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8351 if (this->id < 0) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8352 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8353 /* No coding system of this category is defined. */ |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8354 detect_info.rejected |= (1 << category); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8355 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8356 else if (category >= coding_category_raw_text) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8357 continue; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8358 else if (detect_info.checked & (1 << category)) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8359 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8360 if (highest |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8361 && (detect_info.found & (1 << category))) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8362 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8363 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8364 else if ((*(this->detector)) (&coding, &detect_info) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8365 && highest |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8366 && (detect_info.found & (1 << category))) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8367 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8368 if (category == coding_category_utf_16_auto) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8369 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8370 if (detect_info.found & CATEGORY_MASK_UTF_16_LE) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8371 category = coding_category_utf_16_le; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8372 else |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8373 category = coding_category_utf_16_be; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8374 } |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8375 break; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8376 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8377 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8378 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8379 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8380 |
101197
ee5f395f3c19
(detect_coding_system): Fix handling of null_byte_fount.
Kenichi Handa <handa@m17n.org>
parents:
101174
diff
changeset
|
8381 if ((detect_info.rejected & CATEGORY_MASK_ANY) == CATEGORY_MASK_ANY |
ee5f395f3c19
(detect_coding_system): Fix handling of null_byte_fount.
Kenichi Handa <handa@m17n.org>
parents:
101174
diff
changeset
|
8382 || null_byte_found) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8383 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8384 detect_info.found = CATEGORY_MASK_RAW_TEXT; |
101197
ee5f395f3c19
(detect_coding_system): Fix handling of null_byte_fount.
Kenichi Handa <handa@m17n.org>
parents:
101174
diff
changeset
|
8385 id = CODING_SYSTEM_ID (Qno_conversion); |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8386 val = Fcons (make_number (id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8387 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8388 else if (! detect_info.rejected && ! detect_info.found) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8389 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8390 detect_info.found = CATEGORY_MASK_ANY; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8391 id = coding_categories[coding_category_undecided].id; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8392 val = Fcons (make_number (id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8393 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8394 else if (highest) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8395 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8396 if (detect_info.found) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8397 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8398 detect_info.found = 1 << category; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8399 val = Fcons (make_number (this->id), Qnil); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8400 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8401 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8402 for (i = 0; i < coding_category_raw_text; i++) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8403 if (! (detect_info.rejected & (1 << coding_priorities[i]))) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8404 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8405 detect_info.found = 1 << coding_priorities[i]; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8406 id = coding_categories[coding_priorities[i]].id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8407 val = Fcons (make_number (id), Qnil); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8408 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8409 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8410 } |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8411 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8412 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8413 int mask = detect_info.rejected | detect_info.found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8414 int found = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8415 |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8416 for (i = coding_category_raw_text - 1; i >= 0; i--) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8417 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8418 category = coding_priorities[i]; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8419 if (! (mask & (1 << category))) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8420 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8421 found |= 1 << category; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8422 id = coding_categories[category].id; |
90594
a965377e6761
(detect_coding_system): Fix for handling off
Kenichi Handa <handa@m17n.org>
parents:
90587
diff
changeset
|
8423 if (id >= 0) |
a965377e6761
(detect_coding_system): Fix for handling off
Kenichi Handa <handa@m17n.org>
parents:
90587
diff
changeset
|
8424 val = Fcons (make_number (id), val); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8425 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8426 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8427 for (i = coding_category_raw_text - 1; i >= 0; i--) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8428 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8429 category = coding_priorities[i]; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8430 if (detect_info.found & (1 << category)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8431 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8432 id = coding_categories[category].id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8433 val = Fcons (make_number (id), val); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8434 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8435 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8436 detect_info.found |= found; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8437 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8438 } |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8439 else if (base_category == coding_category_utf_8_auto) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8440 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8441 if (detect_coding_utf_8 (&coding, &detect_info)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8442 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8443 struct coding_system *this; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8444 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8445 if (detect_info.found & CATEGORY_MASK_UTF_8_SIG) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8446 this = coding_categories + coding_category_utf_8_sig; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8447 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8448 this = coding_categories + coding_category_utf_8_nosig; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8449 val = Fcons (make_number (this->id), Qnil); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8450 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8451 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8452 else if (base_category == coding_category_utf_16_auto) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8453 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8454 if (detect_coding_utf_16 (&coding, &detect_info)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8455 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8456 struct coding_system *this; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8457 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8458 if (detect_info.found & CATEGORY_MASK_UTF_16_LE) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8459 this = coding_categories + coding_category_utf_16_le; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8460 else if (detect_info.found & CATEGORY_MASK_UTF_16_BE) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8461 this = coding_categories + coding_category_utf_16_be; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8462 else if (detect_info.rejected & CATEGORY_MASK_UTF_16_LE_NOSIG) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8463 this = coding_categories + coding_category_utf_16_be_nosig; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8464 else |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8465 this = coding_categories + coding_category_utf_16_le_nosig; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8466 val = Fcons (make_number (this->id), Qnil); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8467 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8468 } |
88365 | 8469 else |
8470 { | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8471 detect_info.found = 1 << XINT (CODING_ATTR_CATEGORY (attrs)); |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8472 val = Fcons (make_number (coding.id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8473 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8474 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8475 /* Then, detect eol-format if necessary. */ |
88365 | 8476 { |
100135
0e17542db552
(detect_coding_system): Initialize utf_16_le_eol to -1, val to
Kenichi Handa <handa@m17n.org>
parents:
100133
diff
changeset
|
8477 int normal_eol = -1, utf_16_be_eol = -1, utf_16_le_eol = -1; |
88365 | 8478 Lisp_Object tail; |
8479 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8480 if (VECTORP (eol_type)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8481 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8482 if (detect_info.found & ~CATEGORY_MASK_UTF_16) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8483 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8484 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8485 normal_eol = EOL_SEEN_LF; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8486 else |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8487 normal_eol = detect_eol (coding.source, src_bytes, |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8488 coding_category_raw_text); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8489 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8490 if (detect_info.found & (CATEGORY_MASK_UTF_16_BE |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8491 | CATEGORY_MASK_UTF_16_BE_NOSIG)) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8492 utf_16_be_eol = detect_eol (coding.source, src_bytes, |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8493 coding_category_utf_16_be); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8494 if (detect_info.found & (CATEGORY_MASK_UTF_16_LE |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8495 | CATEGORY_MASK_UTF_16_LE_NOSIG)) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8496 utf_16_le_eol = detect_eol (coding.source, src_bytes, |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8497 coding_category_utf_16_le); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8498 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8499 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8500 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8501 if (EQ (eol_type, Qunix)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8502 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_LF; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8503 else if (EQ (eol_type, Qdos)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8504 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_CRLF; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8505 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8506 normal_eol = utf_16_be_eol = utf_16_le_eol = EOL_SEEN_CR; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8507 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8508 |
88365 | 8509 for (tail = val; CONSP (tail); tail = XCDR (tail)) |
8510 { | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8511 enum coding_category category; |
88365 | 8512 int this_eol; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8513 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8514 id = XINT (XCAR (tail)); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8515 attrs = CODING_ID_ATTRS (id); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8516 category = XINT (CODING_ATTR_CATEGORY (attrs)); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8517 eol_type = CODING_ID_EOL_TYPE (id); |
88365 | 8518 if (VECTORP (eol_type)) |
8519 { | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8520 if (category == coding_category_utf_16_be |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8521 || category == coding_category_utf_16_be_nosig) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8522 this_eol = utf_16_be_eol; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8523 else if (category == coding_category_utf_16_le |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8524 || category == coding_category_utf_16_le_nosig) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8525 this_eol = utf_16_le_eol; |
88365 | 8526 else |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8527 this_eol = normal_eol; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8528 |
88365 | 8529 if (this_eol == EOL_SEEN_LF) |
8530 XSETCAR (tail, AREF (eol_type, 0)); | |
8531 else if (this_eol == EOL_SEEN_CRLF) | |
8532 XSETCAR (tail, AREF (eol_type, 1)); | |
8533 else if (this_eol == EOL_SEEN_CR) | |
8534 XSETCAR (tail, AREF (eol_type, 2)); | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8535 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8536 XSETCAR (tail, CODING_ID_NAME (id)); |
88365 | 8537 } |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8538 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8539 XSETCAR (tail, CODING_ID_NAME (id)); |
88365 | 8540 } |
8541 } | |
8542 | |
100135
0e17542db552
(detect_coding_system): Initialize utf_16_le_eol to -1, val to
Kenichi Handa <handa@m17n.org>
parents:
100133
diff
changeset
|
8543 return (highest ? (CONSP (val) ? XCAR (val) : Qnil) : val); |
42104
d69c2368e549
(DECODE_COMPOSITION_END): Fixed a typo in the last
Sam Steingold <sds@gnu.org>
parents:
42103
diff
changeset
|
8544 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8545 |
88365 | 8546 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8547 DEFUN ("detect-coding-region", Fdetect_coding_region, Sdetect_coding_region, |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8548 2, 3, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8549 doc: /* Detect coding system of the text in the region between START and END. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8550 Return a list of possible coding systems ordered by priority. |
102737
f556415c326b
(Fdetect_coding_region, Fcoding_system_priority_list): Improve the
Kenichi Handa <handa@m17n.org>
parents:
102422
diff
changeset
|
8551 The coding systems to try and their priorities follows what |
f556415c326b
(Fdetect_coding_region, Fcoding_system_priority_list): Improve the
Kenichi Handa <handa@m17n.org>
parents:
102422
diff
changeset
|
8552 the function `coding-system-priority-list' (which see) returns. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8553 |
72552
6493d4697ad2
(Fdetect_coding_region, Fdetect_coding_string): Fix
Kenichi Handa <handa@m17n.org>
parents:
72395
diff
changeset
|
8554 If only ASCII characters are found (except for such ISO-2022 control |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8555 characters as ESC), it returns a list of single element `undecided' |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8556 or its subsidiary coding system according to a detected end-of-line |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8557 format. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8558 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8559 If optional argument HIGHEST is non-nil, return the coding system of |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8560 highest priority. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8561 (start, end, highest) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8562 Lisp_Object start, end, highest; |
17052 | 8563 { |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8564 int from, to; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8565 int from_byte, to_byte; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8566 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
8567 CHECK_NUMBER_COERCE_MARKER (start); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
8568 CHECK_NUMBER_COERCE_MARKER (end); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8569 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8570 validate_region (&start, &end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8571 from = XINT (start), to = XINT (end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8572 from_byte = CHAR_TO_BYTE (from); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8573 to_byte = CHAR_TO_BYTE (to); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8574 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8575 if (from < GPT && to >= GPT) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8576 move_gap_both (to, to_byte); |
88365 | 8577 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8578 return detect_coding_system (BYTE_POS_ADDR (from_byte), |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8579 to - from, to_byte - from_byte, |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
8580 !NILP (highest), |
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
8581 !NILP (current_buffer |
88365 | 8582 ->enable_multibyte_characters), |
8583 Qnil); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8584 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8585 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8586 DEFUN ("detect-coding-string", Fdetect_coding_string, Sdetect_coding_string, |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8587 1, 2, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8588 doc: /* Detect coding system of the text in STRING. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8589 Return a list of possible coding systems ordered by priority. |
102738
41e7ab490f69
(Fdetect_coding_string): Improve the docstrings.
Kenichi Handa <handa@m17n.org>
parents:
102737
diff
changeset
|
8590 The coding systems to try and their priorities follows what |
41e7ab490f69
(Fdetect_coding_string): Improve the docstrings.
Kenichi Handa <handa@m17n.org>
parents:
102737
diff
changeset
|
8591 the function `coding-system-priority-list' (which see) returns. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8592 |
72552
6493d4697ad2
(Fdetect_coding_region, Fdetect_coding_string): Fix
Kenichi Handa <handa@m17n.org>
parents:
72395
diff
changeset
|
8593 If only ASCII characters are found (except for such ISO-2022 control |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8594 characters as ESC), it returns a list of single element `undecided' |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8595 or its subsidiary coding system according to a detected end-of-line |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8596 format. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8597 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8598 If optional argument HIGHEST is non-nil, return the coding system of |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8599 highest priority. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8600 (string, highest) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8601 Lisp_Object string, highest; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8602 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
8603 CHECK_STRING (string); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8604 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
8605 return detect_coding_system (SDATA (string), |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8606 SCHARS (string), SBYTES (string), |
89483 | 8607 !NILP (highest), STRING_MULTIBYTE (string), |
88365 | 8608 Qnil); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8609 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8610 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8611 |
88365 | 8612 static INLINE int |
8613 char_encodable_p (c, attrs) | |
8614 int c; | |
8615 Lisp_Object attrs; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8616 { |
88365 | 8617 Lisp_Object tail; |
8618 struct charset *charset; | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8619 Lisp_Object translation_table; |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8620 |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8621 translation_table = CODING_ATTR_TRANS_TBL (attrs); |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
8622 if (! NILP (translation_table)) |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8623 c = translate_char (translation_table, c); |
88365 | 8624 for (tail = CODING_ATTR_CHARSET_LIST (attrs); |
8625 CONSP (tail); tail = XCDR (tail)) | |
8626 { | |
8627 charset = CHARSET_FROM_ID (XINT (XCAR (tail))); | |
8628 if (CHAR_CHARSET_P (c, charset)) | |
8629 break; | |
8630 } | |
8631 return (! NILP (tail)); | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8632 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8633 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8634 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8635 /* Return a list of coding systems that safely encode the text between |
88365 | 8636 START and END. If EXCLUDE is non-nil, it is a list of coding |
8637 systems not to check. The returned list doesn't contain any such | |
88889
4548f224c603
(Ffind_coding_systems_region_internal): Detect an
Kenichi Handa <handa@m17n.org>
parents:
88876
diff
changeset
|
8638 coding systems. In any case, if the text contains only ASCII or is |
88365 | 8639 unibyte, return t. */ |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8640 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8641 DEFUN ("find-coding-systems-region-internal", |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8642 Ffind_coding_systems_region_internal, |
88365 | 8643 Sfind_coding_systems_region_internal, 2, 3, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8644 doc: /* Internal use only. */) |
88365 | 8645 (start, end, exclude) |
8646 Lisp_Object start, end, exclude; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8647 { |
88365 | 8648 Lisp_Object coding_attrs_list, safe_codings; |
8649 EMACS_INT start_byte, end_byte; | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
8650 const unsigned char *p, *pbeg, *pend; |
88365 | 8651 int c; |
103486
091a55d2d6f7
(Ffind_coding_systems_region_internal): Cache checked characters.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
103474
diff
changeset
|
8652 Lisp_Object tail, elt, work_table; |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8653 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8654 if (STRINGP (start)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8655 { |
88365 | 8656 if (!STRING_MULTIBYTE (start) |
89483 | 8657 || SCHARS (start) == SBYTES (start)) |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8658 return Qt; |
88365 | 8659 start_byte = 0; |
89483 | 8660 end_byte = SBYTES (start); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8661 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8662 else |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8663 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
8664 CHECK_NUMBER_COERCE_MARKER (start); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
8665 CHECK_NUMBER_COERCE_MARKER (end); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8666 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8667 args_out_of_range (start, end); |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8668 if (NILP (current_buffer->enable_multibyte_characters)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8669 return Qt; |
88365 | 8670 start_byte = CHAR_TO_BYTE (XINT (start)); |
8671 end_byte = CHAR_TO_BYTE (XINT (end)); | |
8672 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
8673 return Qt; | |
8674 | |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8675 if (XINT (start) < GPT && XINT (end) > GPT) |
88365 | 8676 { |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8677 if ((GPT - XINT (start)) < (XINT (end) - GPT)) |
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8678 move_gap_both (XINT (start), start_byte); |
88365 | 8679 else |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8680 move_gap_both (XINT (end), end_byte); |
88365 | 8681 } |
8682 } | |
8683 | |
8684 coding_attrs_list = Qnil; | |
8685 for (tail = Vcoding_system_list; CONSP (tail); tail = XCDR (tail)) | |
8686 if (NILP (exclude) | |
8687 || NILP (Fmemq (XCAR (tail), exclude))) | |
8688 { | |
8689 Lisp_Object attrs; | |
8690 | |
8691 attrs = AREF (CODING_SYSTEM_SPEC (XCAR (tail)), 0); | |
8692 if (EQ (XCAR (tail), CODING_ATTR_BASE_NAME (attrs)) | |
8693 && ! EQ (CODING_ATTR_TYPE (attrs), Qundecided)) | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8694 { |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8695 ASET (attrs, coding_attr_trans_tbl, |
89861
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
8696 get_translation_table (attrs, 1, NULL)); |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8697 coding_attrs_list = Fcons (attrs, coding_attrs_list); |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8698 } |
88365 | 8699 } |
8700 | |
8701 if (STRINGP (start)) | |
89483 | 8702 p = pbeg = SDATA (start); |
88365 | 8703 else |
8704 p = pbeg = BYTE_POS_ADDR (start_byte); | |
8705 pend = p + (end_byte - start_byte); | |
8706 | |
8707 while (p < pend && ASCII_BYTE_P (*p)) p++; | |
8708 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
8709 | |
103486
091a55d2d6f7
(Ffind_coding_systems_region_internal): Cache checked characters.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
103474
diff
changeset
|
8710 work_table = Fmake_char_table (Qnil, Qnil); |
88365 | 8711 while (p < pend) |
8712 { | |
8713 if (ASCII_BYTE_P (*p)) | |
8714 p++; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8715 else |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8716 { |
88365 | 8717 c = STRING_CHAR_ADVANCE (p); |
103486
091a55d2d6f7
(Ffind_coding_systems_region_internal): Cache checked characters.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
103474
diff
changeset
|
8718 if (!NILP (char_table_ref (work_table, c))) |
091a55d2d6f7
(Ffind_coding_systems_region_internal): Cache checked characters.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
103474
diff
changeset
|
8719 /* This character was already checked. Ignore it. */ |
091a55d2d6f7
(Ffind_coding_systems_region_internal): Cache checked characters.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
103474
diff
changeset
|
8720 continue; |
88365 | 8721 |
8722 charset_map_loaded = 0; | |
8723 for (tail = coding_attrs_list; CONSP (tail);) | |
8724 { | |
8725 elt = XCAR (tail); | |
8726 if (NILP (elt)) | |
8727 tail = XCDR (tail); | |
8728 else if (char_encodable_p (c, elt)) | |
8729 tail = XCDR (tail); | |
8730 else if (CONSP (XCDR (tail))) | |
8731 { | |
8732 XSETCAR (tail, XCAR (XCDR (tail))); | |
8733 XSETCDR (tail, XCDR (XCDR (tail))); | |
8734 } | |
8735 else | |
8736 { | |
8737 XSETCAR (tail, Qnil); | |
8738 tail = XCDR (tail); | |
8739 } | |
8740 } | |
8741 if (charset_map_loaded) | |
8742 { | |
8743 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
8744 | |
8745 if (STRINGP (start)) | |
89483 | 8746 pbeg = SDATA (start); |
88365 | 8747 else |
8748 pbeg = BYTE_POS_ADDR (start_byte); | |
8749 p = pbeg + p_offset; | |
8750 pend = pbeg + pend_offset; | |
8751 } | |
103486
091a55d2d6f7
(Ffind_coding_systems_region_internal): Cache checked characters.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
103474
diff
changeset
|
8752 char_table_set (work_table, c, Qt); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8753 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8754 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8755 |
89905
37e044cc35f6
(Ffind_coding_systems_region_internal): Include raw-text and
Kenichi Handa <handa@m17n.org>
parents:
89892
diff
changeset
|
8756 safe_codings = list2 (Qraw_text, Qno_conversion); |
88365 | 8757 for (tail = coding_attrs_list; CONSP (tail); tail = XCDR (tail)) |
8758 if (! NILP (XCAR (tail))) | |
8759 safe_codings = Fcons (CODING_ATTR_BASE_NAME (XCAR (tail)), safe_codings); | |
49539
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8760 |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8761 return safe_codings; |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8762 } |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8763 |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8764 |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8765 DEFUN ("unencodable-char-position", Funencodable_char_position, |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8766 Sunencodable_char_position, 3, 5, 0, |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8767 doc: /* |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8768 Return position of first un-encodable character in a region. |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8769 START and END specify the region and CODING-SYSTEM specifies the |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8770 encoding to check. Return nil if CODING-SYSTEM does encode the region. |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8771 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8772 If optional 4th argument COUNT is non-nil, it specifies at most how |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8773 many un-encodable characters to search. In this case, the value is a |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8774 list of positions. |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8775 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8776 If optional 5th argument STRING is non-nil, it is a string to search |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8777 for un-encodable characters. In that case, START and END are indexes |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8778 to the string. */) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8779 (start, end, coding_system, count, string) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8780 Lisp_Object start, end, coding_system, count, string; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8781 { |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8782 int n; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8783 struct coding_system coding; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8784 Lisp_Object attrs, charset_list, translation_table; |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8785 Lisp_Object positions; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8786 int from, to; |
89483 | 8787 const unsigned char *p, *stop, *pend; |
8788 int ascii_compatible; | |
8789 | |
8790 setup_coding_system (Fcheck_coding_system (coding_system), &coding); | |
8791 attrs = CODING_ID_ATTRS (coding.id); | |
8792 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text)) | |
8793 return Qnil; | |
8794 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
8795 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
89861
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
8796 translation_table = get_translation_table (attrs, 1, NULL); |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8797 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8798 if (NILP (string)) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8799 { |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8800 validate_region (&start, &end); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8801 from = XINT (start); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8802 to = XINT (end); |
89483 | 8803 if (NILP (current_buffer->enable_multibyte_characters) |
8804 || (ascii_compatible | |
8805 && (to - from) == (CHAR_TO_BYTE (to) - (CHAR_TO_BYTE (from))))) | |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8806 return Qnil; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8807 p = CHAR_POS_ADDR (from); |
89483 | 8808 pend = CHAR_POS_ADDR (to); |
8809 if (from < GPT && to >= GPT) | |
8810 stop = GPT_ADDR; | |
48829
f6c59ca557c7
(Funencodable_char_position): Set pend correctly.
Kenichi Handa <handa@m17n.org>
parents:
48230
diff
changeset
|
8811 else |
89483 | 8812 stop = pend; |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8813 } |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8814 else |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8815 { |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8816 CHECK_STRING (string); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8817 CHECK_NATNUM (start); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8818 CHECK_NATNUM (end); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8819 from = XINT (start); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8820 to = XINT (end); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8821 if (from > to |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8822 || to > SCHARS (string)) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8823 args_out_of_range_3 (string, start, end); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8824 if (! STRING_MULTIBYTE (string)) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8825 return Qnil; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8826 p = SDATA (string) + string_char_to_byte (string, from); |
89483 | 8827 stop = pend = SDATA (string) + string_char_to_byte (string, to); |
8828 if (ascii_compatible && (to - from) == (pend - p)) | |
8829 return Qnil; | |
8830 } | |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8831 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8832 if (NILP (count)) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8833 n = 1; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8834 else |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8835 { |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8836 CHECK_NATNUM (count); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8837 n = XINT (count); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8838 } |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8839 |
89483 | 8840 positions = Qnil; |
8841 while (1) | |
8842 { | |
8843 int c; | |
8844 | |
8845 if (ascii_compatible) | |
8846 while (p < stop && ASCII_BYTE_P (*p)) | |
8847 p++, from++; | |
8848 if (p >= stop) | |
8849 { | |
8850 if (p >= pend) | |
8851 break; | |
8852 stop = pend; | |
8853 p = GAP_END_ADDR; | |
8854 } | |
8855 | |
8856 c = STRING_CHAR_ADVANCE (p); | |
8857 if (! (ASCII_CHAR_P (c) && ascii_compatible) | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8858 && ! char_charset (translate_char (translation_table, c), |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8859 charset_list, NULL)) |
89483 | 8860 { |
8861 positions = Fcons (make_number (from), positions); | |
8862 n--; | |
8863 if (n == 0) | |
8864 break; | |
8865 } | |
8866 | |
8867 from++; | |
8868 } | |
8869 | |
8870 return (NILP (count) ? Fcar (positions) : Fnreverse (positions)); | |
8871 } | |
8872 | |
8873 | |
88365 | 8874 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region, |
8875 Scheck_coding_systems_region, 3, 3, 0, | |
8876 doc: /* Check if the region is encodable by coding systems. | |
8877 | |
8878 START and END are buffer positions specifying the region. | |
8879 CODING-SYSTEM-LIST is a list of coding systems to check. | |
8880 | |
8881 The value is an alist ((CODING-SYSTEM POS0 POS1 ...) ...), where | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8882 CODING-SYSTEM is a member of CODING-SYSTEM-LIST and can't encode the |
88365 | 8883 whole region, POS0, POS1, ... are buffer positions where non-encodable |
8884 characters are found. | |
8885 | |
8886 If all coding systems in CODING-SYSTEM-LIST can encode the region, the | |
8887 value is nil. | |
8888 | |
8889 START may be a string. In that case, check if the string is | |
8890 encodable, and the value contains indices to the string instead of | |
102055
4d3a5c88cb2b
(Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
Kenichi Handa <handa@m17n.org>
parents:
101943
diff
changeset
|
8891 buffer positions. END is ignored. |
4d3a5c88cb2b
(Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
Kenichi Handa <handa@m17n.org>
parents:
101943
diff
changeset
|
8892 |
102058
4f60db600648
(Fcheck_coding_systems_region): Fix test for unibyte
Andreas Schwab <schwab@suse.de>
parents:
102055
diff
changeset
|
8893 If the current buffer (or START if it is a string) is unibyte, the value |
102055
4d3a5c88cb2b
(Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
Kenichi Handa <handa@m17n.org>
parents:
101943
diff
changeset
|
8894 is nil. */) |
88365 | 8895 (start, end, coding_system_list) |
8896 Lisp_Object start, end, coding_system_list; | |
8897 { | |
8898 Lisp_Object list; | |
8899 EMACS_INT start_byte, end_byte; | |
8900 int pos; | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
8901 const unsigned char *p, *pbeg, *pend; |
88365 | 8902 int c; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8903 Lisp_Object tail, elt, attrs; |
88365 | 8904 |
8905 if (STRINGP (start)) | |
8906 { | |
8907 if (!STRING_MULTIBYTE (start) | |
102058
4f60db600648
(Fcheck_coding_systems_region): Fix test for unibyte
Andreas Schwab <schwab@suse.de>
parents:
102055
diff
changeset
|
8908 || SCHARS (start) == SBYTES (start)) |
88365 | 8909 return Qnil; |
8910 start_byte = 0; | |
89483 | 8911 end_byte = SBYTES (start); |
88365 | 8912 pos = 0; |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8913 } |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8914 else |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8915 { |
88365 | 8916 CHECK_NUMBER_COERCE_MARKER (start); |
8917 CHECK_NUMBER_COERCE_MARKER (end); | |
8918 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end)) | |
8919 args_out_of_range (start, end); | |
8920 if (NILP (current_buffer->enable_multibyte_characters)) | |
8921 return Qnil; | |
8922 start_byte = CHAR_TO_BYTE (XINT (start)); | |
8923 end_byte = CHAR_TO_BYTE (XINT (end)); | |
8924 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
102055
4d3a5c88cb2b
(Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
Kenichi Handa <handa@m17n.org>
parents:
101943
diff
changeset
|
8925 return Qnil; |
88365 | 8926 |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8927 if (XINT (start) < GPT && XINT (end) > GPT) |
88365 | 8928 { |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8929 if ((GPT - XINT (start)) < (XINT (end) - GPT)) |
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8930 move_gap_both (XINT (start), start_byte); |
88365 | 8931 else |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8932 move_gap_both (XINT (end), end_byte); |
88365 | 8933 } |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8934 pos = XINT (start); |
88365 | 8935 } |
8936 | |
8937 list = Qnil; | |
8938 for (tail = coding_system_list; CONSP (tail); tail = XCDR (tail)) | |
8939 { | |
8940 elt = XCAR (tail); | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8941 attrs = AREF (CODING_SYSTEM_SPEC (elt), 0); |
89861
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
8942 ASET (attrs, coding_attr_trans_tbl, |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
8943 get_translation_table (attrs, 1, NULL)); |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8944 list = Fcons (Fcons (elt, Fcons (attrs, Qnil)), list); |
88365 | 8945 } |
8946 | |
8947 if (STRINGP (start)) | |
89483 | 8948 p = pbeg = SDATA (start); |
88365 | 8949 else |
8950 p = pbeg = BYTE_POS_ADDR (start_byte); | |
8951 pend = p + (end_byte - start_byte); | |
8952 | |
8953 while (p < pend && ASCII_BYTE_P (*p)) p++, pos++; | |
8954 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
8955 | |
8956 while (p < pend) | |
8957 { | |
8958 if (ASCII_BYTE_P (*p)) | |
8959 p++; | |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8960 else |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8961 { |
88365 | 8962 c = STRING_CHAR_ADVANCE (p); |
8963 | |
8964 charset_map_loaded = 0; | |
8965 for (tail = list; CONSP (tail); tail = XCDR (tail)) | |
8966 { | |
8967 elt = XCDR (XCAR (tail)); | |
8968 if (! char_encodable_p (c, XCAR (elt))) | |
8969 XSETCDR (elt, Fcons (make_number (pos), XCDR (elt))); | |
8970 } | |
8971 if (charset_map_loaded) | |
8972 { | |
8973 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
8974 | |
8975 if (STRINGP (start)) | |
89483 | 8976 pbeg = SDATA (start); |
88365 | 8977 else |
8978 pbeg = BYTE_POS_ADDR (start_byte); | |
8979 p = pbeg + p_offset; | |
8980 pend = pbeg + pend_offset; | |
8981 } | |
8982 } | |
8983 pos++; | |
8984 } | |
8985 | |
8986 tail = list; | |
8987 list = Qnil; | |
8988 for (; CONSP (tail); tail = XCDR (tail)) | |
8989 { | |
8990 elt = XCAR (tail); | |
8991 if (CONSP (XCDR (XCDR (elt)))) | |
8992 list = Fcons (Fcons (XCAR (elt), Fnreverse (XCDR (XCDR (elt)))), | |
8993 list); | |
8994 } | |
8995 | |
8996 return list; | |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8997 } |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8998 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8999 |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9000 Lisp_Object |
88365 | 9001 code_convert_region (start, end, coding_system, dst_object, encodep, norecord) |
9002 Lisp_Object start, end, coding_system, dst_object; | |
9003 int encodep, norecord; | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9004 { |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9005 struct coding_system coding; |
88365 | 9006 EMACS_INT from, from_byte, to, to_byte; |
9007 Lisp_Object src_object; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9008 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9009 CHECK_NUMBER_COERCE_MARKER (start); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9010 CHECK_NUMBER_COERCE_MARKER (end); |
88365 | 9011 if (NILP (coding_system)) |
9012 coding_system = Qno_conversion; | |
9013 else | |
9014 CHECK_CODING_SYSTEM (coding_system); | |
9015 src_object = Fcurrent_buffer (); | |
9016 if (NILP (dst_object)) | |
9017 dst_object = src_object; | |
9018 else if (! EQ (dst_object, Qt)) | |
9019 CHECK_BUFFER (dst_object); | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9020 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9021 validate_region (&start, &end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9022 from = XFASTINT (start); |
88365 | 9023 from_byte = CHAR_TO_BYTE (from); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9024 to = XFASTINT (end); |
88365 | 9025 to_byte = CHAR_TO_BYTE (to); |
9026 | |
9027 setup_coding_system (coding_system, &coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9028 coding.mode |= CODING_MODE_LAST_BLOCK; |
88365 | 9029 |
9030 if (encodep) | |
9031 encode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
9032 dst_object); | |
9033 else | |
9034 decode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
9035 dst_object); | |
9036 if (! norecord) | |
9037 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
9038 | |
9039 return (BUFFERP (dst_object) | |
9040 ? make_number (coding.produced_char) | |
9041 : coding.dst_object); | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9042 } |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9043 |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9044 |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9045 DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, |
88365 | 9046 3, 4, "r\nzCoding system: ", |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9047 doc: /* Decode the current region from the specified coding system. |
88365 | 9048 When called from a program, takes four arguments: |
9049 START, END, CODING-SYSTEM, and DESTINATION. | |
9050 START and END are buffer positions. | |
9051 | |
9052 Optional 4th arguments DESTINATION specifies where the decoded text goes. | |
91083
ff87badce376
(Fdecode_coding_region): Fix typo in docstring.
Kenichi Handa <handa@m17n.org>
parents:
91056
diff
changeset
|
9053 If nil, the region between START and END is replaced by the decoded text. |
98992
d4659edb9b7b
(Fencode_coding_region, Fdecode_coding_region)
Eli Zaretskii <eliz@gnu.org>
parents:
98951
diff
changeset
|
9054 If buffer, the decoded text is inserted in that buffer after point (point |
d4659edb9b7b
(Fencode_coding_region, Fdecode_coding_region)
Eli Zaretskii <eliz@gnu.org>
parents:
98951
diff
changeset
|
9055 does not move). |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
9056 In those cases, the length of the decoded text is returned. |
95353
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
9057 If DESTINATION is t, the decoded text is returned. |
88365 | 9058 |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9059 This function sets `last-coding-system-used' to the precise coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9060 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is |
95353
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
9061 not fully specified.) */) |
88365 | 9062 (start, end, coding_system, destination) |
9063 Lisp_Object start, end, coding_system, destination; | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9064 { |
88365 | 9065 return code_convert_region (start, end, coding_system, destination, 0, 0); |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9066 } |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9067 |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9068 DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, |
88365 | 9069 3, 4, "r\nzCoding system: ", |
9070 doc: /* Encode the current region by specified coding system. | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9071 When called from a program, takes four arguments: |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9072 START, END, CODING-SYSTEM and DESTINATION. |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9073 START and END are buffer positions. |
88365 | 9074 |
9075 Optional 4th arguments DESTINATION specifies where the encoded text goes. | |
9076 If nil, the region between START and END is replace by the encoded text. | |
98992
d4659edb9b7b
(Fencode_coding_region, Fdecode_coding_region)
Eli Zaretskii <eliz@gnu.org>
parents:
98951
diff
changeset
|
9077 If buffer, the encoded text is inserted in that buffer after point (point |
d4659edb9b7b
(Fencode_coding_region, Fdecode_coding_region)
Eli Zaretskii <eliz@gnu.org>
parents:
98951
diff
changeset
|
9078 does not move). |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
9079 In those cases, the length of the encoded text is returned. |
95353
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
9080 If DESTINATION is t, the encoded text is returned. |
88365 | 9081 |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9082 This function sets `last-coding-system-used' to the precise coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9083 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is |
95353
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
9084 not fully specified.) */) |
88365 | 9085 (start, end, coding_system, destination) |
9086 Lisp_Object start, end, coding_system, destination; | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9087 { |
88365 | 9088 return code_convert_region (start, end, coding_system, destination, 1, 0); |
17052 | 9089 } |
9090 | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9091 Lisp_Object |
88365 | 9092 code_convert_string (string, coding_system, dst_object, |
9093 encodep, nocopy, norecord) | |
9094 Lisp_Object string, coding_system, dst_object; | |
9095 int encodep, nocopy, norecord; | |
17052 | 9096 { |
9097 struct coding_system coding; | |
88365 | 9098 EMACS_INT chars, bytes; |
17052 | 9099 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9100 CHECK_STRING (string); |
88365 | 9101 if (NILP (coding_system)) |
9102 { | |
9103 if (! norecord) | |
9104 Vlast_coding_system_used = Qno_conversion; | |
9105 if (NILP (dst_object)) | |
9106 return (nocopy ? Fcopy_sequence (string) : string); | |
9107 } | |
17052 | 9108 |
70520
b6740a317343
(setup_coding_system): For invalid coding-system, set
Kenichi Handa <handa@m17n.org>
parents:
69995
diff
changeset
|
9109 if (NILP (coding_system)) |
88365 | 9110 coding_system = Qno_conversion; |
9111 else | |
9112 CHECK_CODING_SYSTEM (coding_system); | |
9113 if (NILP (dst_object)) | |
9114 dst_object = Qt; | |
9115 else if (! EQ (dst_object, Qt)) | |
9116 CHECK_BUFFER (dst_object); | |
9117 | |
9118 setup_coding_system (coding_system, &coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9119 coding.mode |= CODING_MODE_LAST_BLOCK; |
89483 | 9120 chars = SCHARS (string); |
9121 bytes = SBYTES (string); | |
88365 | 9122 if (encodep) |
9123 encode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
9124 else | |
9125 decode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
9126 if (! norecord) | |
9127 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
9128 | |
9129 return (BUFFERP (dst_object) | |
9130 ? make_number (coding.produced_char) | |
9131 : coding.dst_object); | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9132 } |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9133 |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9134 |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9135 /* Encode or decode STRING according to CODING_SYSTEM. |
26847 | 9136 Do not set Vlast_coding_system_used. |
9137 | |
9138 This function is called only from macros DECODE_FILE and | |
9139 ENCODE_FILE, thus we ignore character composition. */ | |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9140 |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9141 Lisp_Object |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9142 code_convert_string_norecord (string, coding_system, encodep) |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9143 Lisp_Object string, coding_system; |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9144 int encodep; |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9145 { |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
9146 return code_convert_string (string, coding_system, Qt, encodep, 0, 1); |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9147 } |
88365 | 9148 |
9149 | |
9150 DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | |
9151 2, 4, 0, | |
9152 doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. | |
9153 | |
9154 Optional third arg NOCOPY non-nil means it is OK to return STRING itself | |
9155 if the decoding operation is trivial. | |
9156 | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9157 Optional fourth arg BUFFER non-nil means that the decoded text is |
98992
d4659edb9b7b
(Fencode_coding_region, Fdecode_coding_region)
Eli Zaretskii <eliz@gnu.org>
parents:
98951
diff
changeset
|
9158 inserted in that buffer after point (point does not move). In this |
d4659edb9b7b
(Fencode_coding_region, Fdecode_coding_region)
Eli Zaretskii <eliz@gnu.org>
parents:
98951
diff
changeset
|
9159 case, the return value is the length of the decoded text. |
88365 | 9160 |
9161 This function sets `last-coding-system-used' to the precise coding system | |
9162 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9163 not fully specified.) */) |
88365 | 9164 (string, coding_system, nocopy, buffer) |
9165 Lisp_Object string, coding_system, nocopy, buffer; | |
9166 { | |
9167 return code_convert_string (string, coding_system, buffer, | |
9168 0, ! NILP (nocopy), 0); | |
9169 } | |
9170 | |
9171 DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, | |
9172 2, 4, 0, | |
9173 doc: /* Encode STRING to CODING-SYSTEM, and return the result. | |
9174 | |
9175 Optional third arg NOCOPY non-nil means it is OK to return STRING | |
9176 itself if the encoding operation is trivial. | |
9177 | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9178 Optional fourth arg BUFFER non-nil means that the encoded text is |
98992
d4659edb9b7b
(Fencode_coding_region, Fdecode_coding_region)
Eli Zaretskii <eliz@gnu.org>
parents:
98951
diff
changeset
|
9179 inserted in that buffer after point (point does not move). In this |
d4659edb9b7b
(Fencode_coding_region, Fdecode_coding_region)
Eli Zaretskii <eliz@gnu.org>
parents:
98951
diff
changeset
|
9180 case, the return value is the length of the encoded text. |
88365 | 9181 |
9182 This function sets `last-coding-system-used' to the precise coding system | |
9183 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
9184 not fully specified.) */) | |
9185 (string, coding_system, nocopy, buffer) | |
9186 Lisp_Object string, coding_system, nocopy, buffer; | |
9187 { | |
9188 return code_convert_string (string, coding_system, buffer, | |
88856 | 9189 1, ! NILP (nocopy), 1); |
88365 | 9190 } |
9191 | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9192 |
17052 | 9193 DEFUN ("decode-sjis-char", Fdecode_sjis_char, Sdecode_sjis_char, 1, 1, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9194 doc: /* Decode a Japanese character which has CODE in shift_jis encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9195 Return the corresponding character. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9196 (code) |
17052 | 9197 Lisp_Object code; |
9198 { | |
88365 | 9199 Lisp_Object spec, attrs, val; |
9200 struct charset *charset_roman, *charset_kanji, *charset_kana, *charset; | |
9201 int c; | |
9202 | |
9203 CHECK_NATNUM (code); | |
9204 c = XFASTINT (code); | |
9205 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
9206 attrs = AREF (spec, 0); | |
9207 | |
9208 if (ASCII_BYTE_P (c) | |
9209 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
9210 return code; | |
9211 | |
9212 val = CODING_ATTR_CHARSET_LIST (attrs); | |
9213 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
9214 charset_kana = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); |
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
9215 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); |
88365 | 9216 |
9217 if (c <= 0x7F) | |
9218 charset = charset_roman; | |
9219 else if (c >= 0xA0 && c < 0xDF) | |
9220 { | |
9221 charset = charset_kana; | |
9222 c -= 0x80; | |
24065
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
9223 } |
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
9224 else |
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
9225 { |
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
9226 int s1 = c >> 8, s2 = c & 0xFF; |
88365 | 9227 |
9228 if (s1 < 0x81 || (s1 > 0x9F && s1 < 0xE0) || s1 > 0xEF | |
9229 || s2 < 0x40 || s2 == 0x7F || s2 > 0xFC) | |
9230 error ("Invalid code: %d", code); | |
9231 SJIS_TO_JIS (c); | |
9232 charset = charset_kanji; | |
9233 } | |
9234 c = DECODE_CHAR (charset, c); | |
9235 if (c < 0) | |
9236 error ("Invalid code: %d", code); | |
9237 return make_number (c); | |
17052 | 9238 } |
9239 | |
9240 | |
9241 DEFUN ("encode-sjis-char", Fencode_sjis_char, Sencode_sjis_char, 1, 1, 0, | |
73949
0d1207b43a5b
(Fencode_sjis_char, Fencode_big5_char): Improve argument/docstring consistency.
Juanma Barranquero <lekktu@gmail.com>
parents:
72552
diff
changeset
|
9242 doc: /* Encode a Japanese character CH to shift_jis encoding. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9243 Return the corresponding code in SJIS. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9244 (ch) |
88365 | 9245 Lisp_Object ch; |
17052 | 9246 { |
88365 | 9247 Lisp_Object spec, attrs, charset_list; |
9248 int c; | |
9249 struct charset *charset; | |
9250 unsigned code; | |
9251 | |
9252 CHECK_CHARACTER (ch); | |
9253 c = XFASTINT (ch); | |
9254 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
9255 attrs = AREF (spec, 0); | |
9256 | |
9257 if (ASCII_CHAR_P (c) | |
9258 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
9259 return ch; | |
9260 | |
9261 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
9262 charset = char_charset (c, charset_list, &code); | |
9263 if (code == CHARSET_INVALID_CODE (charset)) | |
9264 error ("Can't encode by shift_jis encoding: %d", c); | |
9265 JIS_TO_SJIS (code); | |
9266 | |
9267 return make_number (code); | |
17052 | 9268 } |
9269 | |
9270 DEFUN ("decode-big5-char", Fdecode_big5_char, Sdecode_big5_char, 1, 1, 0, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9271 doc: /* Decode a Big5 character which has CODE in BIG5 coding system. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9272 Return the corresponding character. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9273 (code) |
17052 | 9274 Lisp_Object code; |
9275 { | |
88365 | 9276 Lisp_Object spec, attrs, val; |
9277 struct charset *charset_roman, *charset_big5, *charset; | |
9278 int c; | |
9279 | |
9280 CHECK_NATNUM (code); | |
9281 c = XFASTINT (code); | |
9282 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
9283 attrs = AREF (spec, 0); | |
9284 | |
9285 if (ASCII_BYTE_P (c) | |
9286 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
9287 return code; | |
9288 | |
9289 val = CODING_ATTR_CHARSET_LIST (attrs); | |
9290 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
9291 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
9292 | |
9293 if (c <= 0x7F) | |
9294 charset = charset_roman; | |
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
9295 else |
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
9296 { |
88365 | 9297 int b1 = c >> 8, b2 = c & 0x7F; |
9298 if (b1 < 0xA1 || b1 > 0xFE | |
9299 || b2 < 0x40 || (b2 > 0x7E && b2 < 0xA1) || b2 > 0xFE) | |
9300 error ("Invalid code: %d", code); | |
9301 charset = charset_big5; | |
9302 } | |
9303 c = DECODE_CHAR (charset, (unsigned )c); | |
9304 if (c < 0) | |
9305 error ("Invalid code: %d", code); | |
9306 return make_number (c); | |
17052 | 9307 } |
9308 | |
9309 DEFUN ("encode-big5-char", Fencode_big5_char, Sencode_big5_char, 1, 1, 0, | |
73949
0d1207b43a5b
(Fencode_sjis_char, Fencode_big5_char): Improve argument/docstring consistency.
Juanma Barranquero <lekktu@gmail.com>
parents:
72552
diff
changeset
|
9310 doc: /* Encode the Big5 character CH to BIG5 coding system. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9311 Return the corresponding character code in Big5. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9312 (ch) |
17052 | 9313 Lisp_Object ch; |
9314 { | |
88365 | 9315 Lisp_Object spec, attrs, charset_list; |
9316 struct charset *charset; | |
9317 int c; | |
9318 unsigned code; | |
9319 | |
9320 CHECK_CHARACTER (ch); | |
9321 c = XFASTINT (ch); | |
9322 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
9323 attrs = AREF (spec, 0); | |
9324 if (ASCII_CHAR_P (c) | |
9325 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
9326 return ch; | |
9327 | |
9328 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
9329 charset = char_charset (c, charset_list, &code); | |
9330 if (code == CHARSET_INVALID_CODE (charset)) | |
9331 error ("Can't encode by Big5 encoding: %d", c); | |
9332 | |
9333 return make_number (code); | |
17052 | 9334 } |
88365 | 9335 |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9336 |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
9337 DEFUN ("set-terminal-coding-system-internal", Fset_terminal_coding_system_internal, |
83298
ed09a89e2b25
Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents:
83292
diff
changeset
|
9338 Sset_terminal_coding_system_internal, 1, 2, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9339 doc: /* Internal use only. */) |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9340 (coding_system, terminal) |
17052 | 9341 Lisp_Object coding_system; |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9342 Lisp_Object terminal; |
17052 | 9343 { |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9344 struct coding_system *terminal_coding = TERMINAL_TERMINAL_CODING (get_terminal (terminal, 1)); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9345 CHECK_SYMBOL (coding_system); |
83127
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
9346 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
|
9347 /* We had better not send unsafe characters to terminal. */ |
91041 | 9348 terminal_coding->mode |= CODING_MODE_SAFE_ENCODING; |
88365 | 9349 /* Characer composition should be disabled. */ |
91041 | 9350 terminal_coding->common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; |
83127
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
9351 terminal_coding->src_multibyte = 1; |
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
9352 terminal_coding->dst_multibyte = 0; |
17052 | 9353 return Qnil; |
9354 } | |
9355 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9356 DEFUN ("set-safe-terminal-coding-system-internal", |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9357 Fset_safe_terminal_coding_system_internal, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9358 Sset_safe_terminal_coding_system_internal, 1, 1, 0, |
41006 | 9359 doc: /* Internal use only. */) |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9360 (coding_system) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9361 Lisp_Object coding_system; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9362 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9363 CHECK_SYMBOL (coding_system); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9364 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
|
9365 &safe_terminal_coding); |
88365 | 9366 /* Characer composition should be disabled. */ |
9367 safe_terminal_coding.common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
9368 safe_terminal_coding.src_multibyte = 1; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
9369 safe_terminal_coding.dst_multibyte = 0; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9370 return Qnil; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9371 } |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9372 |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
9373 DEFUN ("terminal-coding-system", Fterminal_coding_system, |
83298
ed09a89e2b25
Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents:
83292
diff
changeset
|
9374 Sterminal_coding_system, 0, 1, 0, |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9375 doc: /* Return coding system specified for terminal output on the given terminal. |
103052
e68707cf48a5
* keyboard.c (Fset_input_meta_mode): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
103035
diff
changeset
|
9376 TERMINAL may be a terminal object, a frame, or nil for the selected |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9377 frame's terminal device. */) |
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9378 (terminal) |
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9379 Lisp_Object terminal; |
17052 | 9380 { |
91046 | 9381 struct coding_system *terminal_coding |
9382 = TERMINAL_TERMINAL_CODING (get_terminal (terminal, 1)); | |
9383 Lisp_Object coding_system = CODING_ID_NAME (terminal_coding->id); | |
9384 | |
90011
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
9385 /* For backward compatibility, return nil if it is `undecided'. */ |
90359
041f75914d0c
(produce_composition): Compare charbuf[i] instead of
Kenichi Handa <handa@m17n.org>
parents:
90354
diff
changeset
|
9386 return (! EQ (coding_system, Qundecided) ? coding_system : Qnil); |
17052 | 9387 } |
9388 | |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
9389 DEFUN ("set-keyboard-coding-system-internal", Fset_keyboard_coding_system_internal, |
83298
ed09a89e2b25
Fix UTF-8 tty input when first frame is an X frame. Steps towards multiple tty locale support.
Karoly Lorentey <lorentey@elte.hu>
parents:
83292
diff
changeset
|
9390 Sset_keyboard_coding_system_internal, 1, 2, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9391 doc: /* Internal use only. */) |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9392 (coding_system, terminal) |
17052 | 9393 Lisp_Object coding_system; |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9394 Lisp_Object terminal; |
17052 | 9395 { |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9396 struct terminal *t = get_terminal (terminal, 1); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9397 CHECK_SYMBOL (coding_system); |
103655
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9398 if (NILP (coding_system)) |
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9399 coding_system = Qno_conversion; |
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9400 else |
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9401 Fcheck_coding_system (coding_system); |
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9402 setup_coding_system (coding_system, TERMINAL_KEYBOARD_CODING (t)); |
88365 | 9403 /* Characer composition should be disabled. */ |
91041 | 9404 TERMINAL_KEYBOARD_CODING (t)->common_flags |
9405 &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
17052 | 9406 return Qnil; |
9407 } | |
9408 | |
9409 DEFUN ("keyboard-coding-system", | |
91046 | 9410 Fkeyboard_coding_system, Skeyboard_coding_system, 0, 1, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9411 doc: /* Return coding system specified for decoding keyboard input. */) |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9412 (terminal) |
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9413 Lisp_Object terminal; |
17052 | 9414 { |
91046 | 9415 return CODING_ID_NAME (TERMINAL_KEYBOARD_CODING |
9416 (get_terminal (terminal, 1))->id); | |
17052 | 9417 } |
9418 | |
9419 | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
9420 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
|
9421 Sfind_operation_coding_system, 1, MANY, 0, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9422 doc: /* Choose a coding system for an operation based on the target name. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9423 The value names a pair of coding systems: (DECODING-SYSTEM . ENCODING-SYSTEM). |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9424 DECODING-SYSTEM is the coding system to use for decoding |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9425 \(in case OPERATION does decoding), and ENCODING-SYSTEM is the coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9426 for encoding (in case OPERATION does encoding). |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9427 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9428 The first argument OPERATION specifies an I/O primitive: |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9429 For file I/O, `insert-file-contents' or `write-region'. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9430 For process I/O, `call-process', `call-process-region', or `start-process'. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9431 For network I/O, `open-network-stream'. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9432 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9433 The remaining arguments should be the same arguments that were passed |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9434 to the primitive. Depending on which primitive, one of those arguments |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9435 is selected as the TARGET. For example, if OPERATION does file I/O, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9436 whichever argument specifies the file name is TARGET. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9437 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9438 TARGET has a meaning which depends on OPERATION: |
70948
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9439 For file I/O, TARGET is a file name (except for the special case below). |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9440 For process I/O, TARGET is a process name. |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9441 For network I/O, TARGET is a service name or a port number. |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9442 |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9443 This function looks up what is specified for TARGET in |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9444 `file-coding-system-alist', `process-coding-system-alist', |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9445 or `network-coding-system-alist' depending on OPERATION. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9446 They may specify a coding system, a cons of coding systems, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9447 or a function symbol to call. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9448 In the last case, we call the function with one argument, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9449 which is a list of all the arguments given to this function. |
81611
ae42ad5f89e6
(Ffind_operation_coding_system): Docstring improved.
Kenichi Handa <handa@m17n.org>
parents:
75348
diff
changeset
|
9450 If the function can't decide a coding system, it can return |
ae42ad5f89e6
(Ffind_operation_coding_system): Docstring improved.
Kenichi Handa <handa@m17n.org>
parents:
75348
diff
changeset
|
9451 `undecided' so that the normal code-detection is performed. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9452 |
70948
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9453 If OPERATION is `insert-file-contents', the argument corresponding to |
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9454 TARGET may be a cons (FILENAME . BUFFER). In that case, FILENAME is a |
71084
ccef92f2f7f8
(Ffind_operation_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
71070
diff
changeset
|
9455 file name to look up, and BUFFER is a buffer that contains the file's |
ccef92f2f7f8
(Ffind_operation_coding_system): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
71070
diff
changeset
|
9456 contents (not yet decoded). If `file-coding-system-alist' specifies a |
71070
0c8ac7192244
(Ffind_operation_coding_system): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
71039
diff
changeset
|
9457 function to call for FILENAME, that function should examine the |
0c8ac7192244
(Ffind_operation_coding_system): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
71039
diff
changeset
|
9458 contents of BUFFER instead of reading the file. |
70948
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9459 |
78152
5e5f359984e5
(Ffind_operation_coding_system): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
75348
diff
changeset
|
9460 usage: (find-operation-coding-system OPERATION ARGUMENTS...) */) |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9461 (nargs, args) |
17052 | 9462 int nargs; |
9463 Lisp_Object *args; | |
9464 { | |
9465 Lisp_Object operation, target_idx, target, val; | |
9466 register Lisp_Object chain; | |
9467 | |
9468 if (nargs < 2) | |
9469 error ("Too few arguments"); | |
9470 operation = args[0]; | |
9471 if (!SYMBOLP (operation) | |
9472 || !INTEGERP (target_idx = Fget (operation, Qtarget_idx))) | |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
9473 error ("Invalid first argument"); |
17052 | 9474 if (nargs < 1 + XINT (target_idx)) |
9475 error ("Too few arguments for operation: %s", | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
9476 SDATA (SYMBOL_NAME (operation))); |
17052 | 9477 target = args[XINT (target_idx) + 1]; |
9478 if (!(STRINGP (target) | |
70948
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9479 || (EQ (operation, Qinsert_file_contents) && CONSP (target) |
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9480 && STRINGP (XCAR (target)) && BUFFERP (XCDR (target))) |
17052 | 9481 || (EQ (operation, Qopen_network_stream) && INTEGERP (target)))) |
88365 | 9482 error ("Invalid %dth argument", XINT (target_idx) + 1); |
70948
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9483 if (CONSP (target)) |
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9484 target = XCAR (target); |
17052 | 9485 |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
9486 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
|
9487 || EQ (operation, Qwrite_region)) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9488 ? 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
|
9489 : (EQ (operation, Qopen_network_stream) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9490 ? Vnetwork_coding_system_alist |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9491 : Vprocess_coding_system_alist)); |
17052 | 9492 if (NILP (chain)) |
9493 return Qnil; | |
9494 | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9495 for (; CONSP (chain); chain = XCDR (chain)) |
17052 | 9496 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
9497 Lisp_Object elt; |
88365 | 9498 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9499 elt = XCAR (chain); |
17052 | 9500 if (CONSP (elt) |
9501 && ((STRINGP (target) | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9502 && STRINGP (XCAR (elt)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9503 && fast_string_match (XCAR (elt), target) >= 0) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9504 || (INTEGERP (target) && EQ (target, XCAR (elt))))) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9505 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9506 val = XCDR (elt); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9507 /* 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
|
9508 function symbol, we return VAL as a coding system. */ |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9509 if (CONSP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9510 return val; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9511 if (! SYMBOLP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9512 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9513 if (! NILP (Fcoding_system_p (val))) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9514 return Fcons (val, val); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9515 if (! NILP (Ffboundp (val))) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9516 { |
72188 | 9517 /* We use call1 rather than safe_call1 |
9518 so as to get bug reports about functions called here | |
9519 which don't handle the current interface. */ | |
72180
f3bc55b96df5
(Ffind_operation_coding_system): Revert the change from 2006-05-29.
Eli Zaretskii <eliz@gnu.org>
parents:
71972
diff
changeset
|
9520 val = call1 (val, Flist (nargs, args)); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9521 if (CONSP (val)) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9522 return val; |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9523 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
|
9524 return Fcons (val, val); |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9525 } |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9526 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9527 } |
17052 | 9528 } |
9529 return Qnil; | |
9530 } | |
9531 | |
88365 | 9532 DEFUN ("set-coding-system-priority", Fset_coding_system_priority, |
88845
64b8f6168269
(Fset_coding_system_priority): Allow null arg list.
Dave Love <fx@gnu.org>
parents:
88771
diff
changeset
|
9533 Sset_coding_system_priority, 0, MANY, 0, |
88645 | 9534 doc: /* Assign higher priority to the coding systems given as arguments. |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9535 If multiple coding systems belong to the same category, |
89519
040a08a2a879
(Fread_coding_system): Fix arg of XSETSTRING.
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
9536 all but the first one are ignored. |
040a08a2a879
(Fread_coding_system): Fix arg of XSETSTRING.
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
9537 |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9538 usage: (set-coding-system-priority &rest coding-systems) */) |
88365 | 9539 (nargs, args) |
9540 int nargs; | |
9541 Lisp_Object *args; | |
9542 { | |
9543 int i, j; | |
9544 int changed[coding_category_max]; | |
9545 enum coding_category priorities[coding_category_max]; | |
9546 | |
9547 bzero (changed, sizeof changed); | |
9548 | |
9549 for (i = j = 0; i < nargs; i++) | |
9550 { | |
9551 enum coding_category category; | |
9552 Lisp_Object spec, attrs; | |
9553 | |
9554 CHECK_CODING_SYSTEM_GET_SPEC (args[i], spec); | |
9555 attrs = AREF (spec, 0); | |
9556 category = XINT (CODING_ATTR_CATEGORY (attrs)); | |
9557 if (changed[category]) | |
9558 /* Ignore this coding system because a coding system of the | |
9559 same category already had a higher priority. */ | |
9560 continue; | |
9561 changed[category] = 1; | |
9562 priorities[j++] = category; | |
9563 if (coding_categories[category].id >= 0 | |
9564 && ! EQ (args[i], CODING_ID_NAME (coding_categories[category].id))) | |
9565 setup_coding_system (args[i], &coding_categories[category]); | |
89467
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9566 Fset (AREF (Vcoding_category_table, category), args[i]); |
88365 | 9567 } |
9568 | |
9569 /* Now we have decided top J priorities. Reflect the order of the | |
9570 original priorities to the remaining priorities. */ | |
9571 | |
9572 for (i = j, j = 0; i < coding_category_max; i++, j++) | |
9573 { | |
9574 while (j < coding_category_max | |
9575 && changed[coding_priorities[j]]) | |
9576 j++; | |
9577 if (j == coding_category_max) | |
9578 abort (); | |
9579 priorities[i] = coding_priorities[j]; | |
9580 } | |
9581 | |
9582 bcopy (priorities, coding_priorities, sizeof priorities); | |
89467
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9583 |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9584 /* Update `coding-category-list'. */ |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9585 Vcoding_category_list = Qnil; |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9586 for (i = coding_category_max - 1; i >= 0; i--) |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9587 Vcoding_category_list |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9588 = Fcons (AREF (Vcoding_category_table, priorities[i]), |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9589 Vcoding_category_list); |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
9590 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9591 return Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9592 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9593 |
88365 | 9594 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list, |
9595 Scoding_system_priority_list, 0, 1, 0, | |
88645 | 9596 doc: /* Return a list of coding systems ordered by their priorities. |
102737
f556415c326b
(Fdetect_coding_region, Fcoding_system_priority_list): Improve the
Kenichi Handa <handa@m17n.org>
parents:
102422
diff
changeset
|
9597 The list contains a subset of coding systems; i.e. coding systems |
f556415c326b
(Fdetect_coding_region, Fcoding_system_priority_list): Improve the
Kenichi Handa <handa@m17n.org>
parents:
102422
diff
changeset
|
9598 assigned to each coding category (see `coding-category-list'). |
f556415c326b
(Fdetect_coding_region, Fcoding_system_priority_list): Improve the
Kenichi Handa <handa@m17n.org>
parents:
102422
diff
changeset
|
9599 |
88645 | 9600 HIGHESTP non-nil means just return the highest priority one. */) |
88365 | 9601 (highestp) |
9602 Lisp_Object highestp; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9603 { |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9604 int i; |
22954
928b337d953b
Avoid using initializers for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
22874
diff
changeset
|
9605 Lisp_Object val; |
928b337d953b
Avoid using initializers for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
22874
diff
changeset
|
9606 |
88365 | 9607 for (i = 0, val = Qnil; i < coding_category_max; i++) |
9608 { | |
9609 enum coding_category category = coding_priorities[i]; | |
9610 int id = coding_categories[category].id; | |
9611 Lisp_Object attrs; | |
9612 | |
9613 if (id < 0) | |
9614 continue; | |
9615 attrs = CODING_ID_ATTRS (id); | |
9616 if (! NILP (highestp)) | |
9617 return CODING_ATTR_BASE_NAME (attrs); | |
9618 val = Fcons (CODING_ATTR_BASE_NAME (attrs), val); | |
9619 } | |
9620 return Fnreverse (val); | |
9621 } | |
9622 | |
88631
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
9623 static char *suffixes[] = { "-unix", "-dos", "-mac" }; |
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
9624 |
88365 | 9625 static Lisp_Object |
9626 make_subsidiaries (base) | |
9627 Lisp_Object base; | |
9628 { | |
9629 Lisp_Object subsidiaries; | |
89483 | 9630 int base_name_len = SBYTES (SYMBOL_NAME (base)); |
88365 | 9631 char *buf = (char *) alloca (base_name_len + 6); |
9632 int i; | |
89483 | 9633 |
9634 bcopy (SDATA (SYMBOL_NAME (base)), buf, base_name_len); | |
88365 | 9635 subsidiaries = Fmake_vector (make_number (3), Qnil); |
9636 for (i = 0; i < 3; i++) | |
9637 { | |
9638 bcopy (suffixes[i], buf + base_name_len, strlen (suffixes[i]) + 1); | |
9639 ASET (subsidiaries, i, intern (buf)); | |
9640 } | |
9641 return subsidiaries; | |
9642 } | |
9643 | |
22226
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
9644 |
49539
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
9645 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal, |
88365 | 9646 Sdefine_coding_system_internal, coding_arg_max, MANY, 0, |
88544
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
9647 doc: /* For internal use only. |
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
9648 usage: (define-coding-system-internal ...) */) |
88365 | 9649 (nargs, args) |
9650 int nargs; | |
9651 Lisp_Object *args; | |
9652 { | |
9653 Lisp_Object name; | |
9654 Lisp_Object spec_vec; /* [ ATTRS ALIASE EOL_TYPE ] */ | |
9655 Lisp_Object attrs; /* Vector of attributes. */ | |
9656 Lisp_Object eol_type; | |
9657 Lisp_Object aliases; | |
9658 Lisp_Object coding_type, charset_list, safe_charsets; | |
9659 enum coding_category category; | |
9660 Lisp_Object tail, val; | |
9661 int max_charset_id = 0; | |
9662 int i; | |
9663 | |
9664 if (nargs < coding_arg_max) | |
9665 goto short_args; | |
9666 | |
9667 attrs = Fmake_vector (make_number (coding_attr_last_index), Qnil); | |
9668 | |
9669 name = args[coding_arg_name]; | |
9670 CHECK_SYMBOL (name); | |
9671 CODING_ATTR_BASE_NAME (attrs) = name; | |
9672 | |
9673 val = args[coding_arg_mnemonic]; | |
9674 if (! STRINGP (val)) | |
9675 CHECK_CHARACTER (val); | |
9676 CODING_ATTR_MNEMONIC (attrs) = val; | |
9677 | |
9678 coding_type = args[coding_arg_coding_type]; | |
9679 CHECK_SYMBOL (coding_type); | |
9680 CODING_ATTR_TYPE (attrs) = coding_type; | |
9681 | |
9682 charset_list = args[coding_arg_charset_list]; | |
9683 if (SYMBOLP (charset_list)) | |
9684 { | |
9685 if (EQ (charset_list, Qiso_2022)) | |
9686 { | |
9687 if (! EQ (coding_type, Qiso_2022)) | |
9688 error ("Invalid charset-list"); | |
9689 charset_list = Viso_2022_charset_list; | |
9690 } | |
9691 else if (EQ (charset_list, Qemacs_mule)) | |
9692 { | |
9693 if (! EQ (coding_type, Qemacs_mule)) | |
9694 error ("Invalid charset-list"); | |
9695 charset_list = Vemacs_mule_charset_list; | |
9696 } | |
9697 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
9698 if (max_charset_id < XFASTINT (XCAR (tail))) | |
9699 max_charset_id = XFASTINT (XCAR (tail)); | |
9700 } | |
9701 else | |
9702 { | |
9703 charset_list = Fcopy_sequence (charset_list); | |
91046 | 9704 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) |
88365 | 9705 { |
9706 struct charset *charset; | |
9707 | |
91046 | 9708 val = XCAR (tail); |
88365 | 9709 CHECK_CHARSET_GET_CHARSET (val, charset); |
9710 if (EQ (coding_type, Qiso_2022) | |
9711 ? CHARSET_ISO_FINAL (charset) < 0 | |
9712 : EQ (coding_type, Qemacs_mule) | |
9713 ? CHARSET_EMACS_MULE_ID (charset) < 0 | |
9714 : 0) | |
9715 error ("Can't handle charset `%s'", | |
89483 | 9716 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
9717 | |
9718 XSETCAR (tail, make_number (charset->id)); | |
88365 | 9719 if (max_charset_id < charset->id) |
9720 max_charset_id = charset->id; | |
9721 } | |
9722 } | |
9723 CODING_ATTR_CHARSET_LIST (attrs) = charset_list; | |
9724 | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
9725 safe_charsets = make_uninit_string (max_charset_id + 1); |
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
9726 memset (SDATA (safe_charsets), 255, max_charset_id + 1); |
88365 | 9727 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) |
89483 | 9728 SSET (safe_charsets, XFASTINT (XCAR (tail)), 0); |
88365 | 9729 CODING_ATTR_SAFE_CHARSETS (attrs) = safe_charsets; |
9730 | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9731 CODING_ATTR_ASCII_COMPAT (attrs) = args[coding_arg_ascii_compatible_p]; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9732 |
88365 | 9733 val = args[coding_arg_decode_translation_table]; |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
9734 if (! CHAR_TABLE_P (val) && ! CONSP (val)) |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
9735 CHECK_SYMBOL (val); |
88365 | 9736 CODING_ATTR_DECODE_TBL (attrs) = val; |
9737 | |
9738 val = args[coding_arg_encode_translation_table]; | |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
9739 if (! CHAR_TABLE_P (val) && ! CONSP (val)) |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
9740 CHECK_SYMBOL (val); |
88365 | 9741 CODING_ATTR_ENCODE_TBL (attrs) = val; |
9742 | |
9743 val = args[coding_arg_post_read_conversion]; | |
9744 CHECK_SYMBOL (val); | |
9745 CODING_ATTR_POST_READ (attrs) = val; | |
9746 | |
9747 val = args[coding_arg_pre_write_conversion]; | |
9748 CHECK_SYMBOL (val); | |
9749 CODING_ATTR_PRE_WRITE (attrs) = val; | |
9750 | |
9751 val = args[coding_arg_default_char]; | |
9752 if (NILP (val)) | |
9753 CODING_ATTR_DEFAULT_CHAR (attrs) = make_number (' '); | |
9754 else | |
9755 { | |
89483 | 9756 CHECK_CHARACTER (val); |
88365 | 9757 CODING_ATTR_DEFAULT_CHAR (attrs) = val; |
9758 } | |
9759 | |
89483 | 9760 val = args[coding_arg_for_unibyte]; |
9761 CODING_ATTR_FOR_UNIBYTE (attrs) = NILP (val) ? Qnil : Qt; | |
9762 | |
88365 | 9763 val = args[coding_arg_plist]; |
9764 CHECK_LIST (val); | |
9765 CODING_ATTR_PLIST (attrs) = val; | |
9766 | |
9767 if (EQ (coding_type, Qcharset)) | |
9768 { | |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9769 /* Generate a lisp vector of 256 elements. Each element is nil, |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9770 integer, or a list of charset IDs. |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9771 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9772 If Nth element is nil, the byte code N is invalid in this |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9773 coding system. |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9774 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9775 If Nth element is a number NUM, N is the first byte of a |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9776 charset whose ID is NUM. |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9777 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9778 If Nth element is a list of charset IDs, N is the first byte |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9779 of one of them. The list is sorted by dimensions of the |
89648
d5641a606e08
(Fdefine_coding_system_internal): Fix checking of ascii compatibility.
Kenichi Handa <handa@m17n.org>
parents:
89644
diff
changeset
|
9780 charsets. A charset of smaller dimension comes firtst. */ |
88365 | 9781 val = Fmake_vector (make_number (256), Qnil); |
9782 | |
89653
cbaa9fd1aa5c
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89648
diff
changeset
|
9783 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) |
88365 | 9784 { |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9785 struct charset *charset = CHARSET_FROM_ID (XFASTINT (XCAR (tail))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9786 int dim = CHARSET_DIMENSION (charset); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9787 int idx = (dim - 1) * 4; |
89483 | 9788 |
89653
cbaa9fd1aa5c
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89648
diff
changeset
|
9789 if (CHARSET_ASCII_COMPATIBLE_P (charset)) |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9790 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9791 |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
9792 for (i = charset->code_space[idx]; |
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
9793 i <= charset->code_space[idx + 1]; i++) |
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
9794 { |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9795 Lisp_Object tmp, tmp2; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9796 int dim2; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9797 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9798 tmp = AREF (val, i); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9799 if (NILP (tmp)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9800 tmp = XCAR (tail); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9801 else if (NUMBERP (tmp)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9802 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9803 dim2 = CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (tmp))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9804 if (dim < dim2) |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
9805 tmp = Fcons (XCAR (tail), Fcons (tmp, Qnil)); |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9806 else |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
9807 tmp = Fcons (tmp, Fcons (XCAR (tail), Qnil)); |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9808 } |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
9809 else |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9810 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9811 for (tmp2 = tmp; CONSP (tmp2); tmp2 = XCDR (tmp2)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9812 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9813 dim2 = CHARSET_DIMENSION (CHARSET_FROM_ID (XFASTINT (XCAR (tmp2)))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9814 if (dim < dim2) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9815 break; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9816 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9817 if (NILP (tmp2)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9818 tmp = nconc2 (tmp, Fcons (XCAR (tail), Qnil)); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9819 else |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9820 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9821 XSETCDR (tmp2, Fcons (XCAR (tmp2), XCDR (tmp2))); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9822 XSETCAR (tmp2, XCAR (tail)); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9823 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9824 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9825 ASET (val, i, tmp); |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
9826 } |
88365 | 9827 } |
9828 ASET (attrs, coding_attr_charset_valids, val); | |
9829 category = coding_category_charset; | |
9830 } | |
9831 else if (EQ (coding_type, Qccl)) | |
9832 { | |
9833 Lisp_Object valids; | |
89483 | 9834 |
88365 | 9835 if (nargs < coding_arg_ccl_max) |
9836 goto short_args; | |
9837 | |
9838 val = args[coding_arg_ccl_decoder]; | |
9839 CHECK_CCL_PROGRAM (val); | |
9840 if (VECTORP (val)) | |
9841 val = Fcopy_sequence (val); | |
9842 ASET (attrs, coding_attr_ccl_decoder, val); | |
9843 | |
9844 val = args[coding_arg_ccl_encoder]; | |
9845 CHECK_CCL_PROGRAM (val); | |
9846 if (VECTORP (val)) | |
9847 val = Fcopy_sequence (val); | |
9848 ASET (attrs, coding_attr_ccl_encoder, val); | |
9849 | |
9850 val = args[coding_arg_ccl_valids]; | |
9851 valids = Fmake_string (make_number (256), make_number (0)); | |
9852 for (tail = val; !NILP (tail); tail = Fcdr (tail)) | |
9853 { | |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9854 int from, to; |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9855 |
88365 | 9856 val = Fcar (tail); |
9857 if (INTEGERP (val)) | |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9858 { |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9859 from = to = XINT (val); |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9860 if (from < 0 || from > 255) |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9861 args_out_of_range_3 (val, make_number (0), make_number (255)); |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9862 } |
88365 | 9863 else |
9864 { | |
9865 CHECK_CONS (val); | |
89483 | 9866 CHECK_NATNUM_CAR (val); |
9867 CHECK_NATNUM_CDR (val); | |
88365 | 9868 from = XINT (XCAR (val)); |
89483 | 9869 if (from > 255) |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9870 args_out_of_range_3 (XCAR (val), |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9871 make_number (0), make_number (255)); |
88365 | 9872 to = XINT (XCDR (val)); |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9873 if (to < from || to > 255) |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9874 args_out_of_range_3 (XCDR (val), |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9875 XCAR (val), make_number (255)); |
88365 | 9876 } |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9877 for (i = from; i <= to; i++) |
89483 | 9878 SSET (valids, i, 1); |
88365 | 9879 } |
9880 ASET (attrs, coding_attr_ccl_valids, valids); | |
89483 | 9881 |
88365 | 9882 category = coding_category_ccl; |
9883 } | |
9884 else if (EQ (coding_type, Qutf_16)) | |
9885 { | |
9886 Lisp_Object bom, endian; | |
9887 | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9888 CODING_ATTR_ASCII_COMPAT (attrs) = Qnil; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9889 |
88365 | 9890 if (nargs < coding_arg_utf16_max) |
9891 goto short_args; | |
9892 | |
9893 bom = args[coding_arg_utf16_bom]; | |
9894 if (! NILP (bom) && ! EQ (bom, Qt)) | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
9895 { |
88365 | 9896 CHECK_CONS (bom); |
89483 | 9897 val = XCAR (bom); |
9898 CHECK_CODING_SYSTEM (val); | |
9899 val = XCDR (bom); | |
9900 CHECK_CODING_SYSTEM (val); | |
88365 | 9901 } |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
9902 ASET (attrs, coding_attr_utf_bom, bom); |
88365 | 9903 |
9904 endian = args[coding_arg_utf16_endian]; | |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9905 CHECK_SYMBOL (endian); |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9906 if (NILP (endian)) |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9907 endian = Qbig; |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9908 else if (! EQ (endian, Qbig) && ! EQ (endian, Qlittle)) |
89483 | 9909 error ("Invalid endian: %s", SDATA (SYMBOL_NAME (endian))); |
88365 | 9910 ASET (attrs, coding_attr_utf_16_endian, endian); |
9911 | |
9912 category = (CONSP (bom) | |
9913 ? coding_category_utf_16_auto | |
9914 : NILP (bom) | |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9915 ? (EQ (endian, Qbig) |
88365 | 9916 ? coding_category_utf_16_be_nosig |
9917 : coding_category_utf_16_le_nosig) | |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9918 : (EQ (endian, Qbig) |
88365 | 9919 ? coding_category_utf_16_be |
9920 : coding_category_utf_16_le)); | |
9921 } | |
9922 else if (EQ (coding_type, Qiso_2022)) | |
9923 { | |
9924 Lisp_Object initial, reg_usage, request, flags; | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
9925 int i; |
88365 | 9926 |
9927 if (nargs < coding_arg_iso2022_max) | |
9928 goto short_args; | |
9929 | |
9930 initial = Fcopy_sequence (args[coding_arg_iso2022_initial]); | |
9931 CHECK_VECTOR (initial); | |
9932 for (i = 0; i < 4; i++) | |
9933 { | |
9934 val = Faref (initial, make_number (i)); | |
9935 if (! NILP (val)) | |
9936 { | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9937 struct charset *charset; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9938 |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9939 CHECK_CHARSET_GET_CHARSET (val, charset); |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9940 ASET (initial, i, make_number (CHARSET_ID (charset))); |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9941 if (i == 0 && CHARSET_ASCII_COMPATIBLE_P (charset)) |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9942 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 9943 } |
9944 else | |
9945 ASET (initial, i, make_number (-1)); | |
9946 } | |
9947 | |
9948 reg_usage = args[coding_arg_iso2022_reg_usage]; | |
9949 CHECK_CONS (reg_usage); | |
89483 | 9950 CHECK_NUMBER_CAR (reg_usage); |
9951 CHECK_NUMBER_CDR (reg_usage); | |
88365 | 9952 |
9953 request = Fcopy_sequence (args[coding_arg_iso2022_request]); | |
9954 for (tail = request; ! NILP (tail); tail = Fcdr (tail)) | |
9955 { | |
9956 int id; | |
89483 | 9957 Lisp_Object tmp; |
88365 | 9958 |
9959 val = Fcar (tail); | |
9960 CHECK_CONS (val); | |
89483 | 9961 tmp = XCAR (val); |
9962 CHECK_CHARSET_GET_ID (tmp, id); | |
9963 CHECK_NATNUM_CDR (val); | |
88365 | 9964 if (XINT (XCDR (val)) >= 4) |
9965 error ("Invalid graphic register number: %d", XINT (XCDR (val))); | |
89483 | 9966 XSETCAR (val, make_number (id)); |
88365 | 9967 } |
9968 | |
9969 flags = args[coding_arg_iso2022_flags]; | |
9970 CHECK_NATNUM (flags); | |
9971 i = XINT (flags); | |
9972 if (EQ (args[coding_arg_charset_list], Qiso_2022)) | |
9973 flags = make_number (i | CODING_ISO_FLAG_FULL_SUPPORT); | |
9974 | |
9975 ASET (attrs, coding_attr_iso_initial, initial); | |
9976 ASET (attrs, coding_attr_iso_usage, reg_usage); | |
9977 ASET (attrs, coding_attr_iso_request, request); | |
9978 ASET (attrs, coding_attr_iso_flags, flags); | |
9979 setup_iso_safe_charsets (attrs); | |
9980 | |
9981 if (i & CODING_ISO_FLAG_SEVEN_BITS) | |
9982 category = ((i & (CODING_ISO_FLAG_LOCKING_SHIFT | |
9983 | CODING_ISO_FLAG_SINGLE_SHIFT)) | |
9984 ? coding_category_iso_7_else | |
9985 : EQ (args[coding_arg_charset_list], Qiso_2022) | |
9986 ? coding_category_iso_7 | |
9987 : coding_category_iso_7_tight); | |
9988 else | |
9989 { | |
9990 int id = XINT (AREF (initial, 1)); | |
9991 | |
88977
3b05c02eebf2
(Fdefine_coding_system_internal): Fix category setting
Kenichi Handa <handa@m17n.org>
parents:
88950
diff
changeset
|
9992 category = (((i & CODING_ISO_FLAG_LOCKING_SHIFT) |
88365 | 9993 || EQ (args[coding_arg_charset_list], Qiso_2022) |
9994 || id < 0) | |
9995 ? coding_category_iso_8_else | |
9996 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id)) == 1) | |
9997 ? coding_category_iso_8_1 | |
9998 : coding_category_iso_8_2); | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
9999 } |
89227
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
10000 if (category != coding_category_iso_8_1 |
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
10001 && category != coding_category_iso_8_2) |
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
10002 CODING_ATTR_ASCII_COMPAT (attrs) = Qnil; |
88365 | 10003 } |
10004 else if (EQ (coding_type, Qemacs_mule)) | |
10005 { | |
10006 if (EQ (args[coding_arg_charset_list], Qemacs_mule)) | |
10007 ASET (attrs, coding_attr_emacs_mule_full, Qt); | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10008 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 10009 category = coding_category_emacs_mule; |
10010 } | |
10011 else if (EQ (coding_type, Qshift_jis)) | |
10012 { | |
10013 | |
10014 struct charset *charset; | |
10015 | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
10016 if (XINT (Flength (charset_list)) != 3 |
89739
293c9235be3f
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89732
diff
changeset
|
10017 && XINT (Flength (charset_list)) != 4) |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
10018 error ("There should be three or four charsets"); |
88365 | 10019 |
10020 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10021 if (CHARSET_DIMENSION (charset) != 1) | |
10022 error ("Dimension of charset %s is not one", | |
89483 | 10023 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10024 if (CHARSET_ASCII_COMPATIBLE_P (charset)) |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10025 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 10026 |
10027 charset_list = XCDR (charset_list); | |
10028 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10029 if (CHARSET_DIMENSION (charset) != 1) | |
10030 error ("Dimension of charset %s is not one", | |
89483 | 10031 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
88365 | 10032 |
10033 charset_list = XCDR (charset_list); | |
10034 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10035 if (CHARSET_DIMENSION (charset) != 2) | |
10036 error ("Dimension of charset %s is not two", | |
89483 | 10037 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
88365 | 10038 |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
10039 charset_list = XCDR (charset_list); |
89740
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10040 if (! NILP (charset_list)) |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10041 { |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10042 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10043 if (CHARSET_DIMENSION (charset) != 2) |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10044 error ("Dimension of charset %s is not two", |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10045 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10046 } |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
10047 |
88365 | 10048 category = coding_category_sjis; |
10049 Vsjis_coding_system = name; | |
10050 } | |
10051 else if (EQ (coding_type, Qbig5)) | |
10052 { | |
10053 struct charset *charset; | |
10054 | |
10055 if (XINT (Flength (charset_list)) != 2) | |
10056 error ("There should be just two charsets"); | |
10057 | |
10058 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10059 if (CHARSET_DIMENSION (charset) != 1) | |
10060 error ("Dimension of charset %s is not one", | |
89483 | 10061 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10062 if (CHARSET_ASCII_COMPATIBLE_P (charset)) |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10063 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 10064 |
10065 charset_list = XCDR (charset_list); | |
10066 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10067 if (CHARSET_DIMENSION (charset) != 2) | |
10068 error ("Dimension of charset %s is not two", | |
89483 | 10069 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
88365 | 10070 |
10071 category = coding_category_big5; | |
10072 Vbig5_coding_system = name; | |
10073 } | |
10074 else if (EQ (coding_type, Qraw_text)) | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10075 { |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10076 category = coding_category_raw_text; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10077 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10078 } |
88365 | 10079 else if (EQ (coding_type, Qutf_8)) |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10080 { |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10081 Lisp_Object bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10082 |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10083 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10084 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10085 if (nargs < coding_arg_utf8_max) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10086 goto short_args; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10087 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10088 bom = args[coding_arg_utf8_bom]; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10089 if (! NILP (bom) && ! EQ (bom, Qt)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10090 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10091 CHECK_CONS (bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10092 val = XCAR (bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10093 CHECK_CODING_SYSTEM (val); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10094 val = XCDR (bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10095 CHECK_CODING_SYSTEM (val); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10096 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10097 ASET (attrs, coding_attr_utf_bom, bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10098 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10099 category = (CONSP (bom) ? coding_category_utf_8_auto |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10100 : NILP (bom) ? coding_category_utf_8_nosig |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10101 : coding_category_utf_8_sig); |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10102 } |
88365 | 10103 else if (EQ (coding_type, Qundecided)) |
10104 category = coding_category_undecided; | |
10105 else | |
10106 error ("Invalid coding system type: %s", | |
89483 | 10107 SDATA (SYMBOL_NAME (coding_type))); |
88365 | 10108 |
10109 CODING_ATTR_CATEGORY (attrs) = make_number (category); | |
89468
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10110 CODING_ATTR_PLIST (attrs) |
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10111 = Fcons (QCcategory, Fcons (AREF (Vcoding_category_table, category), |
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10112 CODING_ATTR_PLIST (attrs))); |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10113 CODING_ATTR_PLIST (attrs) |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
10114 = Fcons (QCascii_compatible_p, |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10115 Fcons (CODING_ATTR_ASCII_COMPAT (attrs), |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10116 CODING_ATTR_PLIST (attrs))); |
88365 | 10117 |
10118 eol_type = args[coding_arg_eol_type]; | |
10119 if (! NILP (eol_type) | |
10120 && ! EQ (eol_type, Qunix) | |
10121 && ! EQ (eol_type, Qdos) | |
10122 && ! EQ (eol_type, Qmac)) | |
10123 error ("Invalid eol-type"); | |
10124 | |
10125 aliases = Fcons (name, Qnil); | |
10126 | |
10127 if (NILP (eol_type)) | |
10128 { | |
10129 eol_type = make_subsidiaries (name); | |
10130 for (i = 0; i < 3; i++) | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10131 { |
88365 | 10132 Lisp_Object this_spec, this_name, this_aliases, this_eol_type; |
10133 | |
10134 this_name = AREF (eol_type, i); | |
10135 this_aliases = Fcons (this_name, Qnil); | |
10136 this_eol_type = (i == 0 ? Qunix : i == 1 ? Qdos : Qmac); | |
10137 this_spec = Fmake_vector (make_number (3), attrs); | |
10138 ASET (this_spec, 1, this_aliases); | |
10139 ASET (this_spec, 2, this_eol_type); | |
10140 Fputhash (this_name, this_spec, Vcoding_system_hash_table); | |
10141 Vcoding_system_list = Fcons (this_name, Vcoding_system_list); | |
90289
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10142 val = Fassoc (Fsymbol_name (this_name), Vcoding_system_alist); |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10143 if (NILP (val)) |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10144 Vcoding_system_alist |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10145 = Fcons (Fcons (Fsymbol_name (this_name), Qnil), |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10146 Vcoding_system_alist); |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10147 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10148 } |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10149 |
88365 | 10150 spec_vec = Fmake_vector (make_number (3), attrs); |
10151 ASET (spec_vec, 1, aliases); | |
10152 ASET (spec_vec, 2, eol_type); | |
10153 | |
10154 Fputhash (name, spec_vec, Vcoding_system_hash_table); | |
10155 Vcoding_system_list = Fcons (name, Vcoding_system_list); | |
90289
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10156 val = Fassoc (Fsymbol_name (name), Vcoding_system_alist); |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10157 if (NILP (val)) |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10158 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (name), Qnil), |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10159 Vcoding_system_alist); |
88365 | 10160 |
10161 { | |
10162 int id = coding_categories[category].id; | |
10163 | |
10164 if (id < 0 || EQ (name, CODING_ID_NAME (id))) | |
10165 setup_coding_system (name, &coding_categories[category]); | |
10166 } | |
10167 | |
10168 return Qnil; | |
10169 | |
10170 short_args: | |
10171 return Fsignal (Qwrong_number_of_arguments, | |
10172 Fcons (intern ("define-coding-system-internal"), | |
10173 make_number (nargs))); | |
10174 } | |
10175 | |
89571
242f2cc0134b
(Fdefine_coding_system_alias): Update Vcoding_system_list.
Kenichi Handa <handa@m17n.org>
parents:
89562
diff
changeset
|
10176 |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10177 DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10178 3, 3, 0, |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10179 doc: /* Change value in CODING-SYSTEM's property list PROP to VAL. */) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10180 (coding_system, prop, val) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10181 Lisp_Object coding_system, prop, val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10182 { |
89924
7d0f6da3ea6e
(detect_coding): Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
89917
diff
changeset
|
10183 Lisp_Object spec, attrs; |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10184 |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10185 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10186 attrs = AREF (spec, 0); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10187 if (EQ (prop, QCmnemonic)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10188 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10189 if (! STRINGP (val)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10190 CHECK_CHARACTER (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10191 CODING_ATTR_MNEMONIC (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10192 } |
100303
3e044fa54e4f
* coding.c (QCdefault_char): Rename from QCdefalut_char.
Juanma Barranquero <lekktu@gmail.com>
parents:
100262
diff
changeset
|
10193 else if (EQ (prop, QCdefault_char)) |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10194 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10195 if (NILP (val)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10196 val = make_number (' '); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10197 else |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10198 CHECK_CHARACTER (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10199 CODING_ATTR_DEFAULT_CHAR (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10200 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10201 else if (EQ (prop, QCdecode_translation_table)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10202 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10203 if (! CHAR_TABLE_P (val) && ! CONSP (val)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10204 CHECK_SYMBOL (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10205 CODING_ATTR_DECODE_TBL (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10206 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10207 else if (EQ (prop, QCencode_translation_table)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10208 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10209 if (! CHAR_TABLE_P (val) && ! CONSP (val)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10210 CHECK_SYMBOL (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10211 CODING_ATTR_ENCODE_TBL (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10212 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10213 else if (EQ (prop, QCpost_read_conversion)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10214 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10215 CHECK_SYMBOL (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10216 CODING_ATTR_POST_READ (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10217 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10218 else if (EQ (prop, QCpre_write_conversion)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10219 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10220 CHECK_SYMBOL (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10221 CODING_ATTR_PRE_WRITE (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10222 } |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10223 else if (EQ (prop, QCascii_compatible_p)) |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10224 { |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10225 CODING_ATTR_ASCII_COMPAT (attrs) = val; |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10226 } |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10227 |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10228 CODING_ATTR_PLIST (attrs) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10229 = Fplist_put (CODING_ATTR_PLIST (attrs), prop, val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10230 return val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10231 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10232 |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10233 |
88365 | 10234 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias, |
10235 Sdefine_coding_system_alias, 2, 2, 0, | |
10236 doc: /* Define ALIAS as an alias for CODING-SYSTEM. */) | |
10237 (alias, coding_system) | |
10238 Lisp_Object alias, coding_system; | |
10239 { | |
90289
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10240 Lisp_Object spec, aliases, eol_type, val; |
88365 | 10241 |
10242 CHECK_SYMBOL (alias); | |
10243 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
10244 aliases = AREF (spec, 1); | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
10245 /* ALIASES should be a list of length more than zero, and the first |
89571
242f2cc0134b
(Fdefine_coding_system_alias): Update Vcoding_system_list.
Kenichi Handa <handa@m17n.org>
parents:
89562
diff
changeset
|
10246 element is a base coding system. Append ALIAS at the tail of the |
242f2cc0134b
(Fdefine_coding_system_alias): Update Vcoding_system_list.
Kenichi Handa <handa@m17n.org>
parents:
89562
diff
changeset
|
10247 list. */ |
88365 | 10248 while (!NILP (XCDR (aliases))) |
10249 aliases = XCDR (aliases); | |
89483 | 10250 XSETCDR (aliases, Fcons (alias, Qnil)); |
88365 | 10251 |
10252 eol_type = AREF (spec, 2); | |
10253 if (VECTORP (eol_type)) | |
10254 { | |
10255 Lisp_Object subsidiaries; | |
10256 int i; | |
10257 | |
10258 subsidiaries = make_subsidiaries (alias); | |
10259 for (i = 0; i < 3; i++) | |
10260 Fdefine_coding_system_alias (AREF (subsidiaries, i), | |
10261 AREF (eol_type, i)); | |
10262 } | |
10263 | |
10264 Fputhash (alias, spec, Vcoding_system_hash_table); | |
89571
242f2cc0134b
(Fdefine_coding_system_alias): Update Vcoding_system_list.
Kenichi Handa <handa@m17n.org>
parents:
89562
diff
changeset
|
10265 Vcoding_system_list = Fcons (alias, Vcoding_system_list); |
90289
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10266 val = Fassoc (Fsymbol_name (alias), Vcoding_system_alist); |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10267 if (NILP (val)) |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10268 Vcoding_system_alist = Fcons (Fcons (Fsymbol_name (alias), Qnil), |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10269 Vcoding_system_alist); |
88365 | 10270 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10271 return Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10272 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10273 |
88365 | 10274 DEFUN ("coding-system-base", Fcoding_system_base, Scoding_system_base, |
10275 1, 1, 0, | |
10276 doc: /* Return the base of CODING-SYSTEM. | |
88645 | 10277 Any alias or subsidiary coding system is not a base coding system. */) |
88365 | 10278 (coding_system) |
10279 Lisp_Object coding_system; | |
10280 { | |
10281 Lisp_Object spec, attrs; | |
10282 | |
10283 if (NILP (coding_system)) | |
10284 return (Qno_conversion); | |
10285 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
10286 attrs = AREF (spec, 0); | |
10287 return CODING_ATTR_BASE_NAME (attrs); | |
10288 } | |
10289 | |
10290 DEFUN ("coding-system-plist", Fcoding_system_plist, Scoding_system_plist, | |
10291 1, 1, 0, | |
10292 doc: "Return the property list of CODING-SYSTEM.") | |
49539
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10293 (coding_system) |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10294 Lisp_Object coding_system; |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10295 { |
88365 | 10296 Lisp_Object spec, attrs; |
10297 | |
10298 if (NILP (coding_system)) | |
10299 coding_system = Qno_conversion; | |
10300 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
10301 attrs = AREF (spec, 0); | |
10302 return CODING_ATTR_PLIST (attrs); | |
10303 } | |
10304 | |
10305 | |
10306 DEFUN ("coding-system-aliases", Fcoding_system_aliases, Scoding_system_aliases, | |
10307 1, 1, 0, | |
88645 | 10308 doc: /* Return the list of aliases of CODING-SYSTEM. */) |
88365 | 10309 (coding_system) |
10310 Lisp_Object coding_system; | |
10311 { | |
10312 Lisp_Object spec; | |
10313 | |
10314 if (NILP (coding_system)) | |
10315 coding_system = Qno_conversion; | |
10316 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
88645 | 10317 return AREF (spec, 1); |
88365 | 10318 } |
10319 | |
10320 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type, | |
10321 Scoding_system_eol_type, 1, 1, 0, | |
10322 doc: /* Return eol-type of CODING-SYSTEM. | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
10323 An eol-type is an integer 0, 1, 2, or a vector of coding systems. |
88365 | 10324 |
10325 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF, | |
10326 and CR respectively. | |
10327 | |
10328 A vector value indicates that a format of end-of-line should be | |
10329 detected automatically. Nth element of the vector is the subsidiary | |
10330 coding system whose eol-type is N. */) | |
10331 (coding_system) | |
10332 Lisp_Object coding_system; | |
10333 { | |
10334 Lisp_Object spec, eol_type; | |
10335 int n; | |
10336 | |
10337 if (NILP (coding_system)) | |
10338 coding_system = Qno_conversion; | |
10339 if (! CODING_SYSTEM_P (coding_system)) | |
10340 return Qnil; | |
10341 spec = CODING_SYSTEM_SPEC (coding_system); | |
10342 eol_type = AREF (spec, 2); | |
10343 if (VECTORP (eol_type)) | |
10344 return Fcopy_sequence (eol_type); | |
10345 n = EQ (eol_type, Qunix) ? 0 : EQ (eol_type, Qdos) ? 1 : 2; | |
10346 return make_number (n); | |
49539
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10347 } |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10348 |
17052 | 10349 #endif /* emacs */ |
10350 | |
10351 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10352 /*** 9. Post-amble ***/ |
17052 | 10353 |
21514 | 10354 void |
17052 | 10355 init_coding_once () |
10356 { | |
10357 int i; | |
10358 | |
88365 | 10359 for (i = 0; i < coding_category_max; i++) |
10360 { | |
10361 coding_categories[i].id = -1; | |
10362 coding_priorities[i] = i; | |
10363 } | |
17052 | 10364 |
10365 /* ISO2022 specific initialize routine. */ | |
10366 for (i = 0; i < 0x20; i++) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
10367 iso_code_class[i] = ISO_control_0; |
17052 | 10368 for (i = 0x21; i < 0x7F; i++) |
10369 iso_code_class[i] = ISO_graphic_plane_0; | |
10370 for (i = 0x80; i < 0xA0; i++) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
10371 iso_code_class[i] = ISO_control_1; |
17052 | 10372 for (i = 0xA1; i < 0xFF; i++) |
10373 iso_code_class[i] = ISO_graphic_plane_1; | |
10374 iso_code_class[0x20] = iso_code_class[0x7F] = ISO_0x20_or_0x7F; | |
10375 iso_code_class[0xA0] = iso_code_class[0xFF] = ISO_0xA0_or_0xFF; | |
10376 iso_code_class[ISO_CODE_SO] = ISO_shift_out; | |
10377 iso_code_class[ISO_CODE_SI] = ISO_shift_in; | |
10378 iso_code_class[ISO_CODE_SS2_7] = ISO_single_shift_2_7; | |
10379 iso_code_class[ISO_CODE_ESC] = ISO_escape; | |
10380 iso_code_class[ISO_CODE_SS2] = ISO_single_shift_2; | |
10381 iso_code_class[ISO_CODE_SS3] = ISO_single_shift_3; | |
10382 iso_code_class[ISO_CODE_CSI] = ISO_control_sequence_introducer; | |
10383 | |
88365 | 10384 for (i = 0; i < 256; i++) |
10385 { | |
10386 emacs_mule_bytes[i] = 1; | |
10387 } | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
10388 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_11] = 3; |
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
10389 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_12] = 3; |
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
10390 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_21] = 4; |
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
10391 emacs_mule_bytes[EMACS_MULE_LEADING_CODE_PRIVATE_22] = 4; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10392 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10393 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10394 #ifdef emacs |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10395 |
21514 | 10396 void |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10397 syms_of_coding () |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10398 { |
88365 | 10399 staticpro (&Vcoding_system_hash_table); |
89483 | 10400 { |
10401 Lisp_Object args[2]; | |
10402 args[0] = QCtest; | |
10403 args[1] = Qeq; | |
10404 Vcoding_system_hash_table = Fmake_hash_table (2, args); | |
10405 } | |
88365 | 10406 |
10407 staticpro (&Vsjis_coding_system); | |
10408 Vsjis_coding_system = Qnil; | |
10409 | |
10410 staticpro (&Vbig5_coding_system); | |
10411 Vbig5_coding_system = Qnil; | |
10412 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
10413 staticpro (&Vcode_conversion_reused_workbuf); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
10414 Vcode_conversion_reused_workbuf = Qnil; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
10415 |
58637
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
10416 staticpro (&Vcode_conversion_workbuf_name); |
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
10417 Vcode_conversion_workbuf_name = build_string (" *code-conversion-work*"); |
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
10418 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
10419 reused_workbuf_in_use = 0; |
88365 | 10420 |
10421 DEFSYM (Qcharset, "charset"); | |
10422 DEFSYM (Qtarget_idx, "target-idx"); | |
10423 DEFSYM (Qcoding_system_history, "coding-system-history"); | |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
10424 Fset (Qcoding_system_history, Qnil); |
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
10425 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10426 /* 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
|
10427 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
|
10428 /* 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
|
10429 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
|
10430 |
88365 | 10431 DEFSYM (Qcall_process, "call-process"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10432 /* 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
|
10433 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
|
10434 |
88365 | 10435 DEFSYM (Qcall_process_region, "call-process-region"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10436 /* 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
|
10437 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
|
10438 |
88365 | 10439 DEFSYM (Qstart_process, "start-process"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10440 /* 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
|
10441 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
|
10442 |
88365 | 10443 DEFSYM (Qopen_network_stream, "open-network-stream"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10444 /* 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
|
10445 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
|
10446 |
88365 | 10447 DEFSYM (Qcoding_system, "coding-system"); |
10448 DEFSYM (Qcoding_aliases, "coding-aliases"); | |
10449 | |
10450 DEFSYM (Qeol_type, "eol-type"); | |
10451 DEFSYM (Qunix, "unix"); | |
10452 DEFSYM (Qdos, "dos"); | |
10453 | |
10454 DEFSYM (Qbuffer_file_coding_system, "buffer-file-coding-system"); | |
10455 DEFSYM (Qpost_read_conversion, "post-read-conversion"); | |
10456 DEFSYM (Qpre_write_conversion, "pre-write-conversion"); | |
10457 DEFSYM (Qdefault_char, "default-char"); | |
10458 DEFSYM (Qundecided, "undecided"); | |
10459 DEFSYM (Qno_conversion, "no-conversion"); | |
10460 DEFSYM (Qraw_text, "raw-text"); | |
10461 | |
10462 DEFSYM (Qiso_2022, "iso-2022"); | |
10463 | |
10464 DEFSYM (Qutf_8, "utf-8"); | |
89483 | 10465 DEFSYM (Qutf_8_emacs, "utf-8-emacs"); |
88365 | 10466 |
10467 DEFSYM (Qutf_16, "utf-16"); | |
10468 DEFSYM (Qbig, "big"); | |
10469 DEFSYM (Qlittle, "little"); | |
10470 | |
10471 DEFSYM (Qshift_jis, "shift-jis"); | |
10472 DEFSYM (Qbig5, "big5"); | |
10473 | |
10474 DEFSYM (Qcoding_system_p, "coding-system-p"); | |
10475 | |
10476 DEFSYM (Qcoding_system_error, "coding-system-error"); | |
17052 | 10477 Fput (Qcoding_system_error, Qerror_conditions, |
10478 Fcons (Qcoding_system_error, Fcons (Qerror, Qnil))); | |
10479 Fput (Qcoding_system_error, Qerror_message, | |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10480 build_string ("Invalid coding system")); |
17052 | 10481 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
10482 /* Intern this now in case it isn't already done. |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
10483 Setting this variable twice is harmless. |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
10484 But don't staticpro it here--that is done in alloc.c. */ |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
10485 Qchar_table_extra_slots = intern ("char-table-extra-slots"); |
88365 | 10486 |
10487 DEFSYM (Qtranslation_table, "translation-table"); | |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
10488 Fput (Qtranslation_table, Qchar_table_extra_slots, make_number (2)); |
88365 | 10489 DEFSYM (Qtranslation_table_id, "translation-table-id"); |
10490 DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode"); | |
10491 DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode"); | |
10492 | |
10493 DEFSYM (Qvalid_codes, "valid-codes"); | |
10494 | |
10495 DEFSYM (Qemacs_mule, "emacs-mule"); | |
10496 | |
89468
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10497 DEFSYM (QCcategory, ":category"); |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10498 DEFSYM (QCmnemonic, ":mnemonic"); |
100303
3e044fa54e4f
* coding.c (QCdefault_char): Rename from QCdefalut_char.
Juanma Barranquero <lekktu@gmail.com>
parents:
100262
diff
changeset
|
10499 DEFSYM (QCdefault_char, ":default-char"); |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10500 DEFSYM (QCdecode_translation_table, ":decode-translation-table"); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10501 DEFSYM (QCencode_translation_table, ":encode-translation-table"); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10502 DEFSYM (QCpost_read_conversion, ":post-read-conversion"); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10503 DEFSYM (QCpre_write_conversion, ":pre-write-conversion"); |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10504 DEFSYM (QCascii_compatible_p, ":ascii-compatible-p"); |
89468
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10505 |
88365 | 10506 Vcoding_category_table |
10507 = Fmake_vector (make_number (coding_category_max), Qnil); | |
10508 staticpro (&Vcoding_category_table); | |
10509 /* Followings are target of code detection. */ | |
10510 ASET (Vcoding_category_table, coding_category_iso_7, | |
10511 intern ("coding-category-iso-7")); | |
10512 ASET (Vcoding_category_table, coding_category_iso_7_tight, | |
10513 intern ("coding-category-iso-7-tight")); | |
10514 ASET (Vcoding_category_table, coding_category_iso_8_1, | |
10515 intern ("coding-category-iso-8-1")); | |
10516 ASET (Vcoding_category_table, coding_category_iso_8_2, | |
10517 intern ("coding-category-iso-8-2")); | |
10518 ASET (Vcoding_category_table, coding_category_iso_7_else, | |
10519 intern ("coding-category-iso-7-else")); | |
10520 ASET (Vcoding_category_table, coding_category_iso_8_else, | |
10521 intern ("coding-category-iso-8-else")); | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10522 ASET (Vcoding_category_table, coding_category_utf_8_auto, |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10523 intern ("coding-category-utf-8-auto")); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10524 ASET (Vcoding_category_table, coding_category_utf_8_nosig, |
88365 | 10525 intern ("coding-category-utf-8")); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10526 ASET (Vcoding_category_table, coding_category_utf_8_sig, |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10527 intern ("coding-category-utf-8-sig")); |
88365 | 10528 ASET (Vcoding_category_table, coding_category_utf_16_be, |
10529 intern ("coding-category-utf-16-be")); | |
89467
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10530 ASET (Vcoding_category_table, coding_category_utf_16_auto, |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10531 intern ("coding-category-utf-16-auto")); |
88365 | 10532 ASET (Vcoding_category_table, coding_category_utf_16_le, |
10533 intern ("coding-category-utf-16-le")); | |
10534 ASET (Vcoding_category_table, coding_category_utf_16_be_nosig, | |
10535 intern ("coding-category-utf-16-be-nosig")); | |
10536 ASET (Vcoding_category_table, coding_category_utf_16_le_nosig, | |
10537 intern ("coding-category-utf-16-le-nosig")); | |
10538 ASET (Vcoding_category_table, coding_category_charset, | |
10539 intern ("coding-category-charset")); | |
10540 ASET (Vcoding_category_table, coding_category_sjis, | |
10541 intern ("coding-category-sjis")); | |
10542 ASET (Vcoding_category_table, coding_category_big5, | |
10543 intern ("coding-category-big5")); | |
10544 ASET (Vcoding_category_table, coding_category_ccl, | |
10545 intern ("coding-category-ccl")); | |
10546 ASET (Vcoding_category_table, coding_category_emacs_mule, | |
10547 intern ("coding-category-emacs-mule")); | |
10548 /* Followings are NOT target of code detection. */ | |
10549 ASET (Vcoding_category_table, coding_category_raw_text, | |
10550 intern ("coding-category-raw-text")); | |
10551 ASET (Vcoding_category_table, coding_category_undecided, | |
10552 intern ("coding-category-undecided")); | |
10553 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10554 DEFSYM (Qinsufficient_source, "insufficient-source"); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10555 DEFSYM (Qinconsistent_eol, "inconsistent-eol"); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10556 DEFSYM (Qinvalid_source, "invalid-source"); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10557 DEFSYM (Qinterrupted, "interrupted"); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10558 DEFSYM (Qinsufficient_memory, "insufficient-memory"); |
90272
f1df126ec7de
Sync to HEAD for handling autoload-coding-system.
Kenichi Handa <handa@m17n.org>
parents:
90263
diff
changeset
|
10559 DEFSYM (Qcoding_system_define_form, "coding-system-define-form"); |
52794
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
10560 |
17052 | 10561 defsubr (&Scoding_system_p); |
10562 defsubr (&Sread_coding_system); | |
10563 defsubr (&Sread_non_nil_coding_system); | |
10564 defsubr (&Scheck_coding_system); | |
10565 defsubr (&Sdetect_coding_region); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10566 defsubr (&Sdetect_coding_string); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
10567 defsubr (&Sfind_coding_systems_region_internal); |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
10568 defsubr (&Sunencodable_char_position); |
88365 | 10569 defsubr (&Scheck_coding_systems_region); |
17052 | 10570 defsubr (&Sdecode_coding_region); |
10571 defsubr (&Sencode_coding_region); | |
10572 defsubr (&Sdecode_coding_string); | |
10573 defsubr (&Sencode_coding_string); | |
10574 defsubr (&Sdecode_sjis_char); | |
10575 defsubr (&Sencode_sjis_char); | |
10576 defsubr (&Sdecode_big5_char); | |
10577 defsubr (&Sencode_big5_char); | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
10578 defsubr (&Sset_terminal_coding_system_internal); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
10579 defsubr (&Sset_safe_terminal_coding_system_internal); |
17052 | 10580 defsubr (&Sterminal_coding_system); |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
10581 defsubr (&Sset_keyboard_coding_system_internal); |
17052 | 10582 defsubr (&Skeyboard_coding_system); |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
10583 defsubr (&Sfind_operation_coding_system); |
88365 | 10584 defsubr (&Sset_coding_system_priority); |
49539
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10585 defsubr (&Sdefine_coding_system_internal); |
88365 | 10586 defsubr (&Sdefine_coding_system_alias); |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10587 defsubr (&Scoding_system_put); |
88365 | 10588 defsubr (&Scoding_system_base); |
10589 defsubr (&Scoding_system_plist); | |
10590 defsubr (&Scoding_system_aliases); | |
10591 defsubr (&Scoding_system_eol_type); | |
10592 defsubr (&Scoding_system_priority_list); | |
17052 | 10593 |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10594 DEFVAR_LISP ("coding-system-list", &Vcoding_system_list, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10595 doc: /* List of coding systems. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10596 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10597 Do not alter the value of this variable manually. This variable should be |
88365 | 10598 updated by the functions `define-coding-system' and |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10599 `define-coding-system-alias'. */); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10600 Vcoding_system_list = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10601 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10602 DEFVAR_LISP ("coding-system-alist", &Vcoding_system_alist, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10603 doc: /* Alist of coding system names. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10604 Each element is one element list of coding system name. |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
10605 This variable is given to `completing-read' as COLLECTION argument. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10606 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10607 Do not alter the value of this variable manually. This variable should be |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10608 updated by the functions `make-coding-system' and |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10609 `define-coding-system-alias'. */); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10610 Vcoding_system_alist = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10611 |
17052 | 10612 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10613 doc: /* List of coding-categories (symbols) ordered by priority. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10614 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10615 On detecting a coding system, Emacs tries code detection algorithms |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10616 associated with each coding-category one by one in this order. When |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10617 one algorithm agrees with a byte sequence of source text, the coding |
60608
4b80e9c28e8f
(syms_of_coding): Docstring of coding-category-list fixed.
Kenichi Handa <handa@m17n.org>
parents:
60031
diff
changeset
|
10618 system bound to the corresponding coding-category is selected. |
4b80e9c28e8f
(syms_of_coding): Docstring of coding-category-list fixed.
Kenichi Handa <handa@m17n.org>
parents:
60031
diff
changeset
|
10619 |
61166
e3a6dd630fdf
(Vcoding_category_list): Docstring fix.
Kenichi Handa <handa@m17n.org>
parents:
60907
diff
changeset
|
10620 Don't modify this variable directly, but use `set-coding-priority'. */); |
17052 | 10621 { |
10622 int i; | |
10623 | |
10624 Vcoding_category_list = Qnil; | |
88365 | 10625 for (i = coding_category_max - 1; i >= 0; i--) |
17052 | 10626 Vcoding_category_list |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10627 = Fcons (XVECTOR (Vcoding_category_table)->contents[i], |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10628 Vcoding_category_list); |
17052 | 10629 } |
10630 | |
10631 DEFVAR_LISP ("coding-system-for-read", &Vcoding_system_for_read, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10632 doc: /* Specify the coding system for read operations. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10633 It is useful to bind this variable with `let', but do not set it globally. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10634 If the value is a coding system, it is used for decoding on read operation. |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
10635 If not, an appropriate element is used from one of the coding system alists. |
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
10636 There are three such tables: `file-coding-system-alist', |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10637 `process-coding-system-alist', and `network-coding-system-alist'. */); |
17052 | 10638 Vcoding_system_for_read = Qnil; |
10639 | |
10640 DEFVAR_LISP ("coding-system-for-write", &Vcoding_system_for_write, | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10641 doc: /* Specify the coding system for write operations. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10642 Programs bind this variable with `let', but you should not set it globally. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10643 If the value is a coding system, it is used for encoding of output, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10644 when writing it to a file and when sending it to a file or subprocess. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10645 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10646 If this does not specify a coding system, an appropriate element |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
10647 is used from one of the coding system alists. |
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
10648 There are three such tables: `file-coding-system-alist', |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10649 `process-coding-system-alist', and `network-coding-system-alist'. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10650 For output to files, if the above procedure does not specify a coding system, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10651 the value of `buffer-file-coding-system' is used. */); |
17052 | 10652 Vcoding_system_for_write = Qnil; |
10653 | |
10654 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, | |
88365 | 10655 doc: /* |
10656 Coding system used in the latest file or process I/O. */); | |
17052 | 10657 Vlast_coding_system_used = Qnil; |
10658 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10659 DEFVAR_LISP ("last-code-conversion-error", &Vlast_code_conversion_error, |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10660 doc: /* |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10661 Error status of the last code conversion. |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10662 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10663 When an error was detected in the last code conversion, this variable |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10664 is set to one of the following symbols. |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10665 `insufficient-source' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10666 `inconsistent-eol' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10667 `invalid-source' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10668 `interrupted' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10669 `insufficient-memory' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10670 When no error was detected, the value doesn't change. So, to check |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10671 the error status of a code conversion by this variable, you must |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10672 explicitly set this variable to nil before performing code |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10673 conversion. */); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10674 Vlast_code_conversion_error = Qnil; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10675 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10676 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, |
88365 | 10677 doc: /* |
10678 *Non-nil means always inhibit code conversion of end-of-line format. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10679 See info node `Coding Systems' and info node `Text and Binary' concerning |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10680 such conversion. */); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10681 inhibit_eol_conversion = 0; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10682 |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
10683 DEFVAR_BOOL ("inherit-process-coding-system", &inherit_process_coding_system, |
88365 | 10684 doc: /* |
10685 Non-nil means process buffer inherits coding system of process output. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10686 Bind it to t if the process output is to be treated as if it were a file |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10687 read from some filesystem. */); |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
10688 inherit_process_coding_system = 0; |
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
10689 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10690 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist, |
88365 | 10691 doc: /* |
10692 Alist to decide a coding system to use for a file I/O operation. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10693 The format is ((PATTERN . VAL) ...), |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10694 where PATTERN is a regular expression matching a file name, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10695 VAL is a coding system, a cons of coding systems, or a function symbol. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10696 If VAL is a coding system, it is used for both decoding and encoding |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10697 the file contents. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10698 If VAL is a cons of coding systems, the car part is used for decoding, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10699 and the cdr part is used for encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10700 If VAL is a function symbol, the function must return a coding system |
72323
af796bc81ff0
(syms_of_coding): Improve the docstring
Kenichi Handa <handa@m17n.org>
parents:
72188
diff
changeset
|
10701 or a cons of coding systems which are used as above. The function is |
af796bc81ff0
(syms_of_coding): Improve the docstring
Kenichi Handa <handa@m17n.org>
parents:
72188
diff
changeset
|
10702 called with an argument that is a list of the arguments with which |
81611
ae42ad5f89e6
(Ffind_operation_coding_system): Docstring improved.
Kenichi Handa <handa@m17n.org>
parents:
75348
diff
changeset
|
10703 `find-operation-coding-system' was called. If the function can't decide |
ae42ad5f89e6
(Ffind_operation_coding_system): Docstring improved.
Kenichi Handa <handa@m17n.org>
parents:
75348
diff
changeset
|
10704 a coding system, it can return `undecided' so that the normal |
ae42ad5f89e6
(Ffind_operation_coding_system): Docstring improved.
Kenichi Handa <handa@m17n.org>
parents:
75348
diff
changeset
|
10705 code-detection is performed. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10706 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10707 See also the function `find-operation-coding-system' |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10708 and the variable `auto-coding-alist'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10709 Vfile_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10710 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10711 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist, |
88365 | 10712 doc: /* |
10713 Alist to decide a coding system to use for a process I/O operation. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10714 The format is ((PATTERN . VAL) ...), |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10715 where PATTERN is a regular expression matching a program name, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10716 VAL is a coding system, a cons of coding systems, or a function symbol. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10717 If VAL is a coding system, it is used for both decoding what received |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10718 from the program and encoding what sent to the program. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10719 If VAL is a cons of coding systems, the car part is used for decoding, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10720 and the cdr part is used for encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10721 If VAL is a function symbol, the function must return a coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10722 or a cons of coding systems which are used as above. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10723 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10724 See also the function `find-operation-coding-system'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10725 Vprocess_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10726 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10727 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist, |
88365 | 10728 doc: /* |
10729 Alist to decide a coding system to use for a network I/O operation. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10730 The format is ((PATTERN . VAL) ...), |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10731 where PATTERN is a regular expression matching a network service name |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10732 or is a port number to connect to, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10733 VAL is a coding system, a cons of coding systems, or a function symbol. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10734 If VAL is a coding system, it is used for both decoding what received |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10735 from the network stream and encoding what sent to the network stream. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10736 If VAL is a cons of coding systems, the car part is used for decoding, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10737 and the cdr part is used for encoding. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10738 If VAL is a function symbol, the function must return a coding system |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10739 or a cons of coding systems which are used as above. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10740 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10741 See also the function `find-operation-coding-system'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10742 Vnetwork_coding_system_alist = Qnil; |
17052 | 10743 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10744 DEFVAR_LISP ("locale-coding-system", &Vlocale_coding_system, |
41026
6f20449b7e12
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41006
diff
changeset
|
10745 doc: /* Coding system to use with system messages. |
6f20449b7e12
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41006
diff
changeset
|
10746 Also used for decoding keyboard input on X Window system. */); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10747 Vlocale_coding_system = Qnil; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10748 |
29182
1d1c27067af4
(encode_eol): Add null statement after label.
Dave Love <fx@gnu.org>
parents:
29172
diff
changeset
|
10749 /* The eol mnemonics are reset in startup.el system-dependently. */ |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10750 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix, |
88365 | 10751 doc: /* |
10752 *String displayed in mode line for UNIX-like (LF) end-of-line format. */); | |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10753 eol_mnemonic_unix = build_string (":"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10754 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10755 DEFVAR_LISP ("eol-mnemonic-dos", &eol_mnemonic_dos, |
88365 | 10756 doc: /* |
10757 *String displayed in mode line for DOS-like (CRLF) end-of-line format. */); | |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10758 eol_mnemonic_dos = build_string ("\\"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10759 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10760 DEFVAR_LISP ("eol-mnemonic-mac", &eol_mnemonic_mac, |
88365 | 10761 doc: /* |
10762 *String displayed in mode line for MAC-like (CR) end-of-line format. */); | |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10763 eol_mnemonic_mac = build_string ("/"); |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10764 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10765 DEFVAR_LISP ("eol-mnemonic-undecided", &eol_mnemonic_undecided, |
88365 | 10766 doc: /* |
10767 *String displayed in mode line when end-of-line format is not yet determined. */); | |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10768 eol_mnemonic_undecided = build_string (":"); |
17052 | 10769 |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
10770 DEFVAR_LISP ("enable-character-translation", &Venable_character_translation, |
88365 | 10771 doc: /* |
10772 *Non-nil enables character translation while encoding and decoding. */); | |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
10773 Venable_character_translation = Qt; |
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
10774 |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
10775 DEFVAR_LISP ("standard-translation-table-for-decode", |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10776 &Vstandard_translation_table_for_decode, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10777 doc: /* Table for translating characters while decoding. */); |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
10778 Vstandard_translation_table_for_decode = Qnil; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
10779 |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
10780 DEFVAR_LISP ("standard-translation-table-for-encode", |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10781 &Vstandard_translation_table_for_encode, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10782 doc: /* Table for translating characters while encoding. */); |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
10783 Vstandard_translation_table_for_encode = Qnil; |
17052 | 10784 |
88365 | 10785 DEFVAR_LISP ("charset-revision-table", &Vcharset_revision_table, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10786 doc: /* Alist of charsets vs revision numbers. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10787 While encoding, if a charset (car part of an element) is found, |
88365 | 10788 designate it with the escape sequence identifying revision (cdr part |
10789 of the element). */); | |
10790 Vcharset_revision_table = Qnil; | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10791 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10792 DEFVAR_LISP ("default-process-coding-system", |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10793 &Vdefault_process_coding_system, |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10794 doc: /* Cons of coding systems used for process I/O by default. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10795 The car part is used for decoding a process output, |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10796 the cdr part is used for encoding a text to be sent to a process. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10797 Vdefault_process_coding_system = Qnil; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
10798 |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
10799 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table, |
88365 | 10800 doc: /* |
10801 Table of extra Latin codes in the range 128..159 (inclusive). | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10802 This is a vector of length 256. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10803 If Nth element is non-nil, the existence of code N in a file |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10804 \(or output of subprocess) doesn't prevent it to be detected as |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10805 a coding system of ISO 2022 variant which has a flag |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10806 `accept-latin-extra-code' t (e.g. iso-latin-1) on reading a file |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10807 or reading output of a subprocess. |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
10808 Only 128th through 159th elements have a meaning. */); |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
10809 Vlatin_extra_code_table = Fmake_vector (make_number (256), Qnil); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10810 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10811 DEFVAR_LISP ("select-safe-coding-system-function", |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10812 &Vselect_safe_coding_system_function, |
88365 | 10813 doc: /* |
10814 Function to call to select safe coding system for encoding a text. | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10815 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10816 If set, this function is called to force a user to select a proper |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10817 coding system which can encode the text in the case that a default |
87778
0ec6f8d26078
(select-safe-coding-system-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
87710
diff
changeset
|
10818 coding system used in each operation can't encode the text. The |
0ec6f8d26078
(select-safe-coding-system-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
87710
diff
changeset
|
10819 function should take care that the buffer is not modified while |
0ec6f8d26078
(select-safe-coding-system-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
87710
diff
changeset
|
10820 the coding system is being selected. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10821 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10822 The default value is `select-safe-coding-system' (which see). */); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10823 Vselect_safe_coding_system_function = Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10824 |
48874
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10825 DEFVAR_BOOL ("coding-system-require-warning", |
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10826 &coding_system_require_warning, |
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10827 doc: /* Internal use only. |
49539
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10828 If non-nil, on writing a file, `select-safe-coding-system-function' is |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10829 called even if `coding-system-for-write' is non-nil. The command |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10830 `universal-coding-system-argument' binds this variable to t temporarily. */); |
48874
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10831 coding_system_require_warning = 0; |
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10832 |
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10833 |
30292
14a9937df1f5
(syms_of_coding): Fix typo in spelling of variable
Gerd Moellmann <gerd@gnu.org>
parents:
30263
diff
changeset
|
10834 DEFVAR_BOOL ("inhibit-iso-escape-detection", |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
10835 &inhibit_iso_escape_detection, |
88365 | 10836 doc: /* |
101040 | 10837 If non-nil, Emacs ignores ISO-2022 escape sequences during code detection. |
10838 | |
10839 When Emacs reads text, it tries to detect how the text is encoded. | |
10840 This code detection is sensitive to escape sequences. If Emacs sees | |
10841 a valid ISO-2022 escape sequence, it assumes the text is encoded in one | |
10842 of the ISO2022 encodings, and decodes text by the corresponding coding | |
10843 system (e.g. `iso-2022-7bit'). | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10844 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10845 However, there may be a case that you want to read escape sequences in |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10846 a file as is. In such a case, you can set this variable to non-nil. |
101040 | 10847 Then the code detection will ignore any escape sequences, and no text is |
10848 detected as encoded in some ISO-2022 encoding. The result is that all | |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10849 escape sequences become visible in a buffer. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10850 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10851 The default value is nil, and it is strongly recommended not to change |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10852 it. That is because many Emacs Lisp source files that contain |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10853 non-ASCII characters are encoded by the coding system `iso-2022-7bit' |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10854 in Emacs's distribution, and they won't be decoded correctly on |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10855 reading if you suppress escape sequence detection. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10856 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10857 The other way to read escape sequences in a file without decoding is |
101040 | 10858 to explicitly specify some coding system that doesn't use ISO-2022 |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10859 escape sequence (e.g `latin-1') on reading by \\[universal-coding-system-argument]. */); |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
10860 inhibit_iso_escape_detection = 0; |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
10861 |
101040 | 10862 DEFVAR_BOOL ("inhibit-null-byte-detection", |
10863 &inhibit_null_byte_detection, | |
10864 doc: /* If non-nil, Emacs ignores null bytes on code detection. | |
10865 By default, Emacs treats it as binary data, and does not attempt to | |
10866 decode it. The effect is as if you specified `no-conversion' for | |
10867 reading that text. | |
10868 | |
10869 Set this to non-nil when a regular text happens to include null bytes. | |
10870 Examples are Index nodes of Info files and null-byte delimited output | |
10871 from GNU Find and GNU Grep. Emacs will then ignore the null bytes and | |
10872 decode text as usual. */); | |
10873 inhibit_null_byte_detection = 0; | |
10874 | |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
10875 DEFVAR_LISP ("translation-table-for-input", &Vtranslation_table_for_input, |
48230
c2ce8280fb97
(Vtranslation_table_for_input): New.
Dave Love <fx@gnu.org>
parents:
48182
diff
changeset
|
10876 doc: /* Char table for translating self-inserting characters. |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
10877 This is applied to the result of input methods, not their input. |
101854
7e576fc18303
(syms_of_coding) <translation-table-for-input>: Modify doc string to
Eli Zaretskii <eliz@gnu.org>
parents:
101776
diff
changeset
|
10878 See also `keyboard-translate-table'. |
7e576fc18303
(syms_of_coding) <translation-table-for-input>: Modify doc string to
Eli Zaretskii <eliz@gnu.org>
parents:
101776
diff
changeset
|
10879 |
7e576fc18303
(syms_of_coding) <translation-table-for-input>: Modify doc string to
Eli Zaretskii <eliz@gnu.org>
parents:
101776
diff
changeset
|
10880 Use of this variable for character code unification was rendered |
7e576fc18303
(syms_of_coding) <translation-table-for-input>: Modify doc string to
Eli Zaretskii <eliz@gnu.org>
parents:
101776
diff
changeset
|
10881 obsolete in Emacs 23.1 and later, since Unicode is now the basis of |
7e576fc18303
(syms_of_coding) <translation-table-for-input>: Modify doc string to
Eli Zaretskii <eliz@gnu.org>
parents:
101776
diff
changeset
|
10882 internal character representation. */); |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
10883 Vtranslation_table_for_input = Qnil; |
89483 | 10884 |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10885 { |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10886 Lisp_Object args[coding_arg_max]; |
89483 | 10887 Lisp_Object plist[16]; |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10888 int i; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10889 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10890 for (i = 0; i < coding_arg_max; i++) |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10891 args[i] = Qnil; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10892 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10893 plist[0] = intern (":name"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10894 plist[1] = args[coding_arg_name] = Qno_conversion; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10895 plist[2] = intern (":mnemonic"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10896 plist[3] = args[coding_arg_mnemonic] = make_number ('='); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10897 plist[4] = intern (":coding-type"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10898 plist[5] = args[coding_arg_coding_type] = Qraw_text; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10899 plist[6] = intern (":ascii-compatible-p"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10900 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10901 plist[8] = intern (":default-char"); |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10902 plist[9] = args[coding_arg_default_char] = make_number (0); |
89483 | 10903 plist[10] = intern (":for-unibyte"); |
10904 plist[11] = args[coding_arg_for_unibyte] = Qt; | |
10905 plist[12] = intern (":docstring"); | |
10906 plist[13] = build_string ("Do no conversion.\n\ | |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10907 \n\ |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10908 When you visit a file with this coding, the file is read into a\n\ |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10909 unibyte buffer as is, thus each byte of a file is treated as a\n\ |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10910 character."); |
89483 | 10911 plist[14] = intern (":eol-type"); |
10912 plist[15] = args[coding_arg_eol_type] = Qunix; | |
10913 args[coding_arg_plist] = Flist (16, plist); | |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10914 Fdefine_coding_system_internal (coding_arg_max, args); |
90011
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10915 |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10916 plist[1] = args[coding_arg_name] = Qundecided; |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10917 plist[3] = args[coding_arg_mnemonic] = make_number ('-'); |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10918 plist[5] = args[coding_arg_coding_type] = Qundecided; |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10919 /* This is already set. |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10920 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; */ |
90011
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10921 plist[8] = intern (":charset-list"); |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10922 plist[9] = args[coding_arg_charset_list] = Fcons (Qascii, Qnil); |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10923 plist[11] = args[coding_arg_for_unibyte] = Qnil; |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10924 plist[13] = build_string ("No conversion on encoding, automatic conversion on decoding."); |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10925 plist[15] = args[coding_arg_eol_type] = Qnil; |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10926 args[coding_arg_plist] = Flist (16, plist); |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10927 Fdefine_coding_system_internal (coding_arg_max, args); |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10928 } |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10929 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10930 setup_coding_system (Qno_conversion, &safe_terminal_coding); |
89467
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10931 |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10932 { |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10933 int i; |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10934 |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10935 for (i = 0; i < coding_category_max; i++) |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10936 Fset (AREF (Vcoding_category_table, i), Qno_conversion); |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10937 } |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10938 #if defined (MSDOS) || defined (WINDOWSNT) |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10939 system_eol_type = Qdos; |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10940 #else |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10941 system_eol_type = Qunix; |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10942 #endif |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10943 staticpro (&system_eol_type); |
17052 | 10944 } |
10945 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10946 char * |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10947 emacs_strerror (error_number) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10948 int error_number; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10949 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10950 char *str; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10951 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26240
diff
changeset
|
10952 synchronize_system_messages_locale (); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10953 str = strerror (error_number); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10954 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10955 if (! NILP (Vlocale_coding_system)) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10956 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10957 Lisp_Object dec = code_convert_string_norecord (build_string (str), |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10958 Vlocale_coding_system, |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10959 0); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
10960 str = (char *) SDATA (dec); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10961 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10962 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10963 return str; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10964 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10965 |
17052 | 10966 #endif /* emacs */ |
29184 | 10967 |
52401 | 10968 /* arch-tag: 3a3a2b01-5ff6-4071-9afe-f5b808d9229d |
10969 (do not change this comment) */ |