Mercurial > emacs
annotate src/coding.c @ 108069:c89b196107b3
Regenerate configure.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 22 Apr 2010 13:32:43 -0700 |
parents | bef5d1738c0b |
children | 2bc9a0c04c87 |
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, |
106815 | 3 2006, 2007, 2008, 2009, 2010 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, |
106815 | 5 2005, 2006, 2007, 2008, 2009, 2010 |
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> |
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105179
diff
changeset
|
292 #include <setjmp.h> |
17052 | 293 |
294 #include "lisp.h" | |
295 #include "buffer.h" | |
88365 | 296 #include "character.h" |
17052 | 297 #include "charset.h" |
88365 | 298 #include "ccl.h" |
26847 | 299 #include "composite.h" |
17052 | 300 #include "coding.h" |
301 #include "window.h" | |
83127
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
302 #include "frame.h" |
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
303 #include "termhooks.h" |
17052 | 304 |
88365 | 305 Lisp_Object Vcoding_system_hash_table; |
306 | |
307 Lisp_Object Qcoding_system, Qcoding_aliases, Qeol_type; | |
88646
d3b1f30e2267
(Qmac): Remove (duplicated) definition.
Dave Love <fx@gnu.org>
parents:
88645
diff
changeset
|
308 Lisp_Object Qunix, Qdos; |
d3b1f30e2267
(Qmac): Remove (duplicated) definition.
Dave Love <fx@gnu.org>
parents:
88645
diff
changeset
|
309 extern Lisp_Object Qmac; /* frame.c */ |
17052 | 310 Lisp_Object Qbuffer_file_coding_system; |
311 Lisp_Object Qpost_read_conversion, Qpre_write_conversion; | |
88365 | 312 Lisp_Object Qdefault_char; |
19612
783efd6c7c1e
(Qno_conversion, Qundecided): New variables.
Kenichi Handa <handa@m17n.org>
parents:
19546
diff
changeset
|
313 Lisp_Object Qno_conversion, Qundecided; |
88365 | 314 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
|
315 Lisp_Object Qbig, Qlittle; |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
316 Lisp_Object Qcoding_system_history; |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
317 Lisp_Object Qvalid_codes; |
100303
3e044fa54e4f
* coding.c (QCdefault_char): Rename from QCdefalut_char.
Juanma Barranquero <lekktu@gmail.com>
parents:
100262
diff
changeset
|
318 Lisp_Object QCcategory, QCmnemonic, QCdefault_char; |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
319 Lisp_Object QCdecode_translation_table, QCencode_translation_table; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
320 Lisp_Object QCpost_read_conversion, QCpre_write_conversion; |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
321 Lisp_Object QCascii_compatible_p; |
17052 | 322 |
323 extern Lisp_Object Qinsert_file_contents, Qwrite_region; | |
64251
3de1b955c31a
* coding.c (Qprocess_argument):
Kim F. Storm <storm@cua.dk>
parents:
64084
diff
changeset
|
324 Lisp_Object Qcall_process, Qcall_process_region; |
17052 | 325 Lisp_Object Qstart_process, Qopen_network_stream; |
326 Lisp_Object Qtarget_idx; | |
327 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
328 Lisp_Object Qinsufficient_source, Qinconsistent_eol, Qinvalid_source; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
329 Lisp_Object Qinterrupted, Qinsufficient_memory; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
330 |
79107
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
331 extern Lisp_Object Qcompletion_ignore_case; |
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
332 |
52794
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
333 /* 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
|
334 symbol as a coding system. */ |
90272
f1df126ec7de
Sync to HEAD for handling autoload-coding-system.
Kenichi Handa <handa@m17n.org>
parents:
90263
diff
changeset
|
335 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
|
336 |
89483 | 337 int coding_system_require_warning; |
52794
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
338 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
339 Lisp_Object Vselect_safe_coding_system_function; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
340 |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
341 /* 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
|
342 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
|
343 /* Mnemonic string to indicate format of end-of-line is not yet |
17052 | 344 decided. */ |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
345 Lisp_Object eol_mnemonic_undecided; |
17052 | 346 |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
347 /* 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
|
348 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
|
349 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
|
350 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
|
351 static Lisp_Object system_eol_type; |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
352 |
17052 | 353 #ifdef emacs |
354 | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
355 Lisp_Object Vcoding_system_list, Vcoding_system_alist; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
356 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
357 Lisp_Object Qcoding_system_p, Qcoding_system_error; |
17052 | 358 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
359 /* 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
|
360 end-of-line format. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
361 Lisp_Object Qemacs_mule, Qraw_text; |
89483 | 362 Lisp_Object Qutf_8_emacs; |
51406 | 363 |
17052 | 364 /* Coding-systems are handed between Emacs Lisp programs and C internal |
365 routines by the following three variables. */ | |
366 /* Coding-system for reading files and receiving data from process. */ | |
367 Lisp_Object Vcoding_system_for_read; | |
368 /* Coding-system for writing files and sending data to process. */ | |
369 Lisp_Object Vcoding_system_for_write; | |
370 /* Coding-system actually used in the latest I/O. */ | |
371 Lisp_Object Vlast_coding_system_used; | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
372 /* 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
|
373 Lisp_Object Vlast_code_conversion_error; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
374 /* A vector of length 256 which contains information about special |
22529 | 375 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
|
376 Lisp_Object Vlatin_extra_code_table; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
377 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
378 /* 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
|
379 int inhibit_eol_conversion; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
380 |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
381 /* Flag to inhibit ISO2022 escape sequence detection. */ |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
382 int inhibit_iso_escape_detection; |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
383 |
101040 | 384 /* Flag to inhibit detection of binary files through null bytes. */ |
385 int inhibit_null_byte_detection; | |
386 | |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
387 /* 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
|
388 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
|
389 |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
390 /* 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
|
391 terminal coding system is nil. */ |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
392 struct coding_system safe_terminal_coding; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
393 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
394 Lisp_Object Vfile_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
395 Lisp_Object Vprocess_coding_system_alist; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
396 Lisp_Object Vnetwork_coding_system_alist; |
17052 | 397 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
398 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
|
399 |
17052 | 400 #endif /* emacs */ |
401 | |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
402 /* 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
|
403 conversion. */ |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
404 Lisp_Object Venable_character_translation; |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
405 /* 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
|
406 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
|
407 /* 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
|
408 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
|
409 |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
410 Lisp_Object Qtranslation_table; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
411 Lisp_Object Qtranslation_table_id; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
412 Lisp_Object Qtranslation_table_for_decode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
413 Lisp_Object Qtranslation_table_for_encode; |
17052 | 414 |
415 /* Alist of charsets vs revision number. */ | |
88365 | 416 static Lisp_Object Vcharset_revision_table; |
17052 | 417 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
418 /* Default coding systems used for process I/O. */ |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
419 Lisp_Object Vdefault_process_coding_system; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
420 |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
421 /* 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
|
422 Lisp_Object Vtranslation_table_for_input; |
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
423 |
88365 | 424 /* Two special coding systems. */ |
425 Lisp_Object Vsjis_coding_system; | |
426 Lisp_Object Vbig5_coding_system; | |
427 | |
428 /* ISO2022 section */ | |
429 | |
430 #define CODING_ISO_INITIAL(coding, reg) \ | |
431 (XINT (AREF (AREF (CODING_ID_ATTRS ((coding)->id), \ | |
432 coding_attr_iso_initial), \ | |
433 reg))) | |
434 | |
435 | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
436 #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
|
437 (((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
|
438 ? ((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
|
439 ? (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
|
440 : -1) \ |
88365 | 441 : -1)) |
442 | |
443 | |
444 #define CODING_ISO_FLAGS(coding) \ | |
445 ((coding)->spec.iso_2022.flags) | |
446 #define CODING_ISO_DESIGNATION(coding, reg) \ | |
447 ((coding)->spec.iso_2022.current_designation[reg]) | |
448 #define CODING_ISO_INVOCATION(coding, plane) \ | |
449 ((coding)->spec.iso_2022.current_invocation[plane]) | |
450 #define CODING_ISO_SINGLE_SHIFTING(coding) \ | |
451 ((coding)->spec.iso_2022.single_shifting) | |
452 #define CODING_ISO_BOL(coding) \ | |
453 ((coding)->spec.iso_2022.bol) | |
454 #define CODING_ISO_INVOKED_CHARSET(coding, plane) \ | |
455 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
|
456 #define CODING_ISO_CMP_STATUS(coding) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
457 (&(coding)->spec.iso_2022.cmp_status) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
458 #define CODING_ISO_EXTSEGMENT_LEN(coding) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
459 ((coding)->spec.iso_2022.ctext_extended_segment_len) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
460 #define CODING_ISO_EMBEDDED_UTF_8(coding) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
461 ((coding)->spec.iso_2022.embedded_utf_8) |
88365 | 462 |
463 /* Control characters of ISO2022. */ | |
464 /* code */ /* function */ | |
465 #define ISO_CODE_LF 0x0A /* line-feed */ | |
466 #define ISO_CODE_CR 0x0D /* carriage-return */ | |
467 #define ISO_CODE_SO 0x0E /* shift-out */ | |
468 #define ISO_CODE_SI 0x0F /* shift-in */ | |
469 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */ | |
470 #define ISO_CODE_ESC 0x1B /* escape */ | |
471 #define ISO_CODE_SS2 0x8E /* single-shift-2 */ | |
472 #define ISO_CODE_SS3 0x8F /* single-shift-3 */ | |
473 #define ISO_CODE_CSI 0x9B /* control-sequence-introducer */ | |
474 | |
475 /* All code (1-byte) of ISO2022 is classified into one of the | |
476 followings. */ | |
477 enum iso_code_class_type | |
478 { | |
479 ISO_control_0, /* Control codes in the range | |
480 0x00..0x1F and 0x7F, except for the | |
481 following 5 codes. */ | |
482 ISO_shift_out, /* ISO_CODE_SO (0x0E) */ | |
483 ISO_shift_in, /* ISO_CODE_SI (0x0F) */ | |
484 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */ | |
485 ISO_escape, /* ISO_CODE_SO (0x1B) */ | |
486 ISO_control_1, /* Control codes in the range | |
487 0x80..0x9F, except for the | |
488 following 3 codes. */ | |
489 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */ | |
490 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */ | |
491 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */ | |
492 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */ | |
493 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */ | |
494 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */ | |
495 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */ | |
496 }; | |
497 | |
498 /** The macros CODING_ISO_FLAG_XXX defines a flag bit of the | |
499 `iso-flags' attribute of an iso2022 coding system. */ | |
500 | |
501 /* If set, produce long-form designation sequence (e.g. ESC $ ( A) | |
502 instead of the correct short-form sequence (e.g. ESC $ A). */ | |
503 #define CODING_ISO_FLAG_LONG_FORM 0x0001 | |
504 | |
505 /* If set, reset graphic planes and registers at end-of-line to the | |
506 initial state. */ | |
507 #define CODING_ISO_FLAG_RESET_AT_EOL 0x0002 | |
508 | |
509 /* If set, reset graphic planes and registers before any control | |
510 characters to the initial state. */ | |
511 #define CODING_ISO_FLAG_RESET_AT_CNTL 0x0004 | |
512 | |
513 /* If set, encode by 7-bit environment. */ | |
514 #define CODING_ISO_FLAG_SEVEN_BITS 0x0008 | |
515 | |
516 /* If set, use locking-shift function. */ | |
517 #define CODING_ISO_FLAG_LOCKING_SHIFT 0x0010 | |
518 | |
519 /* If set, use single-shift function. Overwrite | |
520 CODING_ISO_FLAG_LOCKING_SHIFT. */ | |
521 #define CODING_ISO_FLAG_SINGLE_SHIFT 0x0020 | |
522 | |
523 /* If set, use designation escape sequence. */ | |
524 #define CODING_ISO_FLAG_DESIGNATION 0x0040 | |
525 | |
526 /* If set, produce revision number sequence. */ | |
527 #define CODING_ISO_FLAG_REVISION 0x0080 | |
528 | |
529 /* If set, produce ISO6429's direction specifying sequence. */ | |
530 #define CODING_ISO_FLAG_DIRECTION 0x0100 | |
531 | |
532 /* If set, assume designation states are reset at beginning of line on | |
533 output. */ | |
534 #define CODING_ISO_FLAG_INIT_AT_BOL 0x0200 | |
535 | |
536 /* If set, designation sequence should be placed at beginning of line | |
537 on output. */ | |
538 #define CODING_ISO_FLAG_DESIGNATE_AT_BOL 0x0400 | |
539 | |
540 /* If set, do not encode unsafe charactes on output. */ | |
541 #define CODING_ISO_FLAG_SAFE 0x0800 | |
542 | |
543 /* If set, extra latin codes (128..159) are accepted as a valid code | |
544 on input. */ | |
545 #define CODING_ISO_FLAG_LATIN_EXTRA 0x1000 | |
546 | |
547 #define CODING_ISO_FLAG_COMPOSITION 0x2000 | |
548 | |
549 #define CODING_ISO_FLAG_EUC_TW_SHIFT 0x4000 | |
550 | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
551 #define CODING_ISO_FLAG_USE_ROMAN 0x8000 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
552 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
553 #define CODING_ISO_FLAG_USE_OLDJIS 0x10000 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
554 |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
555 #define CODING_ISO_FLAG_FULL_SUPPORT 0x100000 |
88365 | 556 |
557 /* A character to be produced on output if encoding of the original | |
558 character is prohibited by CODING_ISO_FLAG_SAFE. */ | |
559 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION '?' | |
560 | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
561 /* UTF-8 section */ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
562 #define CODING_UTF_8_BOM(coding) \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
563 ((coding)->spec.utf_8_bom) |
88365 | 564 |
565 /* UTF-16 section */ | |
566 #define CODING_UTF_16_BOM(coding) \ | |
567 ((coding)->spec.utf_16.bom) | |
568 | |
569 #define CODING_UTF_16_ENDIAN(coding) \ | |
570 ((coding)->spec.utf_16.endian) | |
571 | |
572 #define CODING_UTF_16_SURROGATE(coding) \ | |
573 ((coding)->spec.utf_16.surrogate) | |
574 | |
575 | |
576 /* CCL section */ | |
577 #define CODING_CCL_DECODER(coding) \ | |
578 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_decoder) | |
579 #define CODING_CCL_ENCODER(coding) \ | |
580 AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_encoder) | |
581 #define CODING_CCL_VALIDS(coding) \ | |
89483 | 582 (SDATA (AREF (CODING_ID_ATTRS ((coding)->id), coding_attr_ccl_valids))) |
88365 | 583 |
88771 | 584 /* Index for each coding category in `coding_categories' */ |
88365 | 585 |
586 enum coding_category | |
587 { | |
588 coding_category_iso_7, | |
589 coding_category_iso_7_tight, | |
590 coding_category_iso_8_1, | |
591 coding_category_iso_8_2, | |
592 coding_category_iso_7_else, | |
593 coding_category_iso_8_else, | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
594 coding_category_utf_8_auto, |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
595 coding_category_utf_8_nosig, |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
596 coding_category_utf_8_sig, |
88365 | 597 coding_category_utf_16_auto, |
598 coding_category_utf_16_be, | |
599 coding_category_utf_16_le, | |
600 coding_category_utf_16_be_nosig, | |
601 coding_category_utf_16_le_nosig, | |
602 coding_category_charset, | |
603 coding_category_sjis, | |
604 coding_category_big5, | |
605 coding_category_ccl, | |
606 coding_category_emacs_mule, | |
607 /* All above are targets of code detection. */ | |
608 coding_category_raw_text, | |
609 coding_category_undecided, | |
610 coding_category_max | |
611 }; | |
612 | |
613 /* Definitions of flag bits used in detect_coding_XXXX. */ | |
614 #define CATEGORY_MASK_ISO_7 (1 << coding_category_iso_7) | |
615 #define CATEGORY_MASK_ISO_7_TIGHT (1 << coding_category_iso_7_tight) | |
616 #define CATEGORY_MASK_ISO_8_1 (1 << coding_category_iso_8_1) | |
617 #define CATEGORY_MASK_ISO_8_2 (1 << coding_category_iso_8_2) | |
618 #define CATEGORY_MASK_ISO_7_ELSE (1 << coding_category_iso_7_else) | |
619 #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
|
620 #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
|
621 #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
|
622 #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
|
623 #define CATEGORY_MASK_UTF_16_AUTO (1 << coding_category_utf_16_auto) |
88365 | 624 #define CATEGORY_MASK_UTF_16_BE (1 << coding_category_utf_16_be) |
625 #define CATEGORY_MASK_UTF_16_LE (1 << coding_category_utf_16_le) | |
626 #define CATEGORY_MASK_UTF_16_BE_NOSIG (1 << coding_category_utf_16_be_nosig) | |
627 #define CATEGORY_MASK_UTF_16_LE_NOSIG (1 << coding_category_utf_16_le_nosig) | |
628 #define CATEGORY_MASK_CHARSET (1 << coding_category_charset) | |
629 #define CATEGORY_MASK_SJIS (1 << coding_category_sjis) | |
630 #define CATEGORY_MASK_BIG5 (1 << coding_category_big5) | |
631 #define CATEGORY_MASK_CCL (1 << coding_category_ccl) | |
632 #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
|
633 #define CATEGORY_MASK_RAW_TEXT (1 << coding_category_raw_text) |
88365 | 634 |
635 /* This value is returned if detect_coding_mask () find nothing other | |
636 than ASCII characters. */ | |
637 #define CATEGORY_MASK_ANY \ | |
638 (CATEGORY_MASK_ISO_7 \ | |
639 | CATEGORY_MASK_ISO_7_TIGHT \ | |
640 | CATEGORY_MASK_ISO_8_1 \ | |
641 | CATEGORY_MASK_ISO_8_2 \ | |
642 | CATEGORY_MASK_ISO_7_ELSE \ | |
643 | CATEGORY_MASK_ISO_8_ELSE \ | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
644 | CATEGORY_MASK_UTF_8_AUTO \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
645 | CATEGORY_MASK_UTF_8_NOSIG \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
646 | 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
|
647 | CATEGORY_MASK_UTF_16_AUTO \ |
88365 | 648 | CATEGORY_MASK_UTF_16_BE \ |
649 | CATEGORY_MASK_UTF_16_LE \ | |
650 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
651 | CATEGORY_MASK_UTF_16_LE_NOSIG \ | |
652 | CATEGORY_MASK_CHARSET \ | |
653 | CATEGORY_MASK_SJIS \ | |
654 | CATEGORY_MASK_BIG5 \ | |
655 | CATEGORY_MASK_CCL \ | |
656 | CATEGORY_MASK_EMACS_MULE) | |
657 | |
658 | |
659 #define CATEGORY_MASK_ISO_7BIT \ | |
660 (CATEGORY_MASK_ISO_7 | CATEGORY_MASK_ISO_7_TIGHT) | |
661 | |
662 #define CATEGORY_MASK_ISO_8BIT \ | |
663 (CATEGORY_MASK_ISO_8_1 | CATEGORY_MASK_ISO_8_2) | |
664 | |
665 #define CATEGORY_MASK_ISO_ELSE \ | |
666 (CATEGORY_MASK_ISO_7_ELSE | CATEGORY_MASK_ISO_8_ELSE) | |
667 | |
668 #define CATEGORY_MASK_ISO_ESCAPE \ | |
669 (CATEGORY_MASK_ISO_7 \ | |
670 | CATEGORY_MASK_ISO_7_TIGHT \ | |
671 | CATEGORY_MASK_ISO_7_ELSE \ | |
672 | CATEGORY_MASK_ISO_8_ELSE) | |
673 | |
674 #define CATEGORY_MASK_ISO \ | |
675 ( CATEGORY_MASK_ISO_7BIT \ | |
676 | CATEGORY_MASK_ISO_8BIT \ | |
677 | CATEGORY_MASK_ISO_ELSE) | |
678 | |
679 #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
|
680 (CATEGORY_MASK_UTF_16_AUTO \ |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
681 | CATEGORY_MASK_UTF_16_BE \ |
88365 | 682 | CATEGORY_MASK_UTF_16_LE \ |
683 | CATEGORY_MASK_UTF_16_BE_NOSIG \ | |
684 | CATEGORY_MASK_UTF_16_LE_NOSIG) | |
685 | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
686 #define CATEGORY_MASK_UTF_8 \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
687 (CATEGORY_MASK_UTF_8_AUTO \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
688 | CATEGORY_MASK_UTF_8_NOSIG \ |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
689 | CATEGORY_MASK_UTF_8_SIG) |
88365 | 690 |
691 /* List of symbols `coding-category-xxx' ordered by priority. This | |
692 variable is exposed to Emacs Lisp. */ | |
693 static Lisp_Object Vcoding_category_list; | |
694 | |
695 /* Table of coding categories (Lisp symbols). This variable is for | |
696 internal use oly. */ | |
697 static Lisp_Object Vcoding_category_table; | |
698 | |
699 /* Table of coding-categories ordered by priority. */ | |
700 static enum coding_category coding_priorities[coding_category_max]; | |
701 | |
702 /* Nth element is a coding context for the coding system bound to the | |
703 Nth coding category. */ | |
704 static struct coding_system coding_categories[coding_category_max]; | |
705 | |
706 /*** Commonly used macros and functions ***/ | |
707 | |
708 #ifndef min | |
709 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
710 #endif | |
711 #ifndef max | |
712 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
713 #endif | |
714 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
715 #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
|
716 do { \ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
717 (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
|
718 (charset_list) = CODING_ATTR_CHARSET_LIST (attrs); \ |
88365 | 719 } while (0) |
720 | |
721 | |
722 /* Safely get one byte from the source text pointed by SRC which ends | |
723 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
|
724 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
|
725 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
|
726 negative value of the character code. The caller should declare |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
727 and set these variables appropriately in advance: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
728 src, src_end, multibytep */ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
729 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
730 #define ONE_MORE_BYTE(c) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
731 do { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
732 if (src == src_end) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
733 { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
734 if (src_base < src) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
735 record_conversion_result \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
736 (coding, CODING_RESULT_INSUFFICIENT_SRC); \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
737 goto no_more_source; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
738 } \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
739 c = *src++; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
740 if (multibytep && (c & 0x80)) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
741 { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
742 if ((c & 0xFE) == 0xC0) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
743 c = ((c & 1) << 6) | *src++; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
744 else \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
745 { \ |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
746 src--; \ |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
747 c = - string_char (src, &src, NULL); \ |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
748 record_conversion_result \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
749 (coding, CODING_RESULT_INVALID_SRC); \ |
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 } \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
752 consumed_chars++; \ |
88365 | 753 } while (0) |
754 | |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
755 /* Safely get two bytes from the source text pointed by SRC which ends |
101174 | 756 at SRC_END, and set C1 and C2 to those bytes while skipping the |
757 heading multibyte characters. If there are not enough bytes in the | |
758 source, it jumps to `no_more_source'. If multibytep is nonzero and | |
759 a multibyte character is found for C2, set C2 to the negative value | |
760 of the character code. The caller should declare and set these | |
761 variables appropriately in advance: | |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
762 src, src_end, multibytep |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
763 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
|
764 |
101174 | 765 #define TWO_MORE_BYTES(c1, c2) \ |
766 do { \ | |
767 do { \ | |
768 if (src == src_end) \ | |
769 goto no_more_source; \ | |
770 c1 = *src++; \ | |
771 if (multibytep && (c1 & 0x80)) \ | |
772 { \ | |
773 if ((c1 & 0xFE) == 0xC0) \ | |
774 c1 = ((c1 & 1) << 6) | *src++; \ | |
775 else \ | |
776 { \ | |
777 src += BYTES_BY_CHAR_HEAD (c1) - 1; \ | |
778 c1 = -1; \ | |
779 } \ | |
780 } \ | |
781 } while (c1 < 0); \ | |
782 if (src == src_end) \ | |
783 goto no_more_source; \ | |
784 c2 = *src++; \ | |
785 if (multibytep && (c2 & 0x80)) \ | |
786 { \ | |
787 if ((c2 & 0xFE) == 0xC0) \ | |
788 c2 = ((c2 & 1) << 6) | *src++; \ | |
789 else \ | |
790 c2 = -1; \ | |
791 } \ | |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
792 } while (0) |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
793 |
88365 | 794 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
795 #define ONE_MORE_BYTE_NO_CHECK(c) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
796 do { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
797 c = *src++; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
798 if (multibytep && (c & 0x80)) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
799 { \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
800 if ((c & 0xFE) == 0xC0) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
801 c = ((c & 1) << 6) | *src++; \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
802 else \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
803 { \ |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
804 src--; \ |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
805 c = - string_char (src, &src, NULL); \ |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
806 record_conversion_result \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
807 (coding, CODING_RESULT_INVALID_SRC); \ |
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 } \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
810 consumed_chars++; \ |
88365 | 811 } while (0) |
812 | |
813 | |
814 /* Store a byte C in the place pointed by DST and increment DST to the | |
815 next free point, and increment PRODUCED_CHARS. The caller should | |
816 assure that C is 0..127, and declare and set the variable `dst' | |
817 appropriately in advance. | |
818 */ | |
819 | |
820 | |
821 #define EMIT_ONE_ASCII_BYTE(c) \ | |
822 do { \ | |
823 produced_chars++; \ | |
824 *dst++ = (c); \ | |
825 } while (0) | |
826 | |
827 | |
828 /* Like EMIT_ONE_ASCII_BYTE byt store two bytes; C1 and C2. */ | |
829 | |
830 #define EMIT_TWO_ASCII_BYTES(c1, c2) \ | |
831 do { \ | |
832 produced_chars += 2; \ | |
833 *dst++ = (c1), *dst++ = (c2); \ | |
834 } while (0) | |
835 | |
836 | |
837 /* Store a byte C in the place pointed by DST and increment DST to the | |
838 next free point, and increment PRODUCED_CHARS. If MULTIBYTEP is | |
839 nonzero, store in an appropriate multibyte from. The caller should | |
840 declare and set the variables `dst' and `multibytep' appropriately | |
841 in advance. */ | |
842 | |
843 #define EMIT_ONE_BYTE(c) \ | |
844 do { \ | |
845 produced_chars++; \ | |
846 if (multibytep) \ | |
847 { \ | |
848 int ch = (c); \ | |
849 if (ch >= 0x80) \ | |
850 ch = BYTE8_TO_CHAR (ch); \ | |
851 CHAR_STRING_ADVANCE (ch, dst); \ | |
852 } \ | |
853 else \ | |
854 *dst++ = (c); \ | |
855 } while (0) | |
856 | |
857 | |
858 /* Like EMIT_ONE_BYTE, but emit two bytes; C1 and C2. */ | |
859 | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
860 #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
|
861 do { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
862 produced_chars += 2; \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
863 if (multibytep) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
864 { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
865 int ch; \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
866 \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
867 ch = (c1); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
868 if (ch >= 0x80) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
869 ch = BYTE8_TO_CHAR (ch); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
870 CHAR_STRING_ADVANCE (ch, dst); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
871 ch = (c2); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
872 if (ch >= 0x80) \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
873 ch = BYTE8_TO_CHAR (ch); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
874 CHAR_STRING_ADVANCE (ch, dst); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
875 } \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
876 else \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
877 { \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
878 *dst++ = (c1); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
879 *dst++ = (c2); \ |
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
880 } \ |
88365 | 881 } while (0) |
882 | |
883 | |
884 #define EMIT_THREE_BYTES(c1, c2, c3) \ | |
885 do { \ | |
886 EMIT_ONE_BYTE (c1); \ | |
887 EMIT_TWO_BYTES (c2, c3); \ | |
888 } while (0) | |
889 | |
890 | |
891 #define EMIT_FOUR_BYTES(c1, c2, c3, c4) \ | |
892 do { \ | |
893 EMIT_TWO_BYTES (c1, c2); \ | |
894 EMIT_TWO_BYTES (c3, c4); \ | |
895 } while (0) | |
896 | |
897 | |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
898 /* Prototypes for static functions. */ |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
899 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
|
900 enum coding_result_code result)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
901 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
|
902 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
903 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
|
904 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
|
905 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
906 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
|
907 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
908 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
|
909 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
|
910 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
911 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
|
912 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
913 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
|
914 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
|
915 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
916 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
|
917 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
918 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
|
919 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
|
920 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
921 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
|
922 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
923 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
|
924 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
|
925 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
926 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
|
927 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
928 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
|
929 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
|
930 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
931 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
|
932 struct coding_detection_info *info)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
933 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
|
934 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
|
935 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
936 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
|
937 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
|
938 |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
939 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
|
940 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
|
941 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
|
942 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
|
943 EMACS_INT, EMACS_INT)); |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
944 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
|
945 EMACS_INT, unsigned char *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
946 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
|
947 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
|
948 int *, int *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
949 unsigned char *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
950 static int detect_eol P_ ((const unsigned char *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
951 EMACS_INT, enum coding_category)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
952 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
|
953 static void decode_eol P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
954 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
|
955 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
|
956 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
|
957 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
|
958 EMACS_INT)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
959 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
|
960 static int decode_coding P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
961 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
|
962 struct coding_system *, |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
963 int *, EMACS_INT *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
964 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
|
965 struct coding_system *, |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
966 int *, EMACS_INT *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
967 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
|
968 static int encode_coding P_ ((struct coding_system *)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
969 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
|
970 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
|
971 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
|
972 static Lisp_Object make_subsidiaries P_ ((Lisp_Object)); |
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
973 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
974 static void |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
975 record_conversion_result (struct coding_system *coding, |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
976 enum coding_result_code result) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
977 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
978 coding->result = result; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
979 switch (result) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
980 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
981 case CODING_RESULT_INSUFFICIENT_SRC: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
982 Vlast_code_conversion_error = Qinsufficient_source; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
983 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
984 case CODING_RESULT_INCONSISTENT_EOL: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
985 Vlast_code_conversion_error = Qinconsistent_eol; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
986 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
987 case CODING_RESULT_INVALID_SRC: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
988 Vlast_code_conversion_error = Qinvalid_source; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
989 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
990 case CODING_RESULT_INTERRUPT: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
991 Vlast_code_conversion_error = Qinterrupted; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
992 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
993 case CODING_RESULT_INSUFFICIENT_MEM: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
994 Vlast_code_conversion_error = Qinsufficient_memory; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
995 break; |
107174
e98bd64897e0
Fix handling of CODING_RESULT_INSUFFICIENT_DST.
Kenichi Handa <handa@m17n.org>
parents:
107171
diff
changeset
|
996 case CODING_RESULT_INSUFFICIENT_DST: |
e98bd64897e0
Fix handling of CODING_RESULT_INSUFFICIENT_DST.
Kenichi Handa <handa@m17n.org>
parents:
107171
diff
changeset
|
997 /* Don't record this error in Vlast_code_conversion_error |
e98bd64897e0
Fix handling of CODING_RESULT_INSUFFICIENT_DST.
Kenichi Handa <handa@m17n.org>
parents:
107171
diff
changeset
|
998 because it happens just temporarily and is resolved when the |
e98bd64897e0
Fix handling of CODING_RESULT_INSUFFICIENT_DST.
Kenichi Handa <handa@m17n.org>
parents:
107171
diff
changeset
|
999 whole conversion is finished. */ |
e98bd64897e0
Fix handling of CODING_RESULT_INSUFFICIENT_DST.
Kenichi Handa <handa@m17n.org>
parents:
107171
diff
changeset
|
1000 break; |
103133
2f7395806731
(record_conversion_result): Don't modify
Andreas Schwab <schwab@linux-m68k.org>
parents:
103052
diff
changeset
|
1001 case CODING_RESULT_SUCCESS: |
2f7395806731
(record_conversion_result): Don't modify
Andreas Schwab <schwab@linux-m68k.org>
parents:
103052
diff
changeset
|
1002 break; |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
1003 default: |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
1004 Vlast_code_conversion_error = intern ("Unknown error"); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1005 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1006 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1007 |
107321
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
1008 /* This wrapper macro is used to preserve validity of pointers into |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
1009 buffer text across calls to decode_char, which could cause |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
1010 relocation of buffers if it loads a charset map, because loading a |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
1011 charset map allocates large structures. */ |
88365 | 1012 #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \ |
1013 do { \ | |
1014 charset_map_loaded = 0; \ | |
1015 c = DECODE_CHAR (charset, code); \ | |
1016 if (charset_map_loaded) \ | |
1017 { \ | |
89483 | 1018 const unsigned char *orig = coding->source; \ |
88365 | 1019 EMACS_INT offset; \ |
1020 \ | |
1021 coding_set_source (coding); \ | |
1022 offset = coding->source - orig; \ | |
1023 src += offset; \ | |
1024 src_base += offset; \ | |
1025 src_end += offset; \ | |
1026 } \ | |
1027 } while (0) | |
1028 | |
1029 | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1030 /* 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
|
1031 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
|
1032 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
|
1033 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
|
1034 |
88365 | 1035 #define ASSURE_DESTINATION(bytes) \ |
1036 do { \ | |
1037 if (dst + (bytes) >= dst_end) \ | |
1038 { \ | |
1039 int more_bytes = charbuf_end - charbuf + (bytes); \ | |
1040 \ | |
1041 dst = alloc_destination (coding, more_bytes, dst); \ | |
1042 dst_end = coding->destination + coding->dst_bytes; \ | |
1043 } \ | |
1044 } while (0) | |
1045 | |
1046 | |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1047 /* 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
|
1048 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
|
1049 never calls MAYBE_UNIFY_CHAR. */ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1050 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1051 #define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1052 do { \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1053 if ((c) <= MAX_1_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1054 *(p)++ = (c); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1055 else if ((c) <= MAX_2_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1056 *(p)++ = (0xC0 | ((c) >> 6)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1057 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1058 else if ((c) <= MAX_3_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1059 *(p)++ = (0xE0 | ((c) >> 12)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1060 *(p)++ = (0x80 | (((c) >> 6) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1061 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1062 else if ((c) <= MAX_4_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1063 *(p)++ = (0xF0 | (c >> 18)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1064 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1065 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1066 *(p)++ = (0x80 | (c & 0x3F)); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1067 else if ((c) <= MAX_5_BYTE_CHAR) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1068 *(p)++ = 0xF8, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1069 *(p)++ = (0x80 | ((c >> 18) & 0x0F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1070 *(p)++ = (0x80 | ((c >> 12) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1071 *(p)++ = (0x80 | ((c >> 6) & 0x3F)), \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1072 *(p)++ = (0x80 | (c & 0x3F)); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1073 else \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1074 (p) += BYTE8_STRING ((c) - 0x3FFF80, p); \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1075 } while (0) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1076 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1077 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1078 /* 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
|
1079 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
|
1080 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
|
1081 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1082 #define STRING_CHAR_ADVANCE_NO_UNIFY(p) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1083 (!((p)[0] & 0x80) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1084 ? *(p)++ \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1085 : ! ((p)[0] & 0x20) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1086 ? ((p) += 2, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1087 ((((p)[-2] & 0x1F) << 6) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1088 | ((p)[-1] & 0x3F) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1089 | ((unsigned char) ((p)[-2]) < 0xC2 ? 0x3FFF80 : 0))) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1090 : ! ((p)[0] & 0x10) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1091 ? ((p) += 3, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1092 ((((p)[-3] & 0x0F) << 12) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1093 | (((p)[-2] & 0x3F) << 6) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1094 | ((p)[-1] & 0x3F))) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1095 : ! ((p)[0] & 0x08) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1096 ? ((p) += 4, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1097 ((((p)[-4] & 0xF) << 18) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1098 | (((p)[-3] & 0x3F) << 12) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1099 | (((p)[-2] & 0x3F) << 6) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1100 | ((p)[-1] & 0x3F))) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1101 : ((p) += 5, \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1102 ((((p)[-4] & 0x3F) << 18) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1103 | (((p)[-3] & 0x3F) << 12) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1104 | (((p)[-2] & 0x3F) << 6) \ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1105 | ((p)[-1] & 0x3F)))) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1106 |
88365 | 1107 |
1108 static void | |
1109 coding_set_source (coding) | |
1110 struct coding_system *coding; | |
1111 { | |
1112 if (BUFFERP (coding->src_object)) | |
1113 { | |
89418
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
1114 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
|
1115 |
88365 | 1116 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
|
1117 coding->source = BUF_GAP_END_ADDR (buf) + coding->src_pos_byte; |
88365 | 1118 else |
89418
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
1119 coding->source = BUF_BYTE_ADDRESS (buf, coding->src_pos_byte); |
88365 | 1120 } |
1121 else if (STRINGP (coding->src_object)) | |
1122 { | |
89483 | 1123 coding->source = SDATA (coding->src_object) + coding->src_pos_byte; |
88365 | 1124 } |
1125 else | |
1126 /* Otherwise, the source is C string and is never relocated | |
1127 automatically. Thus we don't have to update anything. */ | |
1128 ; | |
1129 } | |
1130 | |
1131 static void | |
1132 coding_set_destination (coding) | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1133 struct coding_system *coding; |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1134 { |
88365 | 1135 if (BUFFERP (coding->dst_object)) |
1136 { | |
1137 if (coding->src_pos < 0) | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1138 { |
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->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
|
1140 coding->dst_bytes = (GAP_END_ADDR |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1141 - (coding->src_bytes - coding->consumed) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1142 - coding->destination); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1143 } |
88365 | 1144 else |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1145 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1146 /* 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
|
1147 of the buffer. */ |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1148 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
|
1149 + coding->dst_pos_byte - BEG_BYTE); |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1150 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
|
1151 - coding->destination); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1152 } |
88365 | 1153 } |
1154 else | |
1155 /* Otherwise, the destination is C string and is never relocated | |
1156 automatically. Thus we don't have to update anything. */ | |
1157 ; | |
1158 } | |
1159 | |
1160 | |
1161 static void | |
1162 coding_alloc_by_realloc (coding, bytes) | |
1163 struct coding_system *coding; | |
1164 EMACS_INT bytes; | |
1165 { | |
1166 coding->destination = (unsigned char *) xrealloc (coding->destination, | |
1167 coding->dst_bytes + bytes); | |
1168 coding->dst_bytes += bytes; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1169 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1170 |
88365 | 1171 static void |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1172 coding_alloc_by_making_gap (coding, gap_head_used, bytes) |
88365 | 1173 struct coding_system *coding; |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1174 EMACS_INT gap_head_used, bytes; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1175 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1176 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1177 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1178 /* 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
|
1179 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
|
1180 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
|
1181 size. */ |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1182 EMACS_INT add = GAP_SIZE; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1183 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1184 GPT += gap_head_used, GPT_BYTE += gap_head_used; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1185 GAP_SIZE = 0; ZV += add; Z += add; ZV_BYTE += add; Z_BYTE += add; |
88365 | 1186 make_gap (bytes); |
1187 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
|
1188 GPT -= gap_head_used, GPT_BYTE -= gap_head_used; |
88365 | 1189 } |
90292
697c08d95af7
Cancel incorrect synching with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90291
diff
changeset
|
1190 else |
88365 | 1191 { |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
1192 Lisp_Object this_buffer; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
1193 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
1194 this_buffer = Fcurrent_buffer (); |
88365 | 1195 set_buffer_internal (XBUFFER (coding->dst_object)); |
1196 make_gap (bytes); | |
1197 set_buffer_internal (XBUFFER (this_buffer)); | |
1198 } | |
1199 } | |
89483 | 1200 |
88365 | 1201 |
1202 static unsigned char * | |
1203 alloc_destination (coding, nbytes, dst) | |
1204 struct coding_system *coding; | |
89545
4f394eed6ff2
(inhibit_pre_post_conversion): Removed (unused).
Dave Love <fx@gnu.org>
parents:
89519
diff
changeset
|
1205 EMACS_INT nbytes; |
88365 | 1206 unsigned char *dst; |
1207 { | |
1208 EMACS_INT offset = dst - coding->destination; | |
1209 | |
1210 if (BUFFERP (coding->dst_object)) | |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1211 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1212 struct buffer *buf = XBUFFER (coding->dst_object); |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1213 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1214 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
|
1215 } |
88365 | 1216 else |
1217 coding_alloc_by_realloc (coding, nbytes); | |
1218 coding_set_destination (coding); | |
1219 dst = coding->destination + offset; | |
1220 return dst; | |
1221 } | |
1222 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1223 /** Macros for annotations. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1224 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1225 /* 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
|
1226 format: |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1227 [ -LENGTH ANNOTATION_MASK NCHARS ... ] |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1228 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
|
1229 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
|
1230 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
|
1231 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1232 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
|
1233 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1234 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
|
1235 follows: |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1236 ... NBYTES METHOD [ COMPOSITION-COMPONENTS ... ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1237 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1238 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
|
1239 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
|
1240 composition. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1241 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1242 METHOD is one of enum composition_method. |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1243 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1244 Optionnal COMPOSITION-COMPONENTS are characters and composition |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1245 rules. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1246 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1247 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
|
1248 follows. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1249 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1250 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
|
1251 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
|
1252 produce_annotation. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1253 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1254 /* Maximum length of the header of annotation data. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1255 #define MAX_ANNOTATION_LENGTH 5 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1256 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1257 #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
|
1258 do { \ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1259 *(buf)++ = -(len); \ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1260 *(buf)++ = (mask); \ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1261 *(buf)++ = (nchars); \ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1262 coding->annotated = 1; \ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1263 } while (0); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1264 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1265 #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
|
1266 do { \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1267 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
|
1268 *buf++ = nbytes; \ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1269 *buf++ = method; \ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1270 } while (0) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1271 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1272 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1273 #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
|
1274 do { \ |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1275 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
|
1276 *buf++ = id; \ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1277 } while (0) |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1278 |
17052 | 1279 |
88365 | 1280 /*** 2. Emacs' internal format (emacs-utf-8) ***/ |
1281 | |
1282 | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
1283 |
17052 | 1284 |
88365 | 1285 /*** 3. UTF-8 ***/ |
1286 | |
1287 /* 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
|
1288 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
|
1289 return 0. */ |
88365 | 1290 |
1291 #define UTF_8_1_OCTET_P(c) ((c) < 0x80) | |
1292 #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80) | |
1293 #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0) | |
1294 #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0) | |
1295 #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0) | |
1296 #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8) | |
1297 | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1298 #define UTF_BOM 0xFEFF |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1299 #define UTF_8_BOM_1 0xEF |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1300 #define UTF_8_BOM_2 0xBB |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1301 #define UTF_8_BOM_3 0xBF |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1302 |
88365 | 1303 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1304 detect_coding_utf_8 (coding, detect_info) |
88365 | 1305 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1306 struct coding_detection_info *detect_info; |
88365 | 1307 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1308 const unsigned char *src = coding->source, *src_base; |
89483 | 1309 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 1310 int multibytep = coding->src_multibyte; |
1311 int consumed_chars = 0; | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1312 int bom_found = 0; |
88365 | 1313 int found = 0; |
1314 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1315 detect_info->checked |= CATEGORY_MASK_UTF_8; |
88365 | 1316 /* A coding system of this category is always ASCII compatible. */ |
1317 src += coding->head_ascii; | |
1318 | |
1319 while (1) | |
1320 { | |
1321 int c, c1, c2, c3, c4; | |
1322 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1323 src_base = src; |
88365 | 1324 ONE_MORE_BYTE (c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1325 if (c < 0 || UTF_8_1_OCTET_P (c)) |
88365 | 1326 continue; |
1327 ONE_MORE_BYTE (c1); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1328 if (c1 < 0 || ! UTF_8_EXTRA_OCTET_P (c1)) |
88365 | 1329 break; |
1330 if (UTF_8_2_OCTET_LEADING_P (c)) | |
1331 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1332 found = 1; |
88365 | 1333 continue; |
1334 } | |
1335 ONE_MORE_BYTE (c2); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1336 if (c2 < 0 || ! UTF_8_EXTRA_OCTET_P (c2)) |
88365 | 1337 break; |
1338 if (UTF_8_3_OCTET_LEADING_P (c)) | |
1339 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1340 found = 1; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1341 if (src_base == coding->source |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1342 && 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
|
1343 bom_found = 1; |
88365 | 1344 continue; |
1345 } | |
1346 ONE_MORE_BYTE (c3); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1347 if (c3 < 0 || ! UTF_8_EXTRA_OCTET_P (c3)) |
88365 | 1348 break; |
1349 if (UTF_8_4_OCTET_LEADING_P (c)) | |
1350 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1351 found = 1; |
88365 | 1352 continue; |
1353 } | |
1354 ONE_MORE_BYTE (c4); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1355 if (c4 < 0 || ! UTF_8_EXTRA_OCTET_P (c4)) |
88365 | 1356 break; |
1357 if (UTF_8_5_OCTET_LEADING_P (c)) | |
1358 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1359 found = 1; |
88365 | 1360 continue; |
1361 } | |
1362 break; | |
1363 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1364 detect_info->rejected |= CATEGORY_MASK_UTF_8; |
88365 | 1365 return 0; |
1366 | |
1367 no_more_source: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1368 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
|
1369 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1370 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
|
1371 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1372 } |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1373 if (bom_found) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1374 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1375 /* 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
|
1376 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
|
1377 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1378 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1379 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1380 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
|
1381 if (found) |
a3f2a5a4b492
(detect_coding_utf_8): Set detect_info->found only when
Kenichi Handa <handa@m17n.org>
parents:
95585
diff
changeset
|
1382 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
|
1383 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1384 return 1; |
88365 | 1385 } |
1386 | |
1387 | |
1388 static void | |
1389 decode_coding_utf_8 (coding) | |
1390 struct coding_system *coding; | |
1391 { | |
89483 | 1392 const unsigned char *src = coding->source + coding->consumed; |
1393 const unsigned char *src_end = coding->source + coding->src_bytes; | |
1394 const unsigned char *src_base; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1395 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
|
1396 int *charbuf_end = coding->charbuf + coding->charbuf_size; |
100133
bca35d7cb3ac
(decode_coding_utf_8): Likewise.
Kenichi Handa <handa@m17n.org>
parents:
100131
diff
changeset
|
1397 int consumed_chars = 0, consumed_chars_base = 0; |
88365 | 1398 int multibytep = coding->src_multibyte; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1399 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
|
1400 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
|
1401 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
|
1402 !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
|
1403 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
|
1404 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1405 CODING_GET_INFO (coding, attr, charset_list); |
88365 | 1406 |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1407 if (bom != utf_without_bom) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1408 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1409 int c1, c2, c3; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1410 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1411 src_base = src; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1412 ONE_MORE_BYTE (c1); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1413 if (! UTF_8_3_OCTET_LEADING_P (c1)) |
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 { |
99074
10cd979d05ca
(make_conversion_work_buffer): Check that Vcode_conversion_reused_workbuf
Noah Friedman <friedman@splode.com>
parents:
98992
diff
changeset
|
1417 ONE_MORE_BYTE (c2); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1418 if (! UTF_8_EXTRA_OCTET_P (c2)) |
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 { |
99074
10cd979d05ca
(make_conversion_work_buffer): Check that Vcode_conversion_reused_workbuf
Noah Friedman <friedman@splode.com>
parents:
98992
diff
changeset
|
1422 ONE_MORE_BYTE (c3); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1423 if (! UTF_8_EXTRA_OCTET_P (c3)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1424 src = src_base; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1425 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1426 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1427 if ((c1 != UTF_8_BOM_1) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1428 || (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
|
1429 src = src_base; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1430 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1431 CODING_UTF_8_BOM (coding) = utf_without_bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1432 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1433 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1434 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1435 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1436 CODING_UTF_8_BOM (coding) = utf_without_bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1437 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1438 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1439 |
88365 | 1440 while (1) |
1441 { | |
1442 int c, c1, c2, c3, c4, c5; | |
1443 | |
1444 src_base = src; | |
1445 consumed_chars_base = consumed_chars; | |
1446 | |
1447 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
|
1448 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1449 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
|
1450 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1451 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1452 } |
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 (byte_after_cr >= 0) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1455 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
|
1456 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1457 ONE_MORE_BYTE (c1); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1458 if (c1 < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1459 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1460 c = - c1; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1461 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1462 else if (UTF_8_1_OCTET_P(c1)) |
88365 | 1463 { |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1464 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
|
1465 ONE_MORE_BYTE (byte_after_cr); |
88365 | 1466 c = c1; |
1467 } | |
1468 else | |
1469 { | |
1470 ONE_MORE_BYTE (c2); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1471 if (c2 < 0 || ! UTF_8_EXTRA_OCTET_P (c2)) |
88365 | 1472 goto invalid_code; |
1473 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
|
1474 { |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1475 c = ((c1 & 0x1F) << 6) | (c2 & 0x3F); |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1476 /* Reject overlong sequences here and below. Encoders |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1477 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
|
1478 and they mess up read/write invariance. */ |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1479 if (c < 128) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1480 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1481 } |
88365 | 1482 else |
1483 { | |
1484 ONE_MORE_BYTE (c3); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1485 if (c3 < 0 || ! UTF_8_EXTRA_OCTET_P (c3)) |
88365 | 1486 goto invalid_code; |
1487 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
|
1488 { |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1489 c = (((c1 & 0xF) << 12) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1490 | ((c2 & 0x3F) << 6) | (c3 & 0x3F)); |
89184
88a9e962e183
(decode_coding_utf_8): Treat surrogates as invalid.
Dave Love <fx@gnu.org>
parents:
89042
diff
changeset
|
1491 if (c < 0x800 |
88a9e962e183
(decode_coding_utf_8): Treat surrogates as invalid.
Dave Love <fx@gnu.org>
parents:
89042
diff
changeset
|
1492 || (c >= 0xd800 && c < 0xe000)) /* surrogates (invalid) */ |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1493 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1494 } |
88365 | 1495 else |
1496 { | |
1497 ONE_MORE_BYTE (c4); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1498 if (c4 < 0 || ! UTF_8_EXTRA_OCTET_P (c4)) |
88365 | 1499 goto invalid_code; |
1500 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
|
1501 { |
88365 | 1502 c = (((c1 & 0x7) << 18) | ((c2 & 0x3F) << 12) |
1503 | ((c3 & 0x3F) << 6) | (c4 & 0x3F)); | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1504 if (c < 0x10000) |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1505 goto invalid_code; |
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1506 } |
88365 | 1507 else |
1508 { | |
1509 ONE_MORE_BYTE (c5); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1510 if (c5 < 0 || ! UTF_8_EXTRA_OCTET_P (c5)) |
88365 | 1511 goto invalid_code; |
1512 if (UTF_8_5_OCTET_LEADING_P (c1)) | |
1513 { | |
1514 c = (((c1 & 0x3) << 24) | ((c2 & 0x3F) << 18) | |
1515 | ((c3 & 0x3F) << 12) | ((c4 & 0x3F) << 6) | |
1516 | (c5 & 0x3F)); | |
88669
0bc5868f9f61
(decode_coding_utf_8): Reject overlong sequences.
Dave Love <fx@gnu.org>
parents:
88646
diff
changeset
|
1517 if ((c > MAX_CHAR) || (c < 0x200000)) |
88365 | 1518 goto invalid_code; |
1519 } | |
1520 else | |
1521 goto invalid_code; | |
1522 } | |
1523 } | |
1524 } | |
1525 } | |
1526 | |
1527 *charbuf++ = c; | |
1528 continue; | |
1529 | |
1530 invalid_code: | |
1531 src = src_base; | |
1532 consumed_chars = consumed_chars_base; | |
1533 ONE_MORE_BYTE (c); | |
1534 *charbuf++ = ASCII_BYTE_P (c) ? c : BYTE8_TO_CHAR (c); | |
1535 coding->errors++; | |
1536 } | |
1537 | |
1538 no_more_source: | |
1539 coding->consumed_char += consumed_chars_base; | |
1540 coding->consumed = src_base - coding->source; | |
1541 coding->charbuf_used = charbuf - coding->charbuf; | |
1542 } | |
1543 | |
1544 | |
1545 static int | |
1546 encode_coding_utf_8 (coding) | |
1547 struct coding_system *coding; | |
1548 { | |
1549 int multibytep = coding->dst_multibyte; | |
1550 int *charbuf = coding->charbuf; | |
1551 int *charbuf_end = charbuf + coding->charbuf_used; | |
1552 unsigned char *dst = coding->destination + coding->produced; | |
1553 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
|
1554 int produced_chars = 0; |
88365 | 1555 int c; |
1556 | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1557 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
|
1558 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1559 ASSURE_DESTINATION (3); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1560 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
|
1561 CODING_UTF_8_BOM (coding) = utf_without_bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1562 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1563 |
88365 | 1564 if (multibytep) |
1565 { | |
1566 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
1567 | |
1568 while (charbuf < charbuf_end) | |
1569 { | |
1570 unsigned char str[MAX_MULTIBYTE_LENGTH], *p, *pend = str; | |
89483 | 1571 |
88365 | 1572 ASSURE_DESTINATION (safe_room); |
1573 c = *charbuf++; | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1574 if (CHAR_BYTE8_P (c)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1575 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1576 c = CHAR_TO_BYTE8 (c); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1577 EMIT_ONE_BYTE (c); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1578 } |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1579 else |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1580 { |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1581 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
|
1582 for (p = str; p < pend; p++) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1583 EMIT_ONE_BYTE (*p); |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
1584 } |
88365 | 1585 } |
1586 } | |
1587 else | |
1588 { | |
1589 int safe_room = MAX_MULTIBYTE_LENGTH; | |
1590 | |
1591 while (charbuf < charbuf_end) | |
1592 { | |
1593 ASSURE_DESTINATION (safe_room); | |
1594 c = *charbuf++; | |
89917
1763eef5ad02
(encode_coding_utf_8): Fix handling of raw-byte char.
Kenichi Handa <handa@m17n.org>
parents:
89905
diff
changeset
|
1595 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
|
1596 *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
|
1597 else |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
1598 CHAR_STRING_ADVANCE_NO_UNIFY (c, dst); |
88365 | 1599 produced_chars++; |
1600 } | |
1601 } | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1602 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 1603 coding->produced_char += produced_chars; |
1604 coding->produced = dst - coding->destination; | |
1605 return 0; | |
1606 } | |
1607 | |
1608 | |
1609 /* 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
|
1610 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
|
1611 If it is, return 1, else return 0. */ |
88365 | 1612 |
1613 #define UTF_16_HIGH_SURROGATE_P(val) \ | |
1614 (((val) & 0xFC00) == 0xD800) | |
1615 | |
1616 #define UTF_16_LOW_SURROGATE_P(val) \ | |
1617 (((val) & 0xFC00) == 0xDC00) | |
1618 | |
1619 #define UTF_16_INVALID_P(val) \ | |
1620 (((val) == 0xFFFE) \ | |
1621 || ((val) == 0xFFFF) \ | |
1622 || UTF_16_LOW_SURROGATE_P (val)) | |
1623 | |
1624 | |
1625 static int | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1626 detect_coding_utf_16 (coding, detect_info) |
88365 | 1627 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1628 struct coding_detection_info *detect_info; |
88365 | 1629 { |
89483 | 1630 const unsigned char *src = coding->source, *src_base = src; |
1631 const unsigned char *src_end = coding->source + coding->src_bytes; | |
88365 | 1632 int multibytep = coding->src_multibyte; |
1633 int consumed_chars = 0; | |
1634 int c1, c2; | |
1635 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1636 detect_info->checked |= CATEGORY_MASK_UTF_16; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1637 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
|
1638 && (coding->src_chars & 1)) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1639 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1640 detect_info->rejected |= CATEGORY_MASK_UTF_16; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1641 return 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1642 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1643 |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1644 TWO_MORE_BYTES (c1, c2); |
88365 | 1645 if ((c1 == 0xFF) && (c2 == 0xFE)) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1646 { |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1647 detect_info->found |= (CATEGORY_MASK_UTF_16_LE |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1648 | 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
|
1649 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
|
1650 | 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
|
1651 | CATEGORY_MASK_UTF_16_LE_NOSIG); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1652 } |
88365 | 1653 else if ((c1 == 0xFE) && (c2 == 0xFF)) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1654 { |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1655 detect_info->found |= (CATEGORY_MASK_UTF_16_BE |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1656 | 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
|
1657 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
|
1658 | 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
|
1659 | 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
|
1660 } |
101174 | 1661 else if (c2 < 0) |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1662 { |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1663 detect_info->rejected |= CATEGORY_MASK_UTF_16; |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1664 return 0; |
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1665 } |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1666 else |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1667 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1668 /* 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
|
1669 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
|
1670 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
|
1671 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
|
1672 |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1673 memset (e, 0, 256); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1674 memset (o, 0, 256); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1675 e[c1] = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1676 o[c2] = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1677 |
103442
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1678 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
|
1679 |CATEGORY_MASK_UTF_16_BE |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1680 | CATEGORY_MASK_UTF_16_LE); |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1681 |
103448
73e7271dee09
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103442
diff
changeset
|
1682 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
|
1683 != CATEGORY_MASK_UTF_16) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1684 { |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1685 TWO_MORE_BYTES (c1, c2); |
101174 | 1686 if (c2 < 0) |
101172
674e67257137
(TWO_MORE_BYTES): New macro.
Kenichi Handa <handa@m17n.org>
parents:
101040
diff
changeset
|
1687 break; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1688 if (! e[c1]) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1689 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1690 e[c1] = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1691 e_num++; |
103442
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1692 if (e_num >= 128) |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1693 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
|
1694 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1695 if (! o[c2]) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1696 { |
103435
45564d023acc
(detect_coding_utf_16): Fix typo counting odd bytes.
Andreas Schwab <schwab@linux-m68k.org>
parents:
103306
diff
changeset
|
1697 o[c2] = 1; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1698 o_num++; |
103442
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1699 if (o_num >= 128) |
db4ec1a977bd
(detect_coding_utf_16): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
103441
diff
changeset
|
1700 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
|
1701 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1702 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1703 return 0; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1704 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
1705 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
1706 no_more_source: |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
1707 return 1; |
88365 | 1708 } |
1709 | |
1710 static void | |
1711 decode_coding_utf_16 (coding) | |
1712 struct coding_system *coding; | |
1713 { | |
89483 | 1714 const unsigned char *src = coding->source + coding->consumed; |
1715 const unsigned char *src_end = coding->source + coding->src_bytes; | |
1716 const unsigned char *src_base; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
1717 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
|
1718 /* 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
|
1719 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
|
1720 int consumed_chars = 0, consumed_chars_base = 0; |
88365 | 1721 int multibytep = coding->src_multibyte; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1722 enum utf_bom_type bom = CODING_UTF_16_BOM (coding); |
88365 | 1723 enum utf_16_endian_type endian = CODING_UTF_16_ENDIAN (coding); |
1724 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
|
1725 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
|
1726 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
|
1727 !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
|
1728 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
|
1729 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1730 CODING_GET_INFO (coding, attr, charset_list); |
88365 | 1731 |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1732 if (bom == utf_with_bom) |
88365 | 1733 { |
1734 int c, c1, c2; | |
1735 | |
1736 src_base = src; | |
1737 ONE_MORE_BYTE (c1); | |
1738 ONE_MORE_BYTE (c2); | |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
1739 c = (c1 << 8) | c2; |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1740 |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1741 if (endian == utf_16_big_endian |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1742 ? c != 0xFEFF : c != 0xFFFE) |
88365 | 1743 { |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1744 /* 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
|
1745 for a normal character. */ |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1746 src = src_base; |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1747 coding->errors++; |
88365 | 1748 } |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1749 CODING_UTF_16_BOM (coding) = utf_without_bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1750 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1751 else if (bom == utf_detect_bom) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1752 { |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
1753 /* 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
|
1754 detect_coding. */ |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1755 CODING_UTF_16_BOM (coding) = utf_without_bom; |
88365 | 1756 } |
1757 | |
1758 while (1) | |
1759 { | |
1760 int c, c1, c2; | |
1761 | |
1762 src_base = src; | |
1763 consumed_chars_base = consumed_chars; | |
1764 | |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
1765 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
|
1766 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1767 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
|
1768 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
|
1769 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
1770 } |
88365 | 1771 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1772 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
|
1773 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
|
1774 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1775 ONE_MORE_BYTE (c1); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1776 if (c1 < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1777 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1778 *charbuf++ = -c1; |
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 } |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1781 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
|
1782 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
|
1783 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1784 ONE_MORE_BYTE (c2); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1785 if (c2 < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1786 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1787 *charbuf++ = ASCII_BYTE_P (c1) ? c1 : BYTE8_TO_CHAR (c1); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1788 *charbuf++ = -c2; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1789 continue; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1790 } |
88365 | 1791 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
|
1792 ? ((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
|
1793 |
88365 | 1794 if (surrogate) |
1795 { | |
1796 if (! UTF_16_LOW_SURROGATE_P (c)) | |
1797 { | |
1798 if (endian == utf_16_big_endian) | |
1799 c1 = surrogate >> 8, c2 = surrogate & 0xFF; | |
1800 else | |
1801 c1 = surrogate & 0xFF, c2 = surrogate >> 8; | |
1802 *charbuf++ = c1; | |
1803 *charbuf++ = c2; | |
1804 coding->errors++; | |
1805 if (UTF_16_HIGH_SURROGATE_P (c)) | |
1806 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
1807 else | |
1808 *charbuf++ = c; | |
1809 } | |
1810 else | |
1811 { | |
1812 c = ((surrogate - 0xD800) << 10) | (c - 0xDC00); | |
1813 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
|
1814 *charbuf++ = 0x10000 + c; |
88365 | 1815 } |
1816 } | |
1817 else | |
1818 { | |
1819 if (UTF_16_HIGH_SURROGATE_P (c)) | |
1820 CODING_UTF_16_SURROGATE (coding) = surrogate = c; | |
1821 else | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1822 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1823 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
|
1824 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1825 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
|
1826 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
|
1827 } |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1828 *charbuf++ = c; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
1829 } |
89483 | 1830 } |
88365 | 1831 } |
1832 | |
1833 no_more_source: | |
1834 coding->consumed_char += consumed_chars_base; | |
1835 coding->consumed = src_base - coding->source; | |
1836 coding->charbuf_used = charbuf - coding->charbuf; | |
1837 } | |
1838 | |
1839 static int | |
1840 encode_coding_utf_16 (coding) | |
1841 struct coding_system *coding; | |
1842 { | |
1843 int multibytep = coding->dst_multibyte; | |
1844 int *charbuf = coding->charbuf; | |
1845 int *charbuf_end = charbuf + coding->charbuf_used; | |
1846 unsigned char *dst = coding->destination + coding->produced; | |
1847 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
1848 int safe_room = 8; | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1849 enum utf_bom_type bom = CODING_UTF_16_BOM (coding); |
88365 | 1850 int big_endian = CODING_UTF_16_ENDIAN (coding) == utf_16_big_endian; |
1851 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1852 Lisp_Object attrs, charset_list; |
88365 | 1853 int c; |
1854 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
1855 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 1856 |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1857 if (bom != utf_without_bom) |
88365 | 1858 { |
1859 ASSURE_DESTINATION (safe_room); | |
1860 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
|
1861 EMIT_TWO_BYTES (0xFE, 0xFF); |
88365 | 1862 else |
89404
3e1d187b52c3
(Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
Kenichi Handa <handa@m17n.org>
parents:
89394
diff
changeset
|
1863 EMIT_TWO_BYTES (0xFF, 0xFE); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
1864 CODING_UTF_16_BOM (coding) = utf_without_bom; |
88365 | 1865 } |
1866 | |
1867 while (charbuf < charbuf_end) | |
1868 { | |
1869 ASSURE_DESTINATION (safe_room); | |
1870 c = *charbuf++; | |
104636
bc74846b9a54
(encode_coding_utf_16): Fix checking of an Unicode character.
Kenichi Handa <handa@m17n.org>
parents:
103762
diff
changeset
|
1871 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
|
1872 c = coding->default_char; |
88365 | 1873 |
1874 if (c < 0x10000) | |
1875 { | |
1876 if (big_endian) | |
1877 EMIT_TWO_BYTES (c >> 8, c & 0xFF); | |
1878 else | |
1879 EMIT_TWO_BYTES (c & 0xFF, c >> 8); | |
1880 } | |
1881 else | |
1882 { | |
1883 int c1, c2; | |
1884 | |
1885 c -= 0x10000; | |
1886 c1 = (c >> 10) + 0xD800; | |
1887 c2 = (c & 0x3FF) + 0xDC00; | |
1888 if (big_endian) | |
1889 EMIT_FOUR_BYTES (c1 >> 8, c1 & 0xFF, c2 >> 8, c2 & 0xFF); | |
1890 else | |
1891 EMIT_FOUR_BYTES (c1 & 0xFF, c1 >> 8, c2 & 0xFF, c2 >> 8); | |
1892 } | |
1893 } | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
1894 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 1895 coding->produced = dst - coding->destination; |
1896 coding->produced_char += produced_chars; | |
1897 return 0; | |
1898 } | |
1899 | |
1900 | |
1901 /*** 6. Old Emacs' internal format (emacs-mule) ***/ | |
17052 | 1902 |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1903 /* Emacs' internal format for representation of multiple character |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1904 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
|
1905 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
|
1906 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1907 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
|
1908 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
|
1909 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
|
1910 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1911 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
|
1912 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
|
1913 code + 0x20). |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1914 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1915 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
|
1916 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
|
1917 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1918 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
|
1919 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
|
1920 `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
|
1921 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
|
1922 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
|
1923 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
|
1924 and position-code. |
18766 | 1925 |
17052 | 1926 --- 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
|
1927 character set range |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1928 ------------- ----- |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1929 ascii 0x00..0x7F |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
1930 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
|
1931 eight-bit-graphic 0xA0..0xBF |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1932 ELSE 0x81..0x9D + [0xA0..0xFF]+ |
17052 | 1933 --------------------------------------------- |
1934 | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1935 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
|
1936 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
|
1937 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
|
1938 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
|
1939 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1940 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
|
1941 form. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1942 |
88365 | 1943 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
|
1944 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
|
1945 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1946 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
|
1947 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
|
1948 where, |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1949 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
|
1950 composition_method), |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1951 |
88365 | 1952 BYTES is 0xA0 plus a byte length of this composition data, |
1953 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1954 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
|
1955 data, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1956 |
88365 | 1957 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
|
1958 rules encoded by two-byte of ASCII codes. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1959 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1960 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
|
1961 also recognized as composition data on decoding. |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1962 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1963 0x80 MSEQ ... |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1964 0x80 0xFF MSEQ RULE MSEQ RULE ... MSEQ |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1965 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1966 Here, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1967 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
|
1968 ASCII: 0xA0 ASCII_CODE+0x80, |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1969 other: LEADING_CODE+0x20 FOLLOWING-BYTE ..., |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
1970 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
|
1971 represents a composition rule. |
17052 | 1972 */ |
1973 | |
88365 | 1974 char emacs_mule_bytes[256]; |
1975 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1976 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1977 /* 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
|
1978 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
|
1979 else return 0. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1980 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1981 static int |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1982 detect_coding_emacs_mule (coding, detect_info) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1983 struct coding_system *coding; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1984 struct coding_detection_info *detect_info; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1985 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1986 const unsigned char *src = coding->source, *src_base; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1987 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
|
1988 int multibytep = coding->src_multibyte; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1989 int consumed_chars = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1990 int c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1991 int found = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1992 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1993 detect_info->checked |= CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1994 /* 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
|
1995 src += coding->head_ascii; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1996 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1997 while (1) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1998 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
1999 src_base = src; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2000 ONE_MORE_BYTE (c); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2001 if (c < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2002 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2003 if (c == 0x80) |
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 /* 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
|
2006 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
|
2007 at least, we check that the composite character |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2008 constitutes of more than 4 bytes. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2009 const unsigned char *src_base; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2010 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2011 repeat: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2012 src_base = src; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2013 do |
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 ONE_MORE_BYTE (c); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2016 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2017 while (c >= 0xA0); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2018 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2019 if (src - src_base <= 4) |
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 found = CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2022 if (c == 0x80) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2023 goto repeat; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2024 } |
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 if (c < 0x80) |
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 if (c < 0x20 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2029 && (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
|
2030 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2031 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2032 else |
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 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
|
2035 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2036 while (more_bytes > 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2037 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2038 ONE_MORE_BYTE (c); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2039 if (c < 0xA0) |
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 src--; /* Unread the last byte. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2042 break; |
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 more_bytes--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2045 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2046 if (more_bytes != 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2047 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2048 found = CATEGORY_MASK_EMACS_MULE; |
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 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2051 detect_info->rejected |= CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2052 return 0; |
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 no_more_source: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2055 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
|
2056 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2057 detect_info->rejected |= CATEGORY_MASK_EMACS_MULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2058 return 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2059 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2060 detect_info->found |= found; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2061 return 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2062 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2063 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2064 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2065 /* 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
|
2066 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
|
2067 RULE described above, decode it and return the negative value of |
107323
ebc10ed88b5c
(emacs_mule_char): Fix a typo in commentary.
Eli Zaretskii <eliz@gnu.org>
parents:
107321
diff
changeset
|
2068 the decoded character or rule. If an invalid byte is found, return |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2069 -1. If SRC is too short, return -2. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2070 |
88365 | 2071 int |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2072 emacs_mule_char (coding, src, nbytes, nchars, id, cmp_status) |
88365 | 2073 struct coding_system *coding; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2074 const unsigned char *src; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2075 int *nbytes, *nchars, *id; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2076 struct composition_status *cmp_status; |
88365 | 2077 { |
89483 | 2078 const unsigned char *src_end = coding->source + coding->src_bytes; |
2079 const unsigned char *src_base = src; | |
88365 | 2080 int multibytep = coding->src_multibyte; |
2081 struct charset *charset; | |
2082 unsigned code; | |
2083 int c; | |
2084 int consumed_chars = 0; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2085 int mseq_found = 0; |
88365 | 2086 |
2087 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2088 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2089 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2090 c = -c; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2091 charset = emacs_mule_charset[0]; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2092 } |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2093 else |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2094 { |
90354
450fb16a4bf4
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90350
diff
changeset
|
2095 if (c >= 0xA0) |
450fb16a4bf4
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90350
diff
changeset
|
2096 { |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2097 if (cmp_status->state != COMPOSING_NO |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2098 && 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
|
2099 { |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2100 if (cmp_status->state == COMPOSING_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2101 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2102 if (c == 0xA0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2103 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2104 ONE_MORE_BYTE (c); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2105 c -= 0x80; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2106 if (c < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2107 goto invalid_code; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2108 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2109 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2110 c -= 0x20; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2111 mseq_found = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2112 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2113 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2114 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2115 *nbytes = src - src_base; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2116 *nchars = consumed_chars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2117 return -c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2118 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2119 } |
17052 | 2120 else |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2121 goto invalid_code; |
17052 | 2122 } |
2123 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2124 switch (emacs_mule_bytes[c]) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2125 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2126 case 2: |
88365 | 2127 if (! (charset = emacs_mule_charset[c])) |
2128 goto invalid_code; | |
2129 ONE_MORE_BYTE (c); | |
17052 | 2130 if (c < 0xA0) |
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 code = c & 0x7F; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2133 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2134 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2135 case 3: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2136 if (c == EMACS_MULE_LEADING_CODE_PRIVATE_11 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2137 || 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
|
2138 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2139 ONE_MORE_BYTE (c); |
89892 | 2140 if (c < 0xA0 || ! (charset = emacs_mule_charset[c])) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2141 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2142 ONE_MORE_BYTE (c); |
89892 | 2143 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2144 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2145 code = c & 0x7F; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2146 } |
26847 | 2147 else |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2148 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2149 if (! (charset = emacs_mule_charset[c])) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2150 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2151 ONE_MORE_BYTE (c); |
89892 | 2152 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2153 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2154 code = (c & 0x7F) << 8; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2155 ONE_MORE_BYTE (c); |
89892 | 2156 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2157 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2158 code |= c & 0x7F; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2159 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2160 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2161 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2162 case 4: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2163 ONE_MORE_BYTE (c); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2164 if (c < 0 || ! (charset = emacs_mule_charset[c])) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2165 goto invalid_code; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2166 ONE_MORE_BYTE (c); |
89892 | 2167 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2168 goto invalid_code; |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2169 code = (c & 0x7F) << 8; |
88365 | 2170 ONE_MORE_BYTE (c); |
89892 | 2171 if (c < 0xA0) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2172 goto invalid_code; |
88365 | 2173 code |= c & 0x7F; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2174 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2175 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2176 case 1: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2177 code = c; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2178 charset = CHARSET_FROM_ID (ASCII_BYTE_P (code) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2179 ? charset_ascii : charset_eight_bit); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2180 break; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2181 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2182 default: |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2183 abort (); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2184 } |
107321
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2185 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, code, c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2186 if (c < 0) |
88365 | 2187 goto invalid_code; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2188 } |
88365 | 2189 *nbytes = src - src_base; |
2190 *nchars = consumed_chars; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2191 if (id) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2192 *id = charset->id; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2193 return (mseq_found ? -c : c); |
88365 | 2194 |
2195 no_more_source: | |
2196 return -2; | |
2197 | |
2198 invalid_code: | |
2199 return -1; | |
2200 } | |
2201 | |
17052 | 2202 |
88365 | 2203 /* 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
|
2204 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2205 /* 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
|
2206 BYTES and CHARS >= 0xA0): |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2207 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2208 (1) relative composition: 0x80 0xF2 BYTES CHARS | CHAR ... |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2209 (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
|
2210 (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
|
2211 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2212 and these old form: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2213 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2214 (4) relative composition: 0x80 | MSEQ ... MSEQ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2215 (5) rulebase composition: 0x80 0xFF | MSEQ MRULE ... MSEQ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2216 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2217 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
|
2218 this annotation header is produced. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2219 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2220 [ -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
|
2221 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2222 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
|
2223 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
|
2224 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2225 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
|
2226 until the composition end is found: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2227 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2228 (1) CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2229 (2) ALT ... ALT CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2230 (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
|
2231 (4) CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2232 (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
|
2233 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2234 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
|
2235 annotation header is updated as 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) LENGTH: unchanged, NCHARS: unchanged |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2238 (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
|
2239 (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
|
2240 (4) LENGTH: unchanged, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2241 (5) LENGTH: unchanged, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2242 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2243 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
|
2244 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
|
2245 below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2246 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2247 (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
|
2248 (5) [ 0x80 0xFF -1 -1- -1 ] |
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 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
|
2251 byte sequence as below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2252 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
|
2253 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
|
2254 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2255 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
|
2256 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
|
2257 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
|
2258 increase the size of compiled object). */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2259 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2260 /* 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
|
2261 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
|
2262 rule. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2263 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2264 #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
|
2265 do { \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2266 int gref, nref; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2267 \ |
90354
450fb16a4bf4
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90350
diff
changeset
|
2268 c -= 0xA0; \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2269 if (c < 0 || c >= 81) \ |
88365 | 2270 goto invalid_code; \ |
2271 gref = c / 9, nref = c % 9; \ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2272 if (gref == 4) gref = 10; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2273 if (nref == 4) nref = 10; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2274 rule = COMPOSITION_ENCODE_RULE (gref, nref); \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2275 } while (0) |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2276 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2277 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2278 /* 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
|
2279 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
|
2280 Set RULE to the decoded rule. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2281 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2282 #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
|
2283 do { \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2284 int gref, nref; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2285 \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2286 gref = c - 0x20; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2287 if (gref < 0 || gref >= 81) \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2288 goto invalid_code; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2289 ONE_MORE_BYTE (c); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2290 nref = c - 0x20; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2291 if (nref < 0 || nref >= 81) \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2292 goto invalid_code; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2293 rule = COMPOSITION_ENCODE_RULE (gref, nref); \ |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2294 } while (0) |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2295 |
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2296 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2297 /* 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
|
2298 (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
|
2299 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
|
2300 characters composed by this composition. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2301 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2302 #define DECODE_EMACS_MULE_21_COMPOSITION() \ |
88365 | 2303 do { \ |
88585
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2304 enum composition_method method = c - 0xF2; \ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
2305 int *charbuf_base = charbuf; \ |
88365 | 2306 int nbytes, nchars; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2307 \ |
88365 | 2308 ONE_MORE_BYTE (c); \ |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2309 if (c < 0) \ |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2310 goto invalid_code; \ |
88365 | 2311 nbytes = c - 0xA0; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2312 if (nbytes < 3 || (method == COMPOSITION_RELATIVE && nbytes != 4)) \ |
88365 | 2313 goto invalid_code; \ |
2314 ONE_MORE_BYTE (c); \ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2315 nchars = c - 0xA0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2316 if (nchars <= 0 || nchars >= MAX_COMPOSITION_COMPONENTS) \ |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2317 goto invalid_code; \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2318 cmp_status->old_form = 0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2319 cmp_status->method = method; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2320 if (method == COMPOSITION_RELATIVE) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2321 cmp_status->state = COMPOSING_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2322 else \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2323 cmp_status->state = COMPOSING_COMPONENT_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2324 cmp_status->length = MAX_ANNOTATION_LENGTH; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2325 cmp_status->nchars = nchars; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2326 cmp_status->ncomps = nbytes - 4; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2327 ADD_COMPOSITION_DATA (charbuf, nchars, nbytes, method); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2328 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2329 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2330 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2331 /* 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
|
2332 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2333 #define DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION() \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2334 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2335 cmp_status->old_form = 1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2336 cmp_status->method = COMPOSITION_RELATIVE; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2337 cmp_status->state = COMPOSING_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2338 cmp_status->length = MAX_ANNOTATION_LENGTH; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2339 cmp_status->nchars = cmp_status->ncomps = 0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2340 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
|
2341 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2342 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2343 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2344 /* 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
|
2345 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2346 #define DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION() \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2347 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2348 cmp_status->old_form = 1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2349 cmp_status->method = COMPOSITION_WITH_RULE; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2350 cmp_status->state = COMPOSING_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2351 cmp_status->length = MAX_ANNOTATION_LENGTH; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2352 cmp_status->nchars = cmp_status->ncomps = 0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2353 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
|
2354 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2355 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2356 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2357 #define DECODE_EMACS_MULE_COMPOSITION_START() \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2358 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2359 const unsigned char *current_src = src; \ |
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 ONE_MORE_BYTE (c); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2362 if (c < 0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2363 goto invalid_code; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2364 if (c - 0xF2 >= COMPOSITION_RELATIVE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2365 && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2366 DECODE_EMACS_MULE_21_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2367 else if (c < 0xA0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2368 goto invalid_code; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2369 else if (c < 0xC0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2370 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2371 DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2372 /* Re-read C as a composition component. */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2373 src = current_src; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2374 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2375 else if (c == 0xFF) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2376 DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2377 else \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2378 goto invalid_code; \ |
88365 | 2379 } while (0) |
2380 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2381 #define EMACS_MULE_COMPOSITION_END() \ |
88365 | 2382 do { \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2383 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
|
2384 \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2385 if (cmp_status->old_form) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2386 charbuf[idx + 2] = cmp_status->nchars; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2387 else if (cmp_status->method > COMPOSITION_RELATIVE) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2388 charbuf[idx] = charbuf[idx + 2] - cmp_status->length; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2389 cmp_status->state = COMPOSING_NO; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2390 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2391 |
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 static int |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2394 emacs_mule_finish_composition (charbuf, cmp_status) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2395 int *charbuf; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2396 struct composition_status *cmp_status; |
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 int idx = - cmp_status->length; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2399 int new_chars; |
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 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
|
2402 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2403 charbuf[idx + 2] = cmp_status->nchars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2404 new_chars = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2405 if (cmp_status->method == COMPOSITION_WITH_RULE |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2406 && cmp_status->state == COMPOSING_CHAR) |
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 /* The last rule was invalid. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2409 int rule = charbuf[-1] + 0xA0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2410 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2411 charbuf[-2] = BYTE8_TO_CHAR (rule); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2412 charbuf[-1] = -1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2413 new_chars = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2414 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2415 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2416 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2417 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2418 charbuf[idx++] = BYTE8_TO_CHAR (0x80); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2419 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2420 if (cmp_status->method == COMPOSITION_WITH_RULE) |
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 (0xFF); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2423 charbuf[idx++] = -3; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2424 charbuf[idx++] = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2425 new_chars = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2426 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2427 else |
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 int nchars = charbuf[idx + 1] + 0xA0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2430 int nbytes = charbuf[idx + 2] + 0xA0; |
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 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
|
2433 charbuf[idx++] = BYTE8_TO_CHAR (nbytes); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2434 charbuf[idx++] = BYTE8_TO_CHAR (nchars); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2435 charbuf[idx++] = -1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2436 new_chars = 4; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2437 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2438 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2439 cmp_status->state = COMPOSING_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2440 return new_chars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2441 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2442 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2443 #define EMACS_MULE_MAYBE_FINISH_COMPOSITION() \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2444 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2445 if (cmp_status->state != COMPOSING_NO) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2446 char_offset += emacs_mule_finish_composition (charbuf, cmp_status); \ |
88365 | 2447 } while (0) |
2448 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2449 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2450 static void |
88365 | 2451 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
|
2452 struct coding_system *coding; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2453 { |
89483 | 2454 const unsigned char *src = coding->source + coding->consumed; |
2455 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
|
2456 const unsigned char *src_base; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
2457 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
|
2458 /* 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
|
2459 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
|
2460 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
2461 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 3); |
88365 | 2462 int consumed_chars = 0, consumed_chars_base; |
2463 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
|
2464 Lisp_Object attrs, charset_list; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2465 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2466 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2467 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
|
2468 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
|
2469 !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
|
2470 int byte_after_cr = -1; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2471 struct composition_status *cmp_status = &coding->spec.emacs_mule.cmp_status; |
88365 | 2472 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
2473 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 2474 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2475 if (cmp_status->state != COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2476 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2477 int i; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2478 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2479 for (i = 0; i < cmp_status->length; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2480 *charbuf++ = cmp_status->carryover[i]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2481 coding->annotated = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2482 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2483 |
88365 | 2484 while (1) |
2485 { | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2486 int c, id; |
88365 | 2487 |
2488 src_base = src; | |
2489 consumed_chars_base = consumed_chars; | |
2490 | |
2491 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
|
2492 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
2493 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
|
2494 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
2495 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
2496 } |
88365 | 2497 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2498 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
|
2499 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
|
2500 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2501 ONE_MORE_BYTE (c); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2502 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2503 if (c < 0 || c == 0x80) |
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 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2506 if (c < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2507 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2508 *charbuf++ = -c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2509 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2510 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2511 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2512 DECODE_EMACS_MULE_COMPOSITION_START (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2513 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2514 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2515 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2516 if (c < 0x80) |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2517 { |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
2518 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
|
2519 ONE_MORE_BYTE (byte_after_cr); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2520 id = charset_ascii; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2521 if (cmp_status->state != COMPOSING_NO) |
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 if (cmp_status->old_form) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2524 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2525 else if (cmp_status->state >= COMPOSING_COMPONENT_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2526 cmp_status->ncomps--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2527 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2528 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2529 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2530 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2531 int nchars, nbytes; |
107321
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2532 /* emacs_mule_char can load a charset map from a file, which |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2533 allocates a large structure and might cause buffer text |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2534 to be relocated as result. Thus, we need to remember the |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2535 original pointer to buffer text, and fixup all related |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2536 pointers after the call. */ |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2537 const unsigned char *orig = coding->source; |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2538 EMACS_INT offset; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2539 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2540 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
|
2541 cmp_status); |
107321
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2542 offset = coding->source - orig; |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2543 if (offset) |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2544 { |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2545 src += offset; |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2546 src_base += offset; |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2547 src_end += offset; |
9b814b3ee348
Fix bug in decoding emacs-mule encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
107174
diff
changeset
|
2548 } |
88365 | 2549 if (c < 0) |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2550 { |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2551 if (c == -1) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2552 goto invalid_code; |
88365 | 2553 if (c == -2) |
2554 break; | |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2555 } |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2556 src = src_base + nbytes; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2557 consumed_chars = consumed_chars_base + nchars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2558 if (cmp_status->state >= COMPOSING_COMPONENT_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2559 cmp_status->ncomps -= nchars; |
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 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2562 /* 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
|
2563 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
|
2564 rule. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2565 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2566 if (cmp_status->state == COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2567 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2568 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
|
2569 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2570 if (last_id != charset_ascii) |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2571 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2572 last_id); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2573 last_id = id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2574 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
|
2575 } |
88365 | 2576 *charbuf++ = c; |
2577 char_offset++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2578 } |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2579 else if (cmp_status->state == COMPOSING_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2580 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2581 if (cmp_status->old_form) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2582 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2583 if (c >= 0) |
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 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2586 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2587 char_offset++; |
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 else |
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 *charbuf++ = -c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2592 cmp_status->nchars++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2593 cmp_status->length++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2594 if (cmp_status->nchars == MAX_COMPOSITION_COMPONENTS) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2595 EMACS_MULE_COMPOSITION_END (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2596 else if (cmp_status->method == COMPOSITION_WITH_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2597 cmp_status->state = COMPOSING_RULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2598 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2599 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2600 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2601 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2602 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2603 cmp_status->length++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2604 cmp_status->nchars--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2605 if (cmp_status->nchars == 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2606 EMACS_MULE_COMPOSITION_END (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2607 } |
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 else if (cmp_status->state == COMPOSING_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2610 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2611 int rule; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2612 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2613 if (c >= 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 EMACS_MULE_COMPOSITION_END (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2616 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2617 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2618 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2619 else |
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 c = -c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2622 DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c, rule); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2623 if (rule < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2624 goto invalid_code; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2625 *charbuf++ = -2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2626 *charbuf++ = rule; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2627 cmp_status->length += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2628 cmp_status->state = COMPOSING_CHAR; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2629 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2630 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2631 else if (cmp_status->state == COMPOSING_COMPONENT_CHAR) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2632 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2633 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2634 cmp_status->length++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2635 if (cmp_status->ncomps == 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2636 cmp_status->state = COMPOSING_CHAR; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2637 else if (cmp_status->ncomps > 0) |
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 if (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2640 cmp_status->state = COMPOSING_COMPONENT_RULE; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2641 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2642 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2643 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2644 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2645 else /* COMPOSING_COMPONENT_RULE */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2646 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2647 int rule; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2648 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2649 DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c, rule); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2650 if (rule < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2651 goto invalid_code; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2652 *charbuf++ = -2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2653 *charbuf++ = rule; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2654 cmp_status->length += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2655 cmp_status->ncomps--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2656 if (cmp_status->ncomps > 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2657 cmp_status->state = COMPOSING_COMPONENT_CHAR; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2658 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2659 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
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 continue; |
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 retry: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2664 src = src_base; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2665 consumed_chars = consumed_chars_base; |
88365 | 2666 continue; |
2667 | |
2668 invalid_code: | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2669 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
88365 | 2670 src = src_base; |
2671 consumed_chars = consumed_chars_base; | |
2672 ONE_MORE_BYTE (c); | |
2673 *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
|
2674 char_offset++; |
88365 | 2675 coding->errors++; |
2676 } | |
2677 | |
2678 no_more_source: | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2679 if (cmp_status->state != COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2680 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2681 if (coding->mode & CODING_MODE_LAST_BLOCK) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2682 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2683 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2684 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2685 int i; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2686 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2687 charbuf -= cmp_status->length; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2688 for (i = 0; i < cmp_status->length; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2689 cmp_status->carryover[i] = charbuf[i]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2690 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
2691 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2692 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
2693 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 2694 coding->consumed_char += consumed_chars_base; |
2695 coding->consumed = src_base - coding->source; | |
2696 coding->charbuf_used = charbuf - coding->charbuf; | |
2697 } | |
2698 | |
2699 | |
2700 #define EMACS_MULE_LEADING_CODES(id, codes) \ | |
2701 do { \ | |
2702 if (id < 0xA0) \ | |
2703 codes[0] = id, codes[1] = 0; \ | |
2704 else if (id < 0xE0) \ | |
2705 codes[0] = 0x9A, codes[1] = id; \ | |
2706 else if (id < 0xF0) \ | |
2707 codes[0] = 0x9B, codes[1] = id; \ | |
2708 else if (id < 0xF5) \ | |
2709 codes[0] = 0x9C, codes[1] = id; \ | |
2710 else \ | |
2711 codes[0] = 0x9D, codes[1] = id; \ | |
2712 } while (0); | |
2713 | |
2714 | |
2715 static int | |
2716 encode_coding_emacs_mule (coding) | |
2717 struct coding_system *coding; | |
2718 { | |
2719 int multibytep = coding->dst_multibyte; | |
2720 int *charbuf = coding->charbuf; | |
2721 int *charbuf_end = charbuf + coding->charbuf_used; | |
2722 unsigned char *dst = coding->destination + coding->produced; | |
2723 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
2724 int safe_room = 8; | |
2725 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
2726 Lisp_Object attrs, charset_list; |
88365 | 2727 int c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2728 int preferred_charset_id = -1; |
88365 | 2729 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
2730 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
|
2731 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
|
2732 { |
fc9cda144ffc
(encode_coding_emacs_mule): Resync charset_list to
Kenichi Handa <handa@m17n.org>
parents:
89642
diff
changeset
|
2733 CODING_ATTR_CHARSET_LIST (attrs) |
fc9cda144ffc
(encode_coding_emacs_mule): Resync charset_list to
Kenichi Handa <handa@m17n.org>
parents:
89642
diff
changeset
|
2734 = charset_list = Vemacs_mule_charset_list; |
fc9cda144ffc
(encode_coding_emacs_mule): Resync charset_list to
Kenichi Handa <handa@m17n.org>
parents:
89642
diff
changeset
|
2735 } |
88365 | 2736 |
2737 while (charbuf < charbuf_end) | |
2738 { | |
2739 ASSURE_DESTINATION (safe_room); | |
2740 c = *charbuf++; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2741 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2742 if (c < 0) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2743 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2744 /* Handle an annotation. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2745 switch (*charbuf) |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2746 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2747 case CODING_ANNOTATE_COMPOSITION_MASK: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2748 /* Not yet implemented. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2749 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2750 case CODING_ANNOTATE_CHARSET_MASK: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2751 preferred_charset_id = charbuf[3]; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2752 if (preferred_charset_id >= 0 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2753 && NILP (Fmemq (make_number (preferred_charset_id), |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2754 charset_list))) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2755 preferred_charset_id = -1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2756 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2757 default: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2758 abort (); |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2759 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2760 charbuf += -c - 1; |
32806
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2761 continue; |
9502d0a5b2ad
(decode_coding_emacs_mule): If coding->eol_type is CR
Eli Zaretskii <eliz@gnu.org>
parents:
32745
diff
changeset
|
2762 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2763 |
88365 | 2764 if (ASCII_CHAR_P (c)) |
2765 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
|
2766 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
|
2767 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
2768 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
|
2769 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
|
2770 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2771 else |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2772 { |
88365 | 2773 struct charset *charset; |
2774 unsigned code; | |
2775 int dimension; | |
2776 int emacs_mule_id; | |
2777 unsigned char leading_codes[2]; | |
2778 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2779 if (preferred_charset_id >= 0) |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2780 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2781 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
|
2782 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
|
2783 code = ENCODE_CHAR (charset, c); |
5706ca7c3d02
(encode_coding_emacs_mule): Be sure to set `code'.
Kenichi Handa <handa@m17n.org>
parents:
100170
diff
changeset
|
2784 else |
5706ca7c3d02
(encode_coding_emacs_mule): Be sure to set `code'.
Kenichi Handa <handa@m17n.org>
parents:
100170
diff
changeset
|
2785 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
|
2786 } |
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2787 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
2788 charset = char_charset (c, charset_list, &code); |
88365 | 2789 if (! charset) |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2790 { |
88365 | 2791 c = coding->default_char; |
2792 if (ASCII_CHAR_P (c)) | |
2793 { | |
2794 EMIT_ONE_ASCII_BYTE (c); | |
2795 continue; | |
2796 } | |
2797 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
|
2798 } |
88365 | 2799 dimension = CHARSET_DIMENSION (charset); |
2800 emacs_mule_id = CHARSET_EMACS_MULE_ID (charset); | |
2801 EMACS_MULE_LEADING_CODES (emacs_mule_id, leading_codes); | |
2802 EMIT_ONE_BYTE (leading_codes[0]); | |
2803 if (leading_codes[1]) | |
2804 EMIT_ONE_BYTE (leading_codes[1]); | |
2805 if (dimension == 1) | |
89642
e97441b6244b
(encode_coding_emacs_mule): Emit bytes with MSB.
Kenichi Handa <handa@m17n.org>
parents:
89575
diff
changeset
|
2806 EMIT_ONE_BYTE (code | 0x80); |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2807 else |
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2808 { |
89642
e97441b6244b
(encode_coding_emacs_mule): Emit bytes with MSB.
Kenichi Handa <handa@m17n.org>
parents:
89575
diff
changeset
|
2809 code |= 0x8080; |
88365 | 2810 EMIT_ONE_BYTE (code >> 8); |
2811 EMIT_ONE_BYTE (code & 0xFF); | |
54320
a7e59b39de35
(decode_coding_emacs_mule): Handle insufficent source correctly.
Kenichi Handa <handa@m17n.org>
parents:
54303
diff
changeset
|
2812 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2813 } |
88365 | 2814 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
2815 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 2816 coding->produced_char += produced_chars; |
2817 coding->produced = dst - coding->destination; | |
2818 return 0; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
2819 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2820 |
17052 | 2821 |
88365 | 2822 /*** 7. ISO2022 handlers ***/ |
17052 | 2823 |
2824 /* 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
|
2825 Since the intention of this note is to help understand the |
35053 | 2826 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
|
2827 SIMPLIFIED. For thorough understanding, please refer to the |
35053 | 2828 original document of ISO2022. This is equivalent to the standard |
2829 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*). | |
17052 | 2830 |
2831 ISO2022 provides many mechanisms to encode several character sets | |
35053 | 2832 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
|
2833 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
|
2834 text a little bit longer, but the text passes more easily through |
35053 | 2835 several types of gateway, some of which strip off the MSB (Most |
36087 | 2836 Significant Bit). |
35053 | 2837 |
2838 There are two kinds of character sets: control character sets and | |
2839 graphic character sets. The former contain control characters such | |
17052 | 2840 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
|
2841 functions are also provided by escape sequences). The latter |
35053 | 2842 contain graphic characters such as 'A' and '-'. Emacs recognizes |
17052 | 2843 two control character sets and many graphic character sets. |
2844 | |
2845 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
|
2846 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
|
2847 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
|
2848 - DIMENSION1_CHARS94 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2849 - DIMENSION1_CHARS96 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2850 - DIMENSION2_CHARS94 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2851 - DIMENSION2_CHARS96 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2852 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2853 In addition, each character set is assigned an identification tag, |
35053 | 2854 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
|
2855 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
|
2856 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
|
2857 (0x30..0x3F are for private use only). |
17052 | 2858 |
2859 Note (*): ECMA = European Computer Manufacturers Association | |
2860 | |
35053 | 2861 Here are examples of graphic character sets [NAME(<F>)]: |
17052 | 2862 o DIMENSION1_CHARS94 -- ASCII('B'), right-half-of-JISX0201('I'), ... |
2863 o DIMENSION1_CHARS96 -- right-half-of-ISO8859-1('A'), ... | |
2864 o DIMENSION2_CHARS94 -- GB2312('A'), JISX0208('B'), ... | |
2865 o DIMENSION2_CHARS96 -- none for the moment | |
2866 | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2867 A code area (1 byte=8 bits) is divided into 4 areas, C0, GL, C1, and GR. |
17052 | 2868 C0 [0x00..0x1F] -- control character plane 0 |
2869 GL [0x20..0x7F] -- graphic character plane 0 | |
2870 C1 [0x80..0x9F] -- control character plane 1 | |
2871 GR [0xA0..0xFF] -- graphic character plane 1 | |
2872 | |
2873 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
|
2874 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
|
2875 - 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
|
2876 - 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
|
2877 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
|
2878 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
|
2879 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
|
2880 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
|
2881 defined to have corresponding escape sequences. |
17052 | 2882 |
2883 A graphic character set is at first designated to one of four | |
2884 graphic registers (G0 through G3), then these graphic registers are | |
2885 invoked to GL or GR. These designations and invocations can be | |
2886 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
|
2887 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
|
2888 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
|
2889 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
|
2890 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2891 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
|
2892 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
|
2893 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
|
2894 be used. |
17052 | 2895 |
2896 There are two ways of invocation: locking-shift and single-shift. | |
2897 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
|
2898 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
|
2899 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
|
2900 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
|
2901 escape sequences: |
17052 | 2902 |
2903 ---------------------------------------------------------------------- | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2904 abbrev function cntrl escape seq description |
17052 | 2905 ---------------------------------------------------------------------- |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2906 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
|
2907 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
|
2908 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
|
2909 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
|
2910 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
|
2911 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
|
2912 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
|
2913 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
|
2914 SS3 (single-shift-3) 0x8F ESC 'O' invoke G3 for one char |
17052 | 2915 ---------------------------------------------------------------------- |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2916 (*) 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
|
2917 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2918 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
|
2919 ISO_CODE_XXX in `coding.h'. |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2920 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2921 Designations are done by the following escape sequences: |
17052 | 2922 ---------------------------------------------------------------------- |
2923 escape sequence description | |
2924 ---------------------------------------------------------------------- | |
2925 ESC '(' <F> designate DIMENSION1_CHARS94<F> to G0 | |
2926 ESC ')' <F> designate DIMENSION1_CHARS94<F> to G1 | |
2927 ESC '*' <F> designate DIMENSION1_CHARS94<F> to G2 | |
2928 ESC '+' <F> designate DIMENSION1_CHARS94<F> to G3 | |
2929 ESC ',' <F> designate DIMENSION1_CHARS96<F> to G0 (*) | |
2930 ESC '-' <F> designate DIMENSION1_CHARS96<F> to G1 | |
2931 ESC '.' <F> designate DIMENSION1_CHARS96<F> to G2 | |
2932 ESC '/' <F> designate DIMENSION1_CHARS96<F> to G3 | |
2933 ESC '$' '(' <F> designate DIMENSION2_CHARS94<F> to G0 (**) | |
2934 ESC '$' ')' <F> designate DIMENSION2_CHARS94<F> to G1 | |
2935 ESC '$' '*' <F> designate DIMENSION2_CHARS94<F> to G2 | |
2936 ESC '$' '+' <F> designate DIMENSION2_CHARS94<F> to G3 | |
2937 ESC '$' ',' <F> designate DIMENSION2_CHARS96<F> to G0 (*) | |
2938 ESC '$' '-' <F> designate DIMENSION2_CHARS96<F> to G1 | |
2939 ESC '$' '.' <F> designate DIMENSION2_CHARS96<F> to G2 | |
2940 ESC '$' '/' <F> designate DIMENSION2_CHARS96<F> to G3 | |
2941 ---------------------------------------------------------------------- | |
2942 | |
2943 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
|
2944 of dimension 1, chars 94, and final character <F>, etc... |
17052 | 2945 |
2946 Note (*): Although these designations are not allowed in ISO2022, | |
2947 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
|
2948 CHARS96 character sets in a coding system which is characterized as |
17052 | 2949 7-bit environment, non-locking-shift, and non-single-shift. |
2950 | |
2951 Note (**): If <F> is '@', 'A', or 'B', the intermediate character | |
88365 | 2952 '(' must be omitted. We refer to this as "short-form" hereafter. |
17052 | 2953 |
35053 | 2954 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
|
2955 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
|
2956 coding systems such as Compound Text (used in X11's inter client |
36087 | 2957 communication, ISO-2022-JP (used in Japanese Internet), ISO-2022-KR |
2958 (used in Korean Internet), EUC (Extended UNIX Code, used in Asian | |
17052 | 2959 localized platforms), and all of these are variants of ISO2022. |
2960 | |
2961 In addition to the above, Emacs handles two more kinds of escape | |
2962 sequences: ISO6429's direction specification and Emacs' private | |
2963 sequence for specifying character composition. | |
2964 | |
24425
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2965 ISO6429's direction specification takes the following form: |
17052 | 2966 o CSI ']' -- end of the current direction |
2967 o CSI '0' ']' -- end of the current direction | |
2968 o CSI '1' ']' -- start of left-to-right text | |
2969 o CSI '2' ']' -- start of right-to-left text | |
2970 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
|
2971 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
|
2972 |
61c6b3be1d51
Comment for ISO 2022 encoding mechanism modified.
Kenichi Handa <handa@m17n.org>
parents:
24344
diff
changeset
|
2973 Character composition specification takes the following form: |
26847 | 2974 o ESC '0' -- start relative composition |
2975 o ESC '1' -- end composition | |
2976 o ESC '2' -- start rule-base composition (*) | |
2977 o ESC '3' -- start relative composition with alternate chars (**) | |
2978 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
|
2979 Since these are not standard escape sequences of any ISO standard, |
35053 | 2980 the use of them with these meanings is restricted to Emacs only. |
2981 | |
88771 | 2982 (*) This form is used only in Emacs 20.7 and older versions, |
2983 but newer versions can safely decode it. | |
35053 | 2984 (**) This form is used only in Emacs 21.1 and newer versions, |
88771 | 2985 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
|
2986 |
35053 | 2987 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
|
2988 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
|
2989 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
2990 COMPOSITION_RELATIVE: |
26847 | 2991 ESC 0 CHAR [ CHAR ] ESC 1 |
36087 | 2992 COMPOSITION_WITH_RULE: |
26847 | 2993 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
|
2994 COMPOSITION_WITH_ALTCHARS: |
26847 | 2995 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
|
2996 COMPOSITION_WITH_RULE_ALTCHARS: |
26847 | 2997 ESC 4 ALTCHAR [ RULE ALTCHAR ] ESC 0 CHAR [ CHAR ] ESC 1 */ |
17052 | 2998 |
2999 enum iso_code_class_type iso_code_class[256]; | |
3000 | |
88365 | 3001 #define SAFE_CHARSET_P(coding, id) \ |
3002 ((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
|
3003 && (coding)->safe_charsets[id] != 255) |
88365 | 3004 |
3005 | |
3006 #define SHIFT_OUT_OK(category) \ | |
3007 (CODING_ISO_INITIAL (&coding_categories[category], 1) >= 0) | |
3008 | |
3009 static void | |
88631
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
3010 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
|
3011 Lisp_Object attrs; |
88365 | 3012 { |
3013 Lisp_Object charset_list, safe_charsets; | |
3014 Lisp_Object request; | |
3015 Lisp_Object reg_usage; | |
3016 Lisp_Object tail; | |
3017 int reg94, reg96; | |
3018 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
3019 int max_charset_id; | |
3020 | |
3021 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
3022 if ((flags & CODING_ISO_FLAG_FULL_SUPPORT) | |
3023 && ! EQ (charset_list, Viso_2022_charset_list)) | |
3024 { | |
3025 CODING_ATTR_CHARSET_LIST (attrs) | |
3026 = charset_list = Viso_2022_charset_list; | |
3027 ASET (attrs, coding_attr_safe_charsets, Qnil); | |
3028 } | |
3029 | |
3030 if (STRINGP (AREF (attrs, coding_attr_safe_charsets))) | |
3031 return; | |
3032 | |
3033 max_charset_id = 0; | |
3034 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
3035 { | |
3036 int id = XINT (XCAR (tail)); | |
3037 if (max_charset_id < id) | |
3038 max_charset_id = id; | |
3039 } | |
3040 | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
3041 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
|
3042 memset (SDATA (safe_charsets), 255, max_charset_id + 1); |
88365 | 3043 request = AREF (attrs, coding_attr_iso_request); |
3044 reg_usage = AREF (attrs, coding_attr_iso_usage); | |
3045 reg94 = XINT (XCAR (reg_usage)); | |
3046 reg96 = XINT (XCDR (reg_usage)); | |
3047 | |
3048 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
3049 { | |
3050 Lisp_Object id; | |
3051 Lisp_Object reg; | |
3052 struct charset *charset; | |
3053 | |
3054 id = XCAR (tail); | |
3055 charset = CHARSET_FROM_ID (XINT (id)); | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3056 reg = Fcdr (Fassq (id, request)); |
88365 | 3057 if (! NILP (reg)) |
89483 | 3058 SSET (safe_charsets, XINT (id), XINT (reg)); |
88365 | 3059 else if (charset->iso_chars_96) |
3060 { | |
3061 if (reg96 < 4) | |
89483 | 3062 SSET (safe_charsets, XINT (id), reg96); |
88365 | 3063 } |
3064 else | |
3065 { | |
3066 if (reg94 < 4) | |
89483 | 3067 SSET (safe_charsets, XINT (id), reg94); |
88365 | 3068 } |
3069 } | |
3070 ASET (attrs, coding_attr_safe_charsets, safe_charsets); | |
3071 } | |
3072 | |
50047
8e17fbb2ac77
(CODING_ADD_COMPOSITION_COMPONENT): If the number of
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
3073 |
17052 | 3074 /* 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
|
3075 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
|
3076 If it is, return 1, else return 0. */ |
17052 | 3077 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
3078 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3079 detect_coding_iso_2022 (coding, detect_info) |
88365 | 3080 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3081 struct coding_detection_info *detect_info; |
17052 | 3082 { |
89483 | 3083 const unsigned char *src = coding->source, *src_base = src; |
3084 const unsigned char *src_end = coding->source + coding->src_bytes; | |
88365 | 3085 int multibytep = coding->src_multibyte; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3086 int single_shifting = 0; |
88365 | 3087 int id; |
3088 int c, c1; | |
3089 int consumed_chars = 0; | |
3090 int i; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3091 int rejected = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3092 int found = 0; |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3093 int composition_count = -1; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3094 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3095 detect_info->checked |= CATEGORY_MASK_ISO; |
88365 | 3096 |
3097 for (i = coding_category_iso_7; i <= coding_category_iso_8_else; i++) | |
3098 { | |
3099 struct coding_system *this = &(coding_categories[i]); | |
3100 Lisp_Object attrs, val; | |
3101 | |
94944
c16046e21b90
(detect_coding_iso_2022): Ignore a coding category that
Kenichi Handa <handa@m17n.org>
parents:
93877
diff
changeset
|
3102 if (this->id < 0) |
c16046e21b90
(detect_coding_iso_2022): Ignore a coding category that
Kenichi Handa <handa@m17n.org>
parents:
93877
diff
changeset
|
3103 continue; |
88365 | 3104 attrs = CODING_ID_ATTRS (this->id); |
3105 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
|
3106 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Viso_2022_charset_list)) |
88365 | 3107 setup_iso_safe_charsets (attrs); |
3108 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
89483 | 3109 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
|
3110 this->safe_charsets = SDATA (val); |
88365 | 3111 } |
3112 | |
3113 /* A coding system of this category is always ASCII compatible. */ | |
3114 src += coding->head_ascii; | |
3115 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3116 while (rejected != CATEGORY_MASK_ISO) |
88365 | 3117 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3118 src_base = src; |
88365 | 3119 ONE_MORE_BYTE (c); |
17052 | 3120 switch (c) |
3121 { | |
3122 case ISO_CODE_ESC: | |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
3123 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
3124 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3125 single_shifting = 0; |
88365 | 3126 ONE_MORE_BYTE (c); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3127 if (c >= '(' && c <= '/') |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3128 { |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3129 /* Designation sequence for a charset of dimension 1. */ |
88365 | 3130 ONE_MORE_BYTE (c1); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3131 if (c1 < ' ' || c1 >= 0x80 |
88365 | 3132 || (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
|
3133 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3134 break; |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3135 } |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3136 else if (c == '$') |
17052 | 3137 { |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3138 /* Designation sequence for a charset of dimension 2. */ |
88365 | 3139 ONE_MORE_BYTE (c); |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3140 if (c >= '@' && c <= 'B') |
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3141 /* Designation for JISX0208.1978, GB2312, or JISX0208. */ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3142 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
|
3143 else if (c >= '(' && c <= '/') |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3144 { |
88365 | 3145 ONE_MORE_BYTE (c1); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3146 if (c1 < ' ' || c1 >= 0x80 |
88365 | 3147 || (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
|
3148 /* Invalid designation sequence. Just ignore. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3149 break; |
17320
9d15bec5f47e
(detect_coding_iso2022, detect_coding_mask): Ignore
Kenichi Handa <handa@m17n.org>
parents:
17304
diff
changeset
|
3150 } |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3151 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3152 /* Invalid designation sequence. Just ignore it. */ |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3153 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3154 } |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
3155 else if (c == 'N' || c == 'O') |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3156 { |
23116
6736da064f4a
(detect_coding_iso2022): Handle ESC N and ESC O
Kenichi Handa <handa@m17n.org>
parents:
23089
diff
changeset
|
3157 /* ESC <Fe> for SS2 or SS3. */ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3158 single_shifting = 1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3159 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
|
3160 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3161 } |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3162 else if (c == '1') |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3163 { |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3164 /* End of composition. */ |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3165 if (composition_count < 0 |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3166 || composition_count > MAX_COMPOSITION_COMPONENTS) |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3167 /* Invalid */ |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3168 break; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3169 composition_count = -1; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3170 found |= CATEGORY_MASK_ISO; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3171 } |
26847 | 3172 else if (c >= '0' && c <= '4') |
3173 { | |
3174 /* ESC <Fp> for start/end composition. */ | |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3175 composition_count = 0; |
26847 | 3176 break; |
3177 } | |
19134
8fa6e23f8d22
(detect_coding_iso2022): Do not exclude posibility of
Kenichi Handa <handa@m17n.org>
parents:
19118
diff
changeset
|
3178 else |
88365 | 3179 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3180 /* Invalid escape sequence. Just ignore it. */ |
88365 | 3181 break; |
3182 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3183 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3184 /* 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
|
3185 rejected |= CATEGORY_MASK_ISO_8BIT; |
88365 | 3186 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7], |
3187 id)) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3188 found |= CATEGORY_MASK_ISO_7; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3189 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3190 rejected |= CATEGORY_MASK_ISO_7; |
88365 | 3191 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_tight], |
3192 id)) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3193 found |= CATEGORY_MASK_ISO_7_TIGHT; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3194 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3195 rejected |= CATEGORY_MASK_ISO_7_TIGHT; |
88365 | 3196 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_7_else], |
3197 id)) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3198 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
|
3199 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3200 rejected |= CATEGORY_MASK_ISO_7_ELSE; |
88365 | 3201 if (SAFE_CHARSET_P (&coding_categories[coding_category_iso_8_else], |
3202 id)) | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3203 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
|
3204 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3205 rejected |= CATEGORY_MASK_ISO_8_ELSE; |
17052 | 3206 break; |
3207 | |
3208 case ISO_CODE_SO: | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3209 case ISO_CODE_SI: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3210 /* Locking shift out/in. */ |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
3211 if (inhibit_iso_escape_detection) |
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
3212 break; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3213 single_shifting = 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3214 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
|
3215 break; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3216 |
17052 | 3217 case ISO_CODE_CSI: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3218 /* Control sequence introducer. */ |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3219 single_shifting = 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3220 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
|
3221 found |= CATEGORY_MASK_ISO_8_ELSE; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3222 goto check_extra_latin; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3223 |
17052 | 3224 case ISO_CODE_SS2: |
3225 case ISO_CODE_SS3: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3226 /* Single shift. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3227 if (inhibit_iso_escape_detection) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3228 break; |
89780
a53cb5864a40
(detect_coding_iso_2022): Fix handling of SS2 and SS3.
Kenichi Handa <handa@m17n.org>
parents:
89779
diff
changeset
|
3229 single_shifting = 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3230 rejected |= CATEGORY_MASK_ISO_7BIT; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3231 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
|
3232 & 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
|
3233 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
|
3234 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
|
3235 & 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
|
3236 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
|
3237 if (single_shifting) |
a53cb5864a40
(detect_coding_iso_2022): Fix handling of SS2 and SS3.
Kenichi Handa <handa@m17n.org>
parents:
89779
diff
changeset
|
3238 break; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3239 goto check_extra_latin; |
17052 | 3240 |
3241 default: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3242 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3243 continue; |
17052 | 3244 if (c < 0x80) |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3245 { |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3246 if (composition_count >= 0) |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3247 composition_count++; |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3248 single_shifting = 0; |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3249 break; |
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3250 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3251 if (c >= 0xA0) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
3252 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3253 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
|
3254 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
|
3255 /* 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
|
3256 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
|
3257 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
|
3258 only when we are not single shifting. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3259 if (! single_shifting |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3260 && ! (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
|
3261 { |
29299
b33b38d81020
(detect_coding_iso2022): Fix code for checking
Kenichi Handa <handa@m17n.org>
parents:
29275
diff
changeset
|
3262 int i = 1; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3263 while (src < src_end) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3264 { |
106826
64cd76243389
Fix handling of euc-xx coding systems.
Kenichi Handa <handa@m17n.org>
parents:
106815
diff
changeset
|
3265 src_base = src; |
88365 | 3266 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
|
3267 if (c < 0xA0) |
106826
64cd76243389
Fix handling of euc-xx coding systems.
Kenichi Handa <handa@m17n.org>
parents:
106815
diff
changeset
|
3268 { |
64cd76243389
Fix handling of euc-xx coding systems.
Kenichi Handa <handa@m17n.org>
parents:
106815
diff
changeset
|
3269 src = src_base; |
64cd76243389
Fix handling of euc-xx coding systems.
Kenichi Handa <handa@m17n.org>
parents:
106815
diff
changeset
|
3270 break; |
64cd76243389
Fix handling of euc-xx coding systems.
Kenichi Handa <handa@m17n.org>
parents:
106815
diff
changeset
|
3271 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3272 i++; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3273 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3274 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3275 if (i & 1 && src < src_end) |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3276 { |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3277 rejected |= CATEGORY_MASK_ISO_8_2; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3278 if (composition_count >= 0) |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3279 composition_count += i; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3280 } |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3281 else |
99753
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3282 { |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3283 found |= CATEGORY_MASK_ISO_8_2; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3284 if (composition_count >= 0) |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3285 composition_count += i / 2; |
c457d1e5edff
(detect_coding_iso_2022): Reject invalid composition
Kenichi Handa <handa@m17n.org>
parents:
99074
diff
changeset
|
3286 } |
23088
45c36d636f66
(detect_coding_iso2022): Don't check the byte length of
Kenichi Handa <handa@m17n.org>
parents:
23082
diff
changeset
|
3287 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3288 break; |
17052 | 3289 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3290 check_extra_latin: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3291 single_shifting = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3292 if (! VECTORP (Vlatin_extra_code_table) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3293 || NILP (XVECTOR (Vlatin_extra_code_table)->contents[c])) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3294 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3295 rejected = CATEGORY_MASK_ISO; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3296 break; |
17052 | 3297 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3298 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
|
3299 & CODING_ISO_FLAG_LATIN_EXTRA) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3300 found |= CATEGORY_MASK_ISO_8_1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3301 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3302 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
|
3303 rejected |= CATEGORY_MASK_ISO_8_2; |
17052 | 3304 } |
3305 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3306 detect_info->rejected |= CATEGORY_MASK_ISO; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3307 return 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3308 |
88365 | 3309 no_more_source: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3310 detect_info->rejected |= rejected; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3311 detect_info->found |= (found & ~rejected); |
88365 | 3312 return 1; |
17052 | 3313 } |
3314 | |
3315 | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3316 /* 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
|
3317 escape sequence should be kept. */ |
88365 | 3318 #define DECODE_DESIGNATION(reg, dim, chars_96, final) \ |
3319 do { \ | |
3320 int id, prev; \ | |
3321 \ | |
3322 if (final < '0' || final >= 128 \ | |
3323 || ((id = ISO_CHARSET_TABLE (dim, chars_96, final)) < 0) \ | |
3324 || !SAFE_CHARSET_P (coding, id)) \ | |
3325 { \ | |
3326 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
|
3327 chars_96 = -1; \ |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3328 break; \ |
88365 | 3329 } \ |
3330 prev = CODING_ISO_DESIGNATION (coding, reg); \ | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3331 if (id == charset_jisx0201_roman) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3332 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3333 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
|
3334 id = charset_ascii; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3335 } \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3336 else if (id == charset_jisx0208_1978) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3337 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3338 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
|
3339 id = charset_jisx0208; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
3340 } \ |
88365 | 3341 CODING_ISO_DESIGNATION (coding, reg) = id; \ |
3342 /* If there was an invalid designation to REG previously, and this \ | |
3343 designation is ASCII to REG, we should keep this designation \ | |
3344 sequence. */ \ | |
3345 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
|
3346 chars_96 = -1; \ |
17052 | 3347 } while (0) |
3348 | |
88365 | 3349 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3350 /* Handle these composition sequence (ALT: alternate char): |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3351 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3352 (1) relative composition: ESC 0 CHAR ... ESC 1 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3353 (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
|
3354 (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
|
3355 (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
|
3356 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3357 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
|
3358 header is produced. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3359 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3360 [ -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
|
3361 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3362 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
|
3363 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
|
3364 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3365 (1) CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3366 (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
|
3367 (3) ALT ... ALT -1 -1 CHAR ... CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3368 (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
|
3369 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3370 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
|
3371 annotation header is updated as below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3372 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3373 (1) LENGTH: unchanged, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3374 (2) LENGTH: unchanged, NCHARS: number of CHARs |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3375 (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
|
3376 (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
|
3377 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3378 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
|
3379 changed to: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3380 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3381 [ ESC '0'/'2'/'3'/'4' -2 0 ] |
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 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
|
3384 byte sequence as below: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3385 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
|
3386 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
|
3387 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
|
3388 sequence: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3389 [ ESC '0' ] |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3390 */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3391 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3392 /* 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
|
3393 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
|
3394 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
|
3395 to some negative value. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3396 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3397 #define DECODE_COMPOSITION_RULE(rule, nbytes) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3398 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3399 rule = c1 - 32; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3400 if (rule < 0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3401 break; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3402 if (rule < 81) /* old format (before ver.21) */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3403 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3404 int gref = (rule) / 9; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3405 int nref = (rule) % 9; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3406 if (gref == 4) gref = 10; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3407 if (nref == 4) nref = 10; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3408 rule = COMPOSITION_ENCODE_RULE (gref, nref); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3409 nbytes = 1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3410 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3411 else /* new format (after ver.21) */ \ |
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 int c; \ |
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 ONE_MORE_BYTE (c); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3416 rule = COMPOSITION_ENCODE_RULE (rule - 81, c - 32); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3417 if (rule >= 0) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3418 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
|
3419 nbytes = 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3420 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3421 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3422 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3423 #define ENCODE_COMPOSITION_RULE(rule) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3424 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3425 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
|
3426 \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3427 if (rule < 0x100) /* old format */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3428 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3429 if (gref == 10) gref = 4; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3430 if (nref == 10) nref = 4; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3431 charbuf[idx] = 32 + gref * 9 + nref; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3432 charbuf[idx + 1] = -1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3433 new_chars++; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3434 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3435 else /* new format */ \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3436 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3437 charbuf[idx] = 32 + 81 + gref; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3438 charbuf[idx + 1] = 32 + nref; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3439 new_chars += 2; \ |
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 } while (0) |
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 /* Finish the current composition as invalid. */ |
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 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
|
3446 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3447 static int |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3448 finish_composition (charbuf, cmp_status) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3449 int *charbuf; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3450 struct composition_status *cmp_status; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3451 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3452 int idx = - cmp_status->length; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3453 int new_chars; |
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 /* Recover the original ESC sequence */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3456 charbuf[idx++] = ISO_CODE_ESC; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3457 charbuf[idx++] = (cmp_status->method == COMPOSITION_RELATIVE ? '0' |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3458 : cmp_status->method == COMPOSITION_WITH_RULE ? '2' |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3459 : cmp_status->method == COMPOSITION_WITH_ALTCHARS ? '3' |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3460 /* cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3461 : '4'); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3462 charbuf[idx++] = -2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3463 charbuf[idx++] = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3464 charbuf[idx++] = -1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3465 new_chars = cmp_status->nchars; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3466 if (cmp_status->method >= COMPOSITION_WITH_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3467 for (; idx < 0; idx++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3468 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3469 int elt = charbuf[idx]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3470 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3471 if (elt == -2) |
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 ENCODE_COMPOSITION_RULE (charbuf[idx + 1]); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3474 idx++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3475 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3476 else if (elt == -1) |
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 charbuf[idx++] = ISO_CODE_ESC; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3479 charbuf[idx] = '0'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3480 new_chars += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3481 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3482 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3483 cmp_status->state = COMPOSING_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3484 return new_chars; |
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 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3487 /* If characers are under composition, finish the composition. */ |
88365 | 3488 #define MAYBE_FINISH_COMPOSITION() \ |
3489 do { \ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3490 if (cmp_status->state != COMPOSING_NO) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3491 char_offset += finish_composition (charbuf, cmp_status); \ |
88365 | 3492 } while (0) |
3493 | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
3494 /* 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
|
3495 |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
3496 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
|
3497 ESC 2 : rulebase composition : ESC 2 CHAR RULE CHAR RULE ... CHAR ESC 1 |
88365 | 3498 ESC 3 : altchar composition : ESC 3 CHAR ... ESC 0 CHAR ... ESC 1 |
3499 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
|
3500 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3501 Produce this annotation sequence now: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3502 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3503 [ -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
|
3504 */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3505 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3506 #define DECODE_COMPOSITION_START(c1) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3507 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3508 if (c1 == '0' \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3509 && ((cmp_status->state == COMPOSING_COMPONENT_CHAR \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3510 && cmp_status->method == COMPOSITION_WITH_ALTCHARS) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3511 || (cmp_status->state == COMPOSING_COMPONENT_RULE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3512 && cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS))) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3513 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3514 *charbuf++ = -1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3515 *charbuf++= -1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3516 cmp_status->state = COMPOSING_CHAR; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3517 cmp_status->length += 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3518 } \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3519 else \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3520 { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3521 MAYBE_FINISH_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3522 cmp_status->method = (c1 == '0' ? COMPOSITION_RELATIVE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3523 : c1 == '2' ? COMPOSITION_WITH_RULE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3524 : c1 == '3' ? COMPOSITION_WITH_ALTCHARS \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3525 : COMPOSITION_WITH_RULE_ALTCHARS); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3526 cmp_status->state \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3527 = (c1 <= '2' ? COMPOSING_CHAR : COMPOSING_COMPONENT_CHAR); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3528 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
|
3529 cmp_status->length = MAX_ANNOTATION_LENGTH; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3530 cmp_status->nchars = cmp_status->ncomps = 0; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3531 coding->annotated = 1; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3532 } \ |
26847 | 3533 } while (0) |
3534 | |
88365 | 3535 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3536 /* Handle composition end sequence ESC 1. */ |
88365 | 3537 |
3538 #define DECODE_COMPOSITION_END() \ | |
3539 do { \ | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3540 if (cmp_status->nchars == 0 \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3541 || ((cmp_status->state == COMPOSING_CHAR) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3542 == (cmp_status->method == COMPOSITION_WITH_RULE))) \ |
88365 | 3543 { \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3544 MAYBE_FINISH_COMPOSITION (); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3545 goto invalid_code; \ |
88365 | 3546 } \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3547 if (cmp_status->method == COMPOSITION_WITH_ALTCHARS) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3548 charbuf[- cmp_status->length] -= cmp_status->ncomps + 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3549 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
|
3550 charbuf[- cmp_status->length] -= cmp_status->ncomps * 3; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3551 charbuf[- cmp_status->length + 2] = cmp_status->nchars; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3552 char_offset += cmp_status->nchars; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3553 cmp_status->state = COMPOSING_NO; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3554 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3555 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3556 /* 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
|
3557 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3558 #define STORE_COMPOSITION_RULE(rule) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3559 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3560 *charbuf++ = -2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3561 *charbuf++ = rule; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3562 cmp_status->length += 2; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3563 cmp_status->state--; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3564 } while (0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3565 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3566 /* 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
|
3567 cmp_status. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3568 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3569 #define STORE_COMPOSITION_CHAR(c) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3570 do { \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3571 *charbuf++ = (c); \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3572 cmp_status->length++; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3573 if (cmp_status->state == COMPOSING_CHAR) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3574 cmp_status->nchars++; \ |
88365 | 3575 else \ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3576 cmp_status->ncomps++; \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3577 if (cmp_status->method == COMPOSITION_WITH_RULE \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3578 || (cmp_status->method == COMPOSITION_WITH_RULE_ALTCHARS \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3579 && cmp_status->state == COMPOSING_COMPONENT_CHAR)) \ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3580 cmp_status->state++; \ |
26847 | 3581 } while (0) |
3582 | |
3583 | |
17052 | 3584 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". */ |
3585 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3586 static void |
88365 | 3587 decode_coding_iso_2022 (coding) |
17052 | 3588 struct coding_system *coding; |
3589 { | |
89483 | 3590 const unsigned char *src = coding->source + coding->consumed; |
3591 const unsigned char *src_end = coding->source + coding->src_bytes; | |
3592 const unsigned char *src_base; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
3593 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
|
3594 /* 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
|
3595 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
|
3596 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
3597 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 3); |
88365 | 3598 int consumed_chars = 0, consumed_chars_base; |
3599 int multibytep = coding->src_multibyte; | |
17052 | 3600 /* Charsets invoked to graphic plane 0 and 1 respectively. */ |
88365 | 3601 int charset_id_0 = CODING_ISO_INVOKED_CHARSET (coding, 0); |
3602 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
|
3603 int charset_id_2, charset_id_3; |
88365 | 3604 struct charset *charset; |
3605 int c; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3606 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
|
3607 Lisp_Object attrs, charset_list; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3608 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3609 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
3610 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
|
3611 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
|
3612 !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
|
3613 int byte_after_cr = -1; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3614 int i; |
88365 | 3615 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
3616 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 3617 setup_iso_safe_charsets (attrs); |
90772
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3618 /* Charset list may have been changed. */ |
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3619 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
|
3620 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
|
3621 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3622 if (cmp_status->state != COMPOSING_NO) |
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 for (i = 0; i < cmp_status->length; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3625 *charbuf++ = cmp_status->carryover[i]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3626 coding->annotated = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3627 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3628 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3629 while (1) |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3630 { |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
3631 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
|
3632 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3633 src_base = src; |
88365 | 3634 consumed_chars_base = consumed_chars; |
3635 | |
3636 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
|
3637 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
3638 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
|
3639 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
3640 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
3641 } |
88365 | 3642 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3643 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
|
3644 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
|
3645 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
3646 ONE_MORE_BYTE (c1); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3647 if (c1 < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
3648 goto invalid_code; |
17052 | 3649 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3650 if (CODING_ISO_EXTSEGMENT_LEN (coding) > 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3651 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3652 *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
|
3653 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3654 CODING_ISO_EXTSEGMENT_LEN (coding)--; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3655 continue; |
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 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3658 if (CODING_ISO_EMBEDDED_UTF_8 (coding)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3659 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3660 if (c1 == ISO_CODE_ESC) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3661 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3662 if (src + 1 >= src_end) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3663 goto no_more_source; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3664 *charbuf++ = ISO_CODE_ESC; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3665 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3666 if (src[0] == '%' && src[1] == '@') |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3667 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3668 src += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3669 consumed_chars += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3670 char_offset += 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3671 /* 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
|
3672 *charbuf++ = '%'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3673 *charbuf++ = '@'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3674 CODING_ISO_EMBEDDED_UTF_8 (coding) = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3675 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3676 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3677 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3678 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3679 *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
|
3680 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3681 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3682 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3683 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3684 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3685 if ((cmp_status->state == COMPOSING_RULE |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3686 || cmp_status->state == COMPOSING_COMPONENT_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3687 && c1 != ISO_CODE_ESC) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3688 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3689 int rule, nbytes; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3690 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3691 DECODE_COMPOSITION_RULE (rule, nbytes); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3692 if (rule < 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3693 goto invalid_code; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3694 STORE_COMPOSITION_RULE (rule); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3695 continue; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3696 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3697 |
89279
1fd77c471ee6
(decode_coding_utf_8): When eol_type is Qdos, handle
Kenichi Handa <handa@m17n.org>
parents:
89227
diff
changeset
|
3698 /* We produce at most one character. */ |
17052 | 3699 switch (iso_code_class [c1]) |
3700 { | |
3701 case ISO_0x20_or_0x7F: | |
88365 | 3702 if (charset_id_0 < 0 |
3703 || ! 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
|
3704 /* This is SPACE or DEL. */ |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3705 charset = CHARSET_FROM_ID (charset_ascii); |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3706 else |
c7772f702227
(ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
Kenichi Handa <handa@m17n.org>
parents:
88573
diff
changeset
|
3707 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
|
3708 break; |
17052 | 3709 |
3710 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
|
3711 if (charset_id_0 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3712 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
|
3713 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3714 charset = CHARSET_FROM_ID (charset_id_0); |
17052 | 3715 break; |
3716 | |
3717 case ISO_0xA0_or_0xFF: | |
88365 | 3718 if (charset_id_1 < 0 |
3719 || ! CHARSET_ISO_CHARS_96 (CHARSET_FROM_ID (charset_id_1)) | |
3720 || CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) | |
3721 goto invalid_code; | |
17052 | 3722 /* This is a graphic character, we fall down ... */ |
3723 | |
3724 case ISO_graphic_plane_1: | |
88365 | 3725 if (charset_id_1 < 0) |
3726 goto invalid_code; | |
3727 charset = CHARSET_FROM_ID (charset_id_1); | |
17052 | 3728 break; |
3729 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3730 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
|
3731 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
|
3732 ONE_MORE_BYTE (byte_after_cr); |
88365 | 3733 MAYBE_FINISH_COMPOSITION (); |
3734 charset = CHARSET_FROM_ID (charset_ascii); | |
17052 | 3735 break; |
3736 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3737 case ISO_control_1: |
88365 | 3738 goto invalid_code; |
17052 | 3739 |
3740 case ISO_shift_out: | |
88365 | 3741 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
3742 || CODING_ISO_DESIGNATION (coding, 1) < 0) | |
3743 goto invalid_code; | |
3744 CODING_ISO_INVOCATION (coding, 0) = 1; | |
3745 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
|
3746 continue; |
17052 | 3747 |
3748 case ISO_shift_in: | |
88365 | 3749 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT)) |
3750 goto invalid_code; | |
3751 CODING_ISO_INVOCATION (coding, 0) = 0; | |
3752 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
|
3753 continue; |
17052 | 3754 |
3755 case ISO_single_shift_2_7: | |
106564
fea46c7aca79
(decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
Kenichi Handa <handa@m17n.org>
parents:
105959
diff
changeset
|
3756 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS)) |
fea46c7aca79
(decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
Kenichi Handa <handa@m17n.org>
parents:
105959
diff
changeset
|
3757 goto invalid_code; |
17052 | 3758 case ISO_single_shift_2: |
88365 | 3759 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
3760 goto invalid_code; | |
17052 | 3761 /* SS2 is handled as an escape sequence of ESC 'N' */ |
3762 c1 = 'N'; | |
3763 goto label_escape_sequence; | |
3764 | |
3765 case ISO_single_shift_3: | |
88365 | 3766 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT)) |
3767 goto invalid_code; | |
17052 | 3768 /* SS2 is handled as an escape sequence of ESC 'O' */ |
3769 c1 = 'O'; | |
3770 goto label_escape_sequence; | |
3771 | |
3772 case ISO_control_sequence_introducer: | |
3773 /* CSI is handled as an escape sequence of ESC '[' ... */ | |
3774 c1 = '['; | |
3775 goto label_escape_sequence; | |
3776 | |
3777 case ISO_escape: | |
3778 ONE_MORE_BYTE (c1); | |
3779 label_escape_sequence: | |
88365 | 3780 /* Escape sequences handled here are invocation, |
17052 | 3781 designation, direction specification, and character |
3782 composition specification. */ | |
3783 switch (c1) | |
3784 { | |
3785 case '&': /* revision of following character set */ | |
3786 ONE_MORE_BYTE (c1); | |
3787 if (!(c1 >= '@' && c1 <= '~')) | |
88365 | 3788 goto invalid_code; |
17052 | 3789 ONE_MORE_BYTE (c1); |
3790 if (c1 != ISO_CODE_ESC) | |
88365 | 3791 goto invalid_code; |
17052 | 3792 ONE_MORE_BYTE (c1); |
3793 goto label_escape_sequence; | |
3794 | |
3795 case '$': /* designation of 2-byte character set */ | |
88365 | 3796 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
3797 goto invalid_code; | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3798 { |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3799 int reg, chars96; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3800 |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3801 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3802 if (c1 >= '@' && c1 <= 'B') |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3803 { /* 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
|
3804 or JISX0208.1980 */ |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3805 reg = 0, chars96 = 0; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3806 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3807 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
|
3808 { /* 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
|
3809 reg = c1 - 0x28, chars96 = 0; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3810 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3811 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3812 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
|
3813 { /* 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
|
3814 reg = c1 - 0x2C, chars96 = 1; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3815 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3816 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3817 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3818 goto invalid_code; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3819 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
|
3820 /* 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
|
3821 if (reg == 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3822 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
|
3823 else if (reg == 1) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3824 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
|
3825 if (chars96 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3826 goto invalid_code; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3827 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3828 continue; |
17052 | 3829 |
3830 case 'n': /* invocation of locking-shift-2 */ | |
88365 | 3831 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
3832 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
3833 goto invalid_code; | |
3834 CODING_ISO_INVOCATION (coding, 0) = 2; | |
3835 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
|
3836 continue; |
17052 | 3837 |
3838 case 'o': /* invocation of locking-shift-3 */ | |
88365 | 3839 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_LOCKING_SHIFT) |
3840 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
3841 goto invalid_code; | |
3842 CODING_ISO_INVOCATION (coding, 0) = 3; | |
3843 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
|
3844 continue; |
17052 | 3845 |
3846 case 'N': /* invocation of single-shift-2 */ | |
88365 | 3847 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
3848 || CODING_ISO_DESIGNATION (coding, 2) < 0) | |
3849 goto invalid_code; | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3850 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
|
3851 if (charset_id_2 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3852 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
|
3853 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3854 charset = CHARSET_FROM_ID (charset_id_2); |
17052 | 3855 ONE_MORE_BYTE (c1); |
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
3856 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
88365 | 3857 goto invalid_code; |
17052 | 3858 break; |
3859 | |
3860 case 'O': /* invocation of single-shift-3 */ | |
88365 | 3861 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
3862 || CODING_ISO_DESIGNATION (coding, 3) < 0) | |
3863 goto invalid_code; | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3864 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
|
3865 if (charset_id_3 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3866 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
|
3867 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3868 charset = CHARSET_FROM_ID (charset_id_3); |
17052 | 3869 ONE_MORE_BYTE (c1); |
30578
705b94e152b1
(decode_coding_iso2022): More strict check for handling single
Kenichi Handa <handa@m17n.org>
parents:
30487
diff
changeset
|
3870 if (c1 < 0x20 || (c1 >= 0x80 && c1 < 0xA0)) |
88365 | 3871 goto invalid_code; |
17052 | 3872 break; |
3873 | |
26847 | 3874 case '0': case '2': case '3': case '4': /* start composition */ |
88365 | 3875 if (! (coding->common_flags & CODING_ANNOTATE_COMPOSITION_MASK)) |
3876 goto invalid_code; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3877 if (last_id != charset_ascii) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3878 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3879 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
|
3880 last_id = charset_ascii; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3881 last_offset = char_offset; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3882 } |
26847 | 3883 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
|
3884 continue; |
17052 | 3885 |
26847 | 3886 case '1': /* end composition */ |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3887 if (cmp_status->state == COMPOSING_NO) |
88365 | 3888 goto invalid_code; |
3889 DECODE_COMPOSITION_END (); | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3890 continue; |
17052 | 3891 |
3892 case '[': /* specification of direction */ | |
105179
8143cdf4806f
(decode_coding_iso_2022): Fix operator precedence.
Andreas Schwab <schwab@linux-m68k.org>
parents:
104636
diff
changeset
|
3893 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION)) |
88365 | 3894 goto invalid_code; |
17052 | 3895 /* 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
|
3896 So, `coding->mode & CODING_MODE_DIRECTION' zero means |
88365 | 3897 left-to-right, and nozero means right-to-left. */ |
17052 | 3898 ONE_MORE_BYTE (c1); |
3899 switch (c1) | |
3900 { | |
3901 case ']': /* end of the current direction */ | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3902 coding->mode &= ~CODING_MODE_DIRECTION; |
17052 | 3903 |
3904 case '0': /* end of the current direction */ | |
3905 case '1': /* start of left-to-right direction */ | |
3906 ONE_MORE_BYTE (c1); | |
3907 if (c1 == ']') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3908 coding->mode &= ~CODING_MODE_DIRECTION; |
17052 | 3909 else |
88365 | 3910 goto invalid_code; |
17052 | 3911 break; |
3912 | |
3913 case '2': /* start of right-to-left direction */ | |
3914 ONE_MORE_BYTE (c1); | |
3915 if (c1 == ']') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
3916 coding->mode |= CODING_MODE_DIRECTION; |
17052 | 3917 else |
88365 | 3918 goto invalid_code; |
17052 | 3919 break; |
3920 | |
3921 default: | |
88365 | 3922 goto invalid_code; |
17052 | 3923 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
3924 continue; |
17052 | 3925 |
51311 | 3926 case '%': |
3927 ONE_MORE_BYTE (c1); | |
3928 if (c1 == '/') | |
3929 { | |
3930 /* CTEXT extended segment: | |
3931 ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES-- | |
3932 We keep these bytes as is for the moment. | |
3933 They may be decoded by post-read-conversion. */ | |
3934 int dim, M, L; | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3935 int size; |
56191 | 3936 |
51311 | 3937 ONE_MORE_BYTE (dim); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3938 if (dim < 0 || dim > 4) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3939 goto invalid_code; |
51311 | 3940 ONE_MORE_BYTE (M); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3941 if (M < 128) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3942 goto invalid_code; |
51311 | 3943 ONE_MORE_BYTE (L); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3944 if (L < 128) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3945 goto invalid_code; |
51311 | 3946 size = ((M - 128) * 128) + (L - 128); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3947 if (charbuf + 6 > charbuf_end) |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3948 goto break_loop; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3949 *charbuf++ = ISO_CODE_ESC; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3950 *charbuf++ = '%'; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3951 *charbuf++ = '/'; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3952 *charbuf++ = dim; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3953 *charbuf++ = BYTE8_TO_CHAR (M); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3954 *charbuf++ = BYTE8_TO_CHAR (L); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3955 CODING_ISO_EXTSEGMENT_LEN (coding) = size; |
51311 | 3956 } |
3957 else if (c1 == 'G') | |
3958 { | |
3959 /* XFree86 extension for embedding UTF-8 in CTEXT: | |
3960 ESC % G --UTF-8-BYTES-- ESC % @ | |
3961 We keep these bytes as is for the moment. | |
3962 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
|
3963 if (charbuf + 3 > charbuf_end) |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3964 goto break_loop; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3965 *charbuf++ = ISO_CODE_ESC; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3966 *charbuf++ = '%'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3967 *charbuf++ = 'G'; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
3968 CODING_ISO_EMBEDDED_UTF_8 (coding) = 1; |
51311 | 3969 } |
3970 else | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3971 goto invalid_code; |
51311 | 3972 continue; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
3973 break; |
51311 | 3974 |
17052 | 3975 default: |
88365 | 3976 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATION)) |
3977 goto invalid_code; | |
89873
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3978 { |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3979 int reg, chars96; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3980 |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3981 if (c1 >= 0x28 && c1 <= 0x2B) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3982 { /* 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
|
3983 reg = c1 - 0x28, chars96 = 0; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3984 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3985 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3986 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
|
3987 { /* 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
|
3988 reg = c1 - 0x2C, chars96 = 1; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3989 ONE_MORE_BYTE (c1); |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3990 } |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3991 else |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3992 goto invalid_code; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3993 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
|
3994 /* 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
|
3995 if (reg == 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3996 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
|
3997 else if (reg == 1) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
3998 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
|
3999 if (chars96 < 0) |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
4000 goto invalid_code; |
9a279ff9d245
(DECODE_DESIGNATION): Set chars_96 to -1 instead of
Kenichi Handa <handa@m17n.org>
parents:
89863
diff
changeset
|
4001 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4002 continue; |
17052 | 4003 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4004 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4005 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4006 if (cmp_status->state == COMPOSING_NO |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4007 && charset->id != charset_ascii |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4008 && last_id != charset->id) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4009 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4010 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4011 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
|
4012 last_id = charset->id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4013 last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4014 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4015 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4016 /* 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
|
4017 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
|
4018 position codes C2, C3 if necessary. */ |
88365 | 4019 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
|
4020 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4021 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
|
4022 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
|
4023 || ((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
|
4024 /* C2 is not in a valid range. */ |
88365 | 4025 goto invalid_code; |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4026 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
|
4027 c1 = (c1 << 8) | c2; |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4028 else |
88365 | 4029 { |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4030 ONE_MORE_BYTE (c3); |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4031 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
|
4032 || ((c1 & 0x80) != (c3 & 0x80))) |
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4033 /* C3 is not in a valid range. */ |
88365 | 4034 goto invalid_code; |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4035 c1 = (c1 << 16) | (c2 << 8) | c2; |
88365 | 4036 } |
17052 | 4037 } |
103474
7ead50363544
(decode_coding_iso_2022): Check MSB of bytes more rigidly.
Kenichi Handa <handa@m17n.org>
parents:
103448
diff
changeset
|
4038 c1 &= 0x7F7F7F; |
88365 | 4039 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c1, c); |
4040 if (c < 0) | |
4041 { | |
4042 MAYBE_FINISH_COMPOSITION (); | |
4043 for (; src_base < src; src_base++, char_offset++) | |
4044 { | |
4045 if (ASCII_BYTE_P (*src_base)) | |
4046 *charbuf++ = *src_base; | |
4047 else | |
4048 *charbuf++ = BYTE8_TO_CHAR (*src_base); | |
4049 } | |
4050 } | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4051 else if (cmp_status->state == COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4052 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4053 *charbuf++ = c; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4054 char_offset++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4055 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4056 else if ((cmp_status->state == COMPOSING_CHAR |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4057 ? cmp_status->nchars |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4058 : cmp_status->ncomps) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4059 >= MAX_COMPOSITION_COMPONENTS) |
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 /* Too long composition. */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4062 MAYBE_FINISH_COMPOSITION (); |
88365 | 4063 *charbuf++ = c; |
4064 char_offset++; | |
4065 } | |
4066 else | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4067 STORE_COMPOSITION_CHAR (c); |
17052 | 4068 continue; |
4069 | |
88365 | 4070 invalid_code: |
4071 MAYBE_FINISH_COMPOSITION (); | |
4072 src = src_base; | |
4073 consumed_chars = consumed_chars_base; | |
4074 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4075 *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
|
4076 char_offset++; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4077 coding->errors++; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
4078 continue; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
4079 |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
4080 break_loop: |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
4081 break; |
88365 | 4082 } |
4083 | |
4084 no_more_source: | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4085 if (cmp_status->state != COMPOSING_NO) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4086 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4087 if (coding->mode & CODING_MODE_LAST_BLOCK) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4088 MAYBE_FINISH_COMPOSITION (); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4089 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4090 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4091 charbuf -= cmp_status->length; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4092 for (i = 0; i < cmp_status->length; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4093 cmp_status->carryover[i] = charbuf[i]; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4094 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4095 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
4096 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
|
4097 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 4098 coding->consumed_char += consumed_chars_base; |
4099 coding->consumed = src_base - coding->source; | |
4100 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 4101 } |
4102 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4103 |
18766 | 4104 /* ISO2022 encoding stuff. */ |
17052 | 4105 |
4106 /* | |
18766 | 4107 It is not enough to say just "ISO2022" on encoding, we have to |
88365 | 4108 specify more details. In Emacs, each coding system of ISO2022 |
17052 | 4109 variant has the following specifications: |
88365 | 4110 1. Initial designation to G0 thru G3. |
17052 | 4111 2. Allows short-form designation? |
4112 3. ASCII should be designated to G0 before control characters? | |
4113 4. ASCII should be designated to G0 at end of line? | |
4114 5. 7-bit environment or 8-bit environment? | |
4115 6. Use locking-shift? | |
4116 7. Use Single-shift? | |
4117 And the following two are only for Japanese: | |
4118 8. Use ASCII in place of JIS0201-1976-Roman? | |
4119 9. Use JISX0208-1983 in place of JISX0208-1978? | |
88365 | 4120 These specifications are encoded in CODING_ISO_FLAGS (coding) as flag bits |
4121 defined by macros CODING_ISO_FLAG_XXX. See `coding.h' for more | |
18766 | 4122 details. |
17052 | 4123 */ |
4124 | |
4125 /* 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
|
4126 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
|
4127 '@', '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
|
4128 designation sequence of short-form. */ |
17052 | 4129 |
4130 #define ENCODE_DESIGNATION(charset, reg, coding) \ | |
4131 do { \ | |
88365 | 4132 unsigned char final_char = CHARSET_ISO_FINAL (charset); \ |
17052 | 4133 char *intermediate_char_94 = "()*+"; \ |
4134 char *intermediate_char_96 = ",-./"; \ | |
88365 | 4135 int revision = -1; \ |
4136 int c; \ | |
4137 \ | |
4138 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_REVISION) \ | |
88856 | 4139 revision = CHARSET_ISO_REVISION (charset); \ |
88365 | 4140 \ |
4141 if (revision >= 0) \ | |
20150
402b6e5f4b58
(encode_designation_at_bol): Fix bug of finding graphic
Kenichi Handa <handa@m17n.org>
parents:
20105
diff
changeset
|
4142 { \ |
88365 | 4143 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '&'); \ |
4144 EMIT_ONE_BYTE ('@' + revision); \ | |
17052 | 4145 } \ |
88365 | 4146 EMIT_ONE_ASCII_BYTE (ISO_CODE_ESC); \ |
17052 | 4147 if (CHARSET_DIMENSION (charset) == 1) \ |
4148 { \ | |
88365 | 4149 if (! CHARSET_ISO_CHARS_96 (charset)) \ |
4150 c = intermediate_char_94[reg]; \ | |
17052 | 4151 else \ |
88365 | 4152 c = intermediate_char_96[reg]; \ |
4153 EMIT_ONE_ASCII_BYTE (c); \ | |
17052 | 4154 } \ |
4155 else \ | |
4156 { \ | |
88365 | 4157 EMIT_ONE_ASCII_BYTE ('$'); \ |
4158 if (! CHARSET_ISO_CHARS_96 (charset)) \ | |
17052 | 4159 { \ |
88365 | 4160 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
|
4161 || reg != 0 \ |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4162 || final_char < '@' || final_char > 'B') \ |
88365 | 4163 EMIT_ONE_ASCII_BYTE (intermediate_char_94[reg]); \ |
17052 | 4164 } \ |
4165 else \ | |
88365 | 4166 EMIT_ONE_ASCII_BYTE (intermediate_char_96[reg]); \ |
17052 | 4167 } \ |
88365 | 4168 EMIT_ONE_ASCII_BYTE (final_char); \ |
4169 \ | |
4170 CODING_ISO_DESIGNATION (coding, reg) = CHARSET_ID (charset); \ | |
17052 | 4171 } while (0) |
4172 | |
88365 | 4173 |
17052 | 4174 /* The following two macros produce codes (control character or escape |
4175 sequence) for ISO2022 single-shift functions (single-shift-2 and | |
4176 single-shift-3). */ | |
4177 | |
88365 | 4178 #define ENCODE_SINGLE_SHIFT_2 \ |
4179 do { \ | |
4180 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
4181 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'N'); \ | |
4182 else \ | |
4183 EMIT_ONE_BYTE (ISO_CODE_SS2); \ | |
4184 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
17052 | 4185 } while (0) |
4186 | |
88365 | 4187 |
4188 #define ENCODE_SINGLE_SHIFT_3 \ | |
4189 do { \ | |
4190 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
4191 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'O'); \ | |
4192 else \ | |
4193 EMIT_ONE_BYTE (ISO_CODE_SS3); \ | |
4194 CODING_ISO_SINGLE_SHIFTING (coding) = 1; \ | |
17052 | 4195 } while (0) |
4196 | |
88365 | 4197 |
17052 | 4198 /* The following four macros produce codes (control character or |
4199 escape sequence) for ISO2022 locking-shift functions (shift-in, | |
4200 shift-out, locking-shift-2, and locking-shift-3). */ | |
4201 | |
88365 | 4202 #define ENCODE_SHIFT_IN \ |
4203 do { \ | |
4204 EMIT_ONE_ASCII_BYTE (ISO_CODE_SI); \ | |
4205 CODING_ISO_INVOCATION (coding, 0) = 0; \ | |
17052 | 4206 } while (0) |
4207 | |
88365 | 4208 |
4209 #define ENCODE_SHIFT_OUT \ | |
4210 do { \ | |
4211 EMIT_ONE_ASCII_BYTE (ISO_CODE_SO); \ | |
4212 CODING_ISO_INVOCATION (coding, 0) = 1; \ | |
17052 | 4213 } while (0) |
4214 | |
88365 | 4215 |
4216 #define ENCODE_LOCKING_SHIFT_2 \ | |
4217 do { \ | |
4218 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
4219 CODING_ISO_INVOCATION (coding, 0) = 2; \ | |
17052 | 4220 } while (0) |
4221 | |
88365 | 4222 |
4223 #define ENCODE_LOCKING_SHIFT_3 \ | |
4224 do { \ | |
4225 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, 'n'); \ | |
4226 CODING_ISO_INVOCATION (coding, 0) = 3; \ | |
17052 | 4227 } while (0) |
4228 | |
88365 | 4229 |
18766 | 4230 /* Produce codes for a DIMENSION1 character whose character set is |
4231 CHARSET and whose position-code is C1. Designation and invocation | |
17052 | 4232 sequences are also produced in advance if necessary. */ |
4233 | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4234 #define ENCODE_ISO_CHARACTER_DIMENSION1(charset, c1) \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4235 do { \ |
88365 | 4236 int id = CHARSET_ID (charset); \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4237 \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4238 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
|
4239 && id == charset_ascii) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4240 { \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4241 id = charset_jisx0201_roman; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4242 charset = CHARSET_FROM_ID (id); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4243 } \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4244 \ |
88365 | 4245 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4246 { \ |
88365 | 4247 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ |
4248 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4249 else \ |
88365 | 4250 EMIT_ONE_BYTE (c1 | 0x80); \ |
4251 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4252 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4253 } \ |
88365 | 4254 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
|
4255 { \ |
88365 | 4256 EMIT_ONE_ASCII_BYTE (c1 & 0x7F); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4257 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4258 } \ |
88365 | 4259 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
|
4260 { \ |
88365 | 4261 EMIT_ONE_BYTE (c1 | 0x80); \ |
19285
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4262 break; \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4263 } \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4264 else \ |
af3d00fde172
(Fset_terminal_coding_system_internal): Set
Kenichi Handa <handa@m17n.org>
parents:
19280
diff
changeset
|
4265 /* 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
|
4266 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
|
4267 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
|
4268 character. */ \ |
88365 | 4269 dst = encode_invocation_designation (charset, coding, dst, \ |
4270 &produced_chars); \ | |
17052 | 4271 } while (1) |
4272 | |
88365 | 4273 |
4274 /* Produce codes for a DIMENSION2 character whose character set is | |
4275 CHARSET and whose position-codes are C1 and C2. Designation and | |
4276 invocation codes are also produced in advance if necessary. */ | |
4277 | |
4278 #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
|
4279 do { \ |
88365 | 4280 int id = CHARSET_ID (charset); \ |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4281 \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4282 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
|
4283 && id == charset_jisx0208) \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4284 { \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4285 id = charset_jisx0208_1978; \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4286 charset = CHARSET_FROM_ID (id); \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4287 } \ |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4288 \ |
88365 | 4289 if (CODING_ISO_SINGLE_SHIFTING (coding)) \ |
4290 { \ | |
4291 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS) \ | |
4292 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
4293 else \ | |
4294 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
4295 CODING_ISO_SINGLE_SHIFTING (coding) = 0; \ | |
4296 break; \ | |
4297 } \ | |
4298 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 0)) \ | |
4299 { \ | |
4300 EMIT_TWO_ASCII_BYTES ((c1) & 0x7F, (c2) & 0x7F); \ | |
4301 break; \ | |
4302 } \ | |
4303 else if (id == CODING_ISO_INVOKED_CHARSET (coding, 1)) \ | |
4304 { \ | |
4305 EMIT_TWO_BYTES ((c1) | 0x80, (c2) | 0x80); \ | |
4306 break; \ | |
4307 } \ | |
4308 else \ | |
4309 /* Since CHARSET is not yet invoked to any graphic planes, we \ | |
4310 must invoke it, or, at first, designate it to some graphic \ | |
4311 register. Then repeat the loop to actually produce the \ | |
4312 character. */ \ | |
4313 dst = encode_invocation_designation (charset, coding, dst, \ | |
4314 &produced_chars); \ | |
4315 } while (1) | |
4316 | |
4317 | |
4318 #define ENCODE_ISO_CHARACTER(charset, c) \ | |
4319 do { \ | |
4320 int code = ENCODE_CHAR ((charset),(c)); \ | |
4321 \ | |
4322 if (CHARSET_DIMENSION (charset) == 1) \ | |
4323 ENCODE_ISO_CHARACTER_DIMENSION1 ((charset), code); \ | |
4324 else \ | |
4325 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
|
4326 } while (0) |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4327 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
4328 |
17052 | 4329 /* Produce designation and invocation codes at a place pointed by DST |
88365 | 4330 to use CHARSET. The element `spec.iso_2022' of *CODING is updated. |
17052 | 4331 Return new DST. */ |
4332 | |
4333 unsigned char * | |
88365 | 4334 encode_invocation_designation (charset, coding, dst, p_nchars) |
4335 struct charset *charset; | |
17052 | 4336 struct coding_system *coding; |
4337 unsigned char *dst; | |
88365 | 4338 int *p_nchars; |
17052 | 4339 { |
88365 | 4340 int multibytep = coding->dst_multibyte; |
4341 int produced_chars = *p_nchars; | |
17052 | 4342 int reg; /* graphic register number */ |
88365 | 4343 int id = CHARSET_ID (charset); |
17052 | 4344 |
4345 /* At first, check designations. */ | |
4346 for (reg = 0; reg < 4; reg++) | |
88365 | 4347 if (id == CODING_ISO_DESIGNATION (coding, reg)) |
17052 | 4348 break; |
4349 | |
4350 if (reg >= 4) | |
4351 { | |
4352 /* CHARSET is not yet designated to any graphic registers. */ | |
4353 /* At first check the requested designation. */ | |
88365 | 4354 reg = CODING_ISO_REQUEST (coding, id); |
4355 if (reg < 0) | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
4356 /* Since CHARSET requests no special designation, designate it |
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
4357 to graphic register 0. */ |
17052 | 4358 reg = 0; |
4359 | |
4360 ENCODE_DESIGNATION (charset, reg, coding); | |
4361 } | |
4362 | |
88365 | 4363 if (CODING_ISO_INVOCATION (coding, 0) != reg |
4364 && CODING_ISO_INVOCATION (coding, 1) != reg) | |
17052 | 4365 { |
4366 /* Since the graphic register REG is not invoked to any graphic | |
4367 planes, invoke it to graphic plane 0. */ | |
4368 switch (reg) | |
4369 { | |
4370 case 0: /* graphic register 0 */ | |
4371 ENCODE_SHIFT_IN; | |
4372 break; | |
4373 | |
4374 case 1: /* graphic register 1 */ | |
4375 ENCODE_SHIFT_OUT; | |
4376 break; | |
4377 | |
4378 case 2: /* graphic register 2 */ | |
88365 | 4379 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
17052 | 4380 ENCODE_SINGLE_SHIFT_2; |
4381 else | |
4382 ENCODE_LOCKING_SHIFT_2; | |
4383 break; | |
4384 | |
4385 case 3: /* graphic register 3 */ | |
88365 | 4386 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT) |
17052 | 4387 ENCODE_SINGLE_SHIFT_3; |
4388 else | |
4389 ENCODE_LOCKING_SHIFT_3; | |
4390 break; | |
4391 } | |
4392 } | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4393 |
88365 | 4394 *p_nchars = produced_chars; |
17052 | 4395 return dst; |
4396 } | |
4397 | |
4398 /* The following three macros produce codes for indicating direction | |
4399 of text. */ | |
88365 | 4400 #define ENCODE_CONTROL_SEQUENCE_INTRODUCER \ |
4401 do { \ | |
4402 if (CODING_ISO_FLAGS (coding) == CODING_ISO_FLAG_SEVEN_BITS) \ | |
4403 EMIT_TWO_ASCII_BYTES (ISO_CODE_ESC, '['); \ | |
4404 else \ | |
4405 EMIT_ONE_BYTE (ISO_CODE_CSI); \ | |
17052 | 4406 } while (0) |
4407 | |
88365 | 4408 |
4409 #define ENCODE_DIRECTION_R2L() \ | |
4410 do { \ | |
4411 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
4412 EMIT_TWO_ASCII_BYTES ('2', ']'); \ | |
4413 } while (0) | |
4414 | |
4415 | |
4416 #define ENCODE_DIRECTION_L2R() \ | |
4417 do { \ | |
4418 ENCODE_CONTROL_SEQUENCE_INTRODUCER (dst); \ | |
4419 EMIT_TWO_ASCII_BYTES ('0', ']'); \ | |
4420 } while (0) | |
4421 | |
17052 | 4422 |
4423 /* Produce codes for designation and invocation to reset the graphic | |
4424 planes and registers to initial state. */ | |
88365 | 4425 #define ENCODE_RESET_PLANE_AND_REGISTER() \ |
4426 do { \ | |
4427 int reg; \ | |
4428 struct charset *charset; \ | |
4429 \ | |
4430 if (CODING_ISO_INVOCATION (coding, 0) != 0) \ | |
4431 ENCODE_SHIFT_IN; \ | |
4432 for (reg = 0; reg < 4; reg++) \ | |
4433 if (CODING_ISO_INITIAL (coding, reg) >= 0 \ | |
4434 && (CODING_ISO_DESIGNATION (coding, reg) \ | |
4435 != CODING_ISO_INITIAL (coding, reg))) \ | |
4436 { \ | |
4437 charset = CHARSET_FROM_ID (CODING_ISO_INITIAL (coding, reg)); \ | |
4438 ENCODE_DESIGNATION (charset, reg, coding); \ | |
4439 } \ | |
17052 | 4440 } while (0) |
4441 | |
88365 | 4442 |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4443 /* 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
|
4444 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
|
4445 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4446 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
|
4447 find all the necessary designations. */ |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
4448 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4449 static unsigned char * |
88365 | 4450 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
|
4451 struct coding_system *coding; |
88365 | 4452 int *charbuf, *charbuf_end; |
59168
0345f2b10f1d
(decode_coding_XXX, decode_composition_emacs_mule)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
59095
diff
changeset
|
4453 unsigned char *dst; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4454 { |
88365 | 4455 struct charset *charset; |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4456 /* 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
|
4457 int r[4]; |
88365 | 4458 int c, found = 0, reg; |
4459 int produced_chars = 0; | |
4460 int multibytep = coding->dst_multibyte; | |
4461 Lisp_Object attrs; | |
4462 Lisp_Object charset_list; | |
4463 | |
4464 attrs = CODING_ID_ATTRS (coding->id); | |
4465 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
4466 if (EQ (charset_list, Qiso_2022)) | |
4467 charset_list = Viso_2022_charset_list; | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4468 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4469 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4470 r[reg] = -1; |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4471 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4472 while (found < 4) |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4473 { |
88365 | 4474 int id; |
4475 | |
4476 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4477 if (c == '\n') |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4478 break; |
88365 | 4479 charset = char_charset (c, charset_list, NULL); |
4480 id = CHARSET_ID (charset); | |
4481 reg = CODING_ISO_REQUEST (coding, id); | |
4482 if (reg >= 0 && r[reg] < 0) | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4483 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4484 found++; |
88365 | 4485 r[reg] = id; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4486 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4487 } |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4488 |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4489 if (found) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4490 { |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4491 for (reg = 0; reg < 4; reg++) |
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4492 if (r[reg] >= 0 |
88365 | 4493 && CODING_ISO_DESIGNATION (coding, reg) != r[reg]) |
4494 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
|
4495 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4496 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4497 return dst; |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4498 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4499 |
17052 | 4500 /* See the above "GENERAL NOTES on `encode_coding_XXX ()' functions". */ |
4501 | |
88365 | 4502 static int |
4503 encode_coding_iso_2022 (coding) | |
17052 | 4504 struct coding_system *coding; |
4505 { | |
88365 | 4506 int multibytep = coding->dst_multibyte; |
4507 int *charbuf = coding->charbuf; | |
4508 int *charbuf_end = charbuf + coding->charbuf_used; | |
4509 unsigned char *dst = coding->destination + coding->produced; | |
4510 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
4511 int safe_room = 16; | |
4512 int bol_designation | |
4513 = (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DESIGNATE_AT_BOL | |
4514 && CODING_ISO_BOL (coding)); | |
4515 int produced_chars = 0; | |
4516 Lisp_Object attrs, eol_type, charset_list; | |
4517 int ascii_compatible; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4518 int c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4519 int preferred_charset_id = -1; |
88365 | 4520 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4521 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
|
4522 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
|
4523 if (VECTORP (eol_type)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4524 eol_type = Qunix; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4525 |
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
4526 setup_iso_safe_charsets (attrs); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4527 /* 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
|
4528 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
|
4529 coding->safe_charsets = SDATA (CODING_ATTR_SAFE_CHARSETS (attrs)); |
88365 | 4530 |
4531 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
4532 | |
4533 while (charbuf < charbuf_end) | |
4534 { | |
4535 ASSURE_DESTINATION (safe_room); | |
4536 | |
4537 if (bol_designation) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4538 { |
88365 | 4539 unsigned char *dst_prev = dst; |
4540 | |
17725
92f042f73be2
(Valternate_charset_table): The valiable deleted.
Kenichi Handa <handa@m17n.org>
parents:
17717
diff
changeset
|
4541 /* We have to produce designation sequences if any now. */ |
88365 | 4542 dst = encode_designation_at_bol (coding, charbuf, charbuf_end, dst); |
4543 bol_designation = 0; | |
4544 /* We are sure that designation sequences are all ASCII bytes. */ | |
4545 produced_chars += dst - dst_prev; | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4546 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
4547 |
88365 | 4548 c = *charbuf++; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4549 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4550 if (c < 0) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4551 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4552 /* Handle an annotation. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4553 switch (*charbuf) |
17052 | 4554 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4555 case CODING_ANNOTATE_COMPOSITION_MASK: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4556 /* Not yet implemented. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4557 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4558 case CODING_ANNOTATE_CHARSET_MASK: |
90014
ade0c9a12f99
(encode_coding_iso_2022): Fix handling of charset
Kenichi Handa <handa@m17n.org>
parents:
90011
diff
changeset
|
4559 preferred_charset_id = charbuf[2]; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4560 if (preferred_charset_id >= 0 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4561 && NILP (Fmemq (make_number (preferred_charset_id), |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4562 charset_list))) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4563 preferred_charset_id = -1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4564 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4565 default: |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4566 abort (); |
26847 | 4567 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4568 charbuf += -c - 1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4569 continue; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4570 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4571 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4572 /* 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
|
4573 if (c < 0x20 || c == 0x7F) |
17052 | 4574 { |
88365 | 4575 if (c == '\n' |
4576 || (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
|
4577 { |
88365 | 4578 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) |
4579 ENCODE_RESET_PLANE_AND_REGISTER (); | |
4580 if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_INIT_AT_BOL) | |
4581 { | |
4582 int i; | |
4583 | |
4584 for (i = 0; i < 4; i++) | |
4585 CODING_ISO_DESIGNATION (coding, i) | |
4586 = CODING_ISO_INITIAL (coding, i); | |
4587 } | |
4588 bol_designation | |
4589 = 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
|
4590 } |
88365 | 4591 else if (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_CNTL) |
4592 ENCODE_RESET_PLANE_AND_REGISTER (); | |
4593 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
|
4594 } |
88365 | 4595 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
|
4596 { |
88365 | 4597 if (ascii_compatible) |
4598 EMIT_ONE_ASCII_BYTE (c); | |
4599 else | |
88681
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4600 { |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4601 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
|
4602 ENCODE_ISO_CHARACTER (charset, c); |
2cdfbffa8a0d
(CODING_ISO_FLAG_USE_ROMAN): New macro
Kenichi Handa <handa@m17n.org>
parents:
88669
diff
changeset
|
4603 } |
17052 | 4604 } |
88690
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4605 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
|
4606 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
4607 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
|
4608 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
|
4609 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4610 else |
88365 | 4611 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4612 struct charset *charset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4613 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4614 if (preferred_charset_id >= 0) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4615 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4616 charset = CHARSET_FROM_ID (preferred_charset_id); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4617 if (! CHAR_CHARSET_P (c, charset)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4618 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
|
4619 } |
42104
d69c2368e549
(DECODE_COMPOSITION_END): Fixed a typo in the last
Sam Steingold <sds@gnu.org>
parents:
42103
diff
changeset
|
4620 else |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4621 charset = char_charset (c, charset_list, NULL); |
88365 | 4622 if (!charset) |
17052 | 4623 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4624 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
|
4625 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4626 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4627 charset = CHARSET_FROM_ID (charset_ascii); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4628 } |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4629 else |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4630 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4631 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
4632 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
|
4633 } |
19052
302a7b2a6948
(encode_coding_iso2022): Write out invalid multibyte
Kenichi Handa <handa@m17n.org>
parents:
18910
diff
changeset
|
4634 } |
88365 | 4635 ENCODE_ISO_CHARACTER (charset, c); |
4636 } | |
4637 } | |
4638 | |
4639 if (coding->mode & CODING_MODE_LAST_BLOCK | |
4640 && CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_RESET_AT_EOL) | |
4641 { | |
4642 ASSURE_DESTINATION (safe_room); | |
4643 ENCODE_RESET_PLANE_AND_REGISTER (); | |
4644 } | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4645 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 4646 CODING_ISO_BOL (coding) = bol_designation; |
4647 coding->produced_char += produced_chars; | |
4648 coding->produced = dst - coding->destination; | |
4649 return 0; | |
17052 | 4650 } |
4651 | |
4652 | |
88365 | 4653 /*** 8,9. SJIS and BIG5 handlers ***/ |
4654 | |
4655 /* Although SJIS and BIG5 are not ISO's coding system, they are used | |
17052 | 4656 quite widely. So, for the moment, Emacs supports them in the bare |
4657 C code. But, in the future, they may be supported only by CCL. */ | |
4658 | |
4659 /* SJIS is a coding system encoding three character sets: ASCII, right | |
4660 half of JISX0201-Kana, and JISX0208. An ASCII character is encoded | |
4661 as is. A character of charset katakana-jisx0201 is encoded by | |
4662 "position-code + 0x80". A character of charset japanese-jisx0208 | |
4663 is encoded in 2-byte but two position-codes are divided and shifted | |
88365 | 4664 so that it fit in the range below. |
17052 | 4665 |
4666 --- CODE RANGE of SJIS --- | |
4667 (character set) (range) | |
4668 ASCII 0x00 .. 0x7F | |
88365 | 4669 KATAKANA-JISX0201 0xA0 .. 0xDF |
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
4670 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
|
4671 (2nd byte) 0x40 .. 0x7E and 0x80 .. 0xFC |
17052 | 4672 ------------------------------- |
4673 | |
4674 */ | |
4675 | |
4676 /* BIG5 is a coding system encoding two character sets: ASCII and | |
4677 Big5. An ASCII character is encoded as is. Big5 is a two-byte | |
88365 | 4678 character set and is encoded in two-byte. |
17052 | 4679 |
4680 --- CODE RANGE of BIG5 --- | |
4681 (character set) (range) | |
4682 ASCII 0x00 .. 0x7F | |
4683 Big5 (1st byte) 0xA1 .. 0xFE | |
4684 (2nd byte) 0x40 .. 0x7E and 0xA1 .. 0xFE | |
4685 -------------------------- | |
4686 | |
88365 | 4687 */ |
17052 | 4688 |
4689 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
4690 Check if a text is encoded in SJIS. If it is, return | |
88365 | 4691 CATEGORY_MASK_SJIS, else return 0. */ |
17052 | 4692 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
4693 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4694 detect_coding_sjis (coding, detect_info) |
88365 | 4695 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4696 struct coding_detection_info *detect_info; |
17052 | 4697 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4698 const unsigned char *src = coding->source, *src_base; |
89483 | 4699 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 4700 int multibytep = coding->src_multibyte; |
4701 int consumed_chars = 0; | |
4702 int found = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4703 int c; |
103762
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4704 Lisp_Object attrs, charset_list; |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4705 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
|
4706 |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4707 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
|
4708 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
|
4709 = (XINT (Flength (charset_list)) > 3 ? 0xFC : 0xEF); |
88365 | 4710 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4711 detect_info->checked |= CATEGORY_MASK_SJIS; |
88365 | 4712 /* A coding system of this category is always ASCII compatible. */ |
4713 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
|
4714 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4715 while (1) |
17052 | 4716 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4717 src_base = src; |
88365 | 4718 ONE_MORE_BYTE (c); |
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
4719 if (c < 0x80) |
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
4720 continue; |
103762
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4721 if ((c >= 0x81 && c <= 0x9F) |
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
4722 || (c >= 0xE0 && c <= max_first_byte_of_2_byte_code)) |
17052 | 4723 { |
88365 | 4724 ONE_MORE_BYTE (c); |
36647
0a75ccbe42b2
(detect_coding_sjis): Do more rigid check.
Kenichi Handa <handa@m17n.org>
parents:
36520
diff
changeset
|
4725 if (c < 0x40 || c == 0x7F || c > 0xFC) |
88365 | 4726 break; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4727 found = CATEGORY_MASK_SJIS; |
17052 | 4728 } |
88365 | 4729 else if (c >= 0xA0 && c < 0xE0) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4730 found = CATEGORY_MASK_SJIS; |
88365 | 4731 else |
4732 break; | |
4733 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4734 detect_info->rejected |= CATEGORY_MASK_SJIS; |
88365 | 4735 return 0; |
4736 | |
4737 no_more_source: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4738 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
|
4739 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4740 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
|
4741 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4742 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4743 detect_info->found |= found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4744 return 1; |
17052 | 4745 } |
4746 | |
4747 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". | |
4748 Check if a text is encoded in BIG5. If it is, return | |
88365 | 4749 CATEGORY_MASK_BIG5, else return 0. */ |
17052 | 4750 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
4751 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4752 detect_coding_big5 (coding, detect_info) |
88365 | 4753 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4754 struct coding_detection_info *detect_info; |
17052 | 4755 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4756 const unsigned char *src = coding->source, *src_base; |
89483 | 4757 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 4758 int multibytep = coding->src_multibyte; |
4759 int consumed_chars = 0; | |
4760 int found = 0; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4761 int c; |
88365 | 4762 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4763 detect_info->checked |= CATEGORY_MASK_BIG5; |
88365 | 4764 /* A coding system of this category is always ASCII compatible. */ |
4765 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
|
4766 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4767 while (1) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4768 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4769 src_base = src; |
88365 | 4770 ONE_MORE_BYTE (c); |
4771 if (c < 0x80) | |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4772 continue; |
88365 | 4773 if (c >= 0xA1) |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4774 { |
88365 | 4775 ONE_MORE_BYTE (c); |
4776 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
|
4777 return 0; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4778 found = CATEGORY_MASK_BIG5; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4779 } |
88365 | 4780 else |
4781 break; | |
4782 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4783 detect_info->rejected |= CATEGORY_MASK_BIG5; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4784 return 0; |
88365 | 4785 |
4786 no_more_source: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4787 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
|
4788 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4789 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
|
4790 return 0; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
4791 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4792 detect_info->found |= found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4793 return 1; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4794 } |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
4795 |
17052 | 4796 /* See the above "GENERAL NOTES on `decode_coding_XXX ()' functions". |
4797 If SJIS_P is 1, decode SJIS text, else decode BIG5 test. */ | |
4798 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4799 static void |
88365 | 4800 decode_coding_sjis (coding) |
17052 | 4801 struct coding_system *coding; |
4802 { | |
89483 | 4803 const unsigned char *src = coding->source + coding->consumed; |
4804 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
|
4805 const unsigned char *src_base; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4806 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
|
4807 /* 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
|
4808 the end. */ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4809 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
4810 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2); |
88365 | 4811 int consumed_chars = 0, consumed_chars_base; |
4812 int multibytep = coding->src_multibyte; | |
4813 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
|
4814 struct charset *charset_kanji2; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4815 Lisp_Object attrs, charset_list, val; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4816 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4817 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4818 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
|
4819 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
|
4820 !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
|
4821 int byte_after_cr = -1; |
88365 | 4822 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4823 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 4824 |
4825 val = charset_list; | |
4826 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
|
4827 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
|
4828 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
|
4829 charset_kanji2 = NILP (val) ? NULL : CHARSET_FROM_ID (XINT (XCAR (val))); |
88365 | 4830 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4831 while (1) |
17052 | 4832 { |
88365 | 4833 int c, c1; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4834 struct charset *charset; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4835 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4836 src_base = src; |
88365 | 4837 consumed_chars_base = consumed_chars; |
4838 | |
4839 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
|
4840 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4841 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
|
4842 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4843 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4844 } |
88365 | 4845 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4846 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
|
4847 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
|
4848 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4849 ONE_MORE_BYTE (c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4850 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4851 goto invalid_code; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4852 if (c < 0x80) |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4853 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4854 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
|
4855 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
|
4856 charset = charset_roman; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4857 } |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4858 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
|
4859 goto invalid_code; |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4860 else if (c >= 0xA1 && c <= 0xDF) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4861 { |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4862 /* SJIS -> JISX0201-Kana */ |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4863 c &= 0x7F; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4864 charset = charset_kana; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4865 } |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4866 else if (c <= 0xEF) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4867 { |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4868 /* SJIS -> JISX0208 */ |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4869 ONE_MORE_BYTE (c1); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4870 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
|
4871 goto invalid_code; |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4872 c = (c << 8) | c1; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4873 SJIS_TO_JIS (c); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4874 charset = charset_kanji; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4875 } |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4876 else if (c <= 0xFC && charset_kanji2) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4877 { |
89779
74c503490829
(decode_coding_sjis): Fix comment.
Kenichi Handa <handa@m17n.org>
parents:
89764
diff
changeset
|
4878 /* SJIS -> JISX0213-2 */ |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4879 ONE_MORE_BYTE (c1); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4880 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
|
4881 goto invalid_code; |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4882 c = (c << 8) | c1; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4883 SJIS_TO_JIS2 (c); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4884 charset = charset_kanji2; |
17052 | 4885 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
4886 else |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
4887 goto invalid_code; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4888 if (charset->id != charset_ascii |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4889 && last_id != charset->id) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4890 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4891 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4892 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
|
4893 last_id = charset->id; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4894 last_offset = char_offset; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4895 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4896 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
88365 | 4897 *charbuf++ = c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4898 char_offset++; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4899 continue; |
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4900 |
88365 | 4901 invalid_code: |
17052 | 4902 src = src_base; |
88365 | 4903 consumed_chars = consumed_chars_base; |
4904 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4905 *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
|
4906 char_offset++; |
88365 | 4907 coding->errors++; |
4908 } | |
4909 | |
4910 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4911 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4912 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 4913 coding->consumed_char += consumed_chars_base; |
4914 coding->consumed = src_base - coding->source; | |
4915 coding->charbuf_used = charbuf - coding->charbuf; | |
4916 } | |
4917 | |
4918 static void | |
4919 decode_coding_big5 (coding) | |
4920 struct coding_system *coding; | |
4921 { | |
89483 | 4922 const unsigned char *src = coding->source + coding->consumed; |
4923 const unsigned char *src_end = coding->source + coding->src_bytes; | |
4924 const unsigned char *src_base; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4925 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
|
4926 /* 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
|
4927 the end. */ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4928 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
4929 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2); |
88365 | 4930 int consumed_chars = 0, consumed_chars_base; |
4931 int multibytep = coding->src_multibyte; | |
4932 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
|
4933 Lisp_Object attrs, charset_list, val; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4934 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4935 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4936 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
|
4937 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
|
4938 !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
|
4939 int byte_after_cr = -1; |
88365 | 4940 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4941 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 4942 val = charset_list; |
4943 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
4944 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
4945 | |
4946 while (1) | |
4947 { | |
4948 int c, c1; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4949 struct charset *charset; |
88365 | 4950 |
4951 src_base = src; | |
4952 consumed_chars_base = consumed_chars; | |
4953 | |
4954 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
|
4955 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4956 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
|
4957 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4958 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
4959 } |
88365 | 4960 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4961 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
|
4962 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
|
4963 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4964 ONE_MORE_BYTE (c); |
88365 | 4965 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4966 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
4967 goto invalid_code; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4968 if (c < 0x80) |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4969 { |
92406
c36bda0a03cc
(decode_coding_big5, produce_chars): Fix typos in last
Andreas Schwab <schwab@suse.de>
parents:
92399
diff
changeset
|
4970 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
|
4971 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
|
4972 charset = charset_roman; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
4973 } |
88365 | 4974 else |
4975 { | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4976 /* BIG5 -> Big5 */ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4977 if (c < 0xA1 || c > 0xFE) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4978 goto invalid_code; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4979 ONE_MORE_BYTE (c1); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4980 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
|
4981 goto invalid_code; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4982 c = c << 8 | c1; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4983 charset = charset_big5; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4984 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4985 if (charset->id != charset_ascii |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4986 && last_id != charset->id) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4987 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4988 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
4989 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
|
4990 last_id = charset->id; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4991 last_offset = char_offset; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4992 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
4993 CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); |
88365 | 4994 *charbuf++ = c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
4995 char_offset++; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4996 continue; |
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
4997 |
88365 | 4998 invalid_code: |
17052 | 4999 src = src_base; |
88365 | 5000 consumed_chars = consumed_chars_base; |
5001 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5002 *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
|
5003 char_offset++; |
88365 | 5004 coding->errors++; |
5005 } | |
5006 | |
5007 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5008 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5009 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 5010 coding->consumed_char += consumed_chars_base; |
5011 coding->consumed = src_base - coding->source; | |
5012 coding->charbuf_used = charbuf - coding->charbuf; | |
17052 | 5013 } |
5014 | |
5015 /* 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
|
5016 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
|
5017 `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
|
5018 are sure that all these charsets are registered as official charset |
17052 | 5019 (i.e. do not have extended leading-codes). Characters of other |
5020 charsets are produced without any encoding. If SJIS_P is 1, encode | |
5021 SJIS text, else encode BIG5 text. */ | |
5022 | |
88365 | 5023 static int |
5024 encode_coding_sjis (coding) | |
17052 | 5025 struct coding_system *coding; |
5026 { | |
88365 | 5027 int multibytep = coding->dst_multibyte; |
5028 int *charbuf = coding->charbuf; | |
5029 int *charbuf_end = charbuf + coding->charbuf_used; | |
5030 unsigned char *dst = coding->destination + coding->produced; | |
5031 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5032 int safe_room = 4; | |
5033 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5034 Lisp_Object attrs, charset_list, val; |
88365 | 5035 int ascii_compatible; |
5036 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
|
5037 struct charset *charset_kanji2; |
88365 | 5038 int c; |
5039 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5040 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 5041 val = charset_list; |
5042 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
5043 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
|
5044 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
|
5045 charset_kanji2 = NILP (val) ? NULL : CHARSET_FROM_ID (XINT (XCAR (val))); |
88365 | 5046 |
5047 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
5048 | |
5049 while (charbuf < charbuf_end) | |
5050 { | |
5051 ASSURE_DESTINATION (safe_room); | |
5052 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5053 /* Now encode the character C. */ |
88365 | 5054 if (ASCII_CHAR_P (c) && ascii_compatible) |
5055 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
|
5056 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
|
5057 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5058 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
|
5059 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
|
5060 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5061 else |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5062 { |
88365 | 5063 unsigned code; |
5064 struct charset *charset = char_charset (c, charset_list, &code); | |
5065 | |
5066 if (!charset) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5067 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5068 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
|
5069 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5070 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5071 charset = CHARSET_FROM_ID (charset_ascii); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5072 } |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5073 else |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5074 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5075 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5076 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
|
5077 } |
88365 | 5078 } |
5079 if (code == CHARSET_INVALID_CODE (charset)) | |
5080 abort (); | |
5081 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
|
5082 { |
88365 | 5083 int c1, c2; |
5084 JIS_TO_SJIS (code); | |
5085 c1 = code >> 8, c2 = code & 0xFF; | |
5086 EMIT_TWO_BYTES (c1, c2); | |
5087 } | |
5088 else if (charset == charset_kana) | |
5089 EMIT_ONE_BYTE (code | 0x80); | |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5090 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
|
5091 { |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5092 int c1, c2; |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5093 |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5094 c1 = code >> 8; |
103762
e72df94a89ca
(detect_coding_sjis): Handle shift_jis-2004 correctly.
Kenichi Handa <handa@m17n.org>
parents:
103655
diff
changeset
|
5095 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
|
5096 || c1 == 0x28 |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5097 || (c1 >= 0x2C && c1 <= 0x2F) || c1 >= 0x6E) |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5098 { |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5099 JIS_TO_SJIS2 (code); |
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5100 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
|
5101 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
|
5102 } |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5103 else |
89764
e3d26232ab78
(decode_coding_sjis): Handle 4th charset (typically JISX0212).
Kenichi Handa <handa@m17n.org>
parents:
89759
diff
changeset
|
5104 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
|
5105 } |
17052 | 5106 else |
88365 | 5107 EMIT_ONE_ASCII_BYTE (code & 0x7F); |
5108 } | |
5109 } | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5110 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5111 coding->produced_char += produced_chars; |
5112 coding->produced = dst - coding->destination; | |
5113 return 0; | |
5114 } | |
5115 | |
5116 static int | |
5117 encode_coding_big5 (coding) | |
5118 struct coding_system *coding; | |
5119 { | |
5120 int multibytep = coding->dst_multibyte; | |
5121 int *charbuf = coding->charbuf; | |
5122 int *charbuf_end = charbuf + coding->charbuf_used; | |
5123 unsigned char *dst = coding->destination + coding->produced; | |
5124 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5125 int safe_room = 4; | |
5126 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5127 Lisp_Object attrs, charset_list, val; |
88365 | 5128 int ascii_compatible; |
5129 struct charset *charset_roman, *charset_big5; | |
5130 int c; | |
5131 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5132 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 5133 val = charset_list; |
5134 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
5135 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
5136 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
5137 | |
5138 while (charbuf < charbuf_end) | |
5139 { | |
5140 ASSURE_DESTINATION (safe_room); | |
5141 c = *charbuf++; | |
5142 /* Now encode the character C. */ | |
5143 if (ASCII_CHAR_P (c) && ascii_compatible) | |
5144 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
|
5145 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
|
5146 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5147 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
|
5148 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
|
5149 } |
88365 | 5150 else |
5151 { | |
5152 unsigned code; | |
5153 struct charset *charset = char_charset (c, charset_list, &code); | |
5154 | |
5155 if (! charset) | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5156 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5157 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
|
5158 { |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5159 code = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5160 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
|
5161 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5162 else |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5163 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5164 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5165 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
|
5166 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5167 } |
88365 | 5168 if (code == CHARSET_INVALID_CODE (charset)) |
5169 abort (); | |
5170 if (charset == charset_big5) | |
5171 { | |
5172 int c1, c2; | |
5173 | |
5174 c1 = code >> 8, c2 = code & 0xFF; | |
5175 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
|
5176 } |
17052 | 5177 else |
88365 | 5178 EMIT_ONE_ASCII_BYTE (code & 0x7F); |
17052 | 5179 } |
88365 | 5180 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5181 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5182 coding->produced_char += produced_chars; |
5183 coding->produced = dst - coding->destination; | |
5184 return 0; | |
17052 | 5185 } |
5186 | |
5187 | |
88365 | 5188 /*** 10. CCL handlers ***/ |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5189 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5190 /* See the above "GENERAL NOTES on `detect_coding_XXX ()' functions". |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5191 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
|
5192 encoder/decoder are written in CCL program. If it is, return |
88365 | 5193 CATEGORY_MASK_CCL, else return 0. */ |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5194 |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
5195 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5196 detect_coding_ccl (coding, detect_info) |
88365 | 5197 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5198 struct coding_detection_info *detect_info; |
88365 | 5199 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5200 const unsigned char *src = coding->source, *src_base; |
89483 | 5201 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 5202 int multibytep = coding->src_multibyte; |
5203 int consumed_chars = 0; | |
5204 int found = 0; | |
89848
3edfa038a435
(detect_coding_emacs_mule): Fix counting of encoded
Kenichi Handa <handa@m17n.org>
parents:
89842
diff
changeset
|
5205 unsigned char *valids; |
88365 | 5206 int head_ascii = coding->head_ascii; |
5207 Lisp_Object attrs; | |
5208 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5209 detect_info->checked |= CATEGORY_MASK_CCL; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5210 |
88365 | 5211 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
|
5212 valids = CODING_CCL_VALIDS (coding); |
88365 | 5213 attrs = CODING_ID_ATTRS (coding->id); |
5214 if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
5215 src += head_ascii; | |
5216 | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5217 while (1) |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5218 { |
88365 | 5219 int c; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5220 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5221 src_base = src; |
88365 | 5222 ONE_MORE_BYTE (c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5223 if (c < 0 || ! valids[c]) |
88365 | 5224 break; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5225 if ((valids[c] > 1)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5226 found = CATEGORY_MASK_CCL; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5227 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5228 detect_info->rejected |= CATEGORY_MASK_CCL; |
88365 | 5229 return 0; |
5230 | |
5231 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5232 detect_info->found |= found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5233 return 1; |
88365 | 5234 } |
5235 | |
5236 static void | |
5237 decode_coding_ccl (coding) | |
5238 struct coding_system *coding; | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5239 { |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
5240 const unsigned char *src = coding->source + coding->consumed; |
89483 | 5241 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
|
5242 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
|
5243 int *charbuf_end = coding->charbuf + coding->charbuf_size; |
88365 | 5244 int consumed_chars = 0; |
5245 int multibytep = coding->src_multibyte; | |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5246 struct ccl_program *ccl = &coding->spec.ccl->ccl; |
88365 | 5247 int source_charbuf[1024]; |
107506
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5248 int source_byteidx[1025]; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5249 Lisp_Object attrs, charset_list; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5250 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5251 CODING_GET_INFO (coding, attrs, charset_list); |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5252 |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5253 while (1) |
88365 | 5254 { |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
5255 const unsigned char *p = src; |
88365 | 5256 int i = 0; |
5257 | |
5258 if (multibytep) | |
107506
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5259 { |
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5260 while (i < 1024 && p < src_end) |
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5261 { |
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5262 source_byteidx[i] = p - src; |
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5263 source_charbuf[i++] = STRING_CHAR_ADVANCE (p); |
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5264 } |
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5265 source_byteidx[i] = p - src; |
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5266 } |
88365 | 5267 else |
5268 while (i < 1024 && p < src_end) | |
5269 source_charbuf[i++] = *p++; | |
89483 | 5270 |
88365 | 5271 if (p == src_end && coding->mode & CODING_MODE_LAST_BLOCK) |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5272 ccl->last_block = 1; |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5273 ccl_driver (ccl, source_charbuf, charbuf, i, charbuf_end - charbuf, |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5274 charset_list); |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5275 charbuf += ccl->produced; |
107506
cd151730b160
coding.c (decode_coding_ccl): Fix previous change for the multibyte case.
Kenichi Handa <handa@m17n.org>
parents:
107323
diff
changeset
|
5276 if (multibytep) |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5277 src += source_byteidx[ccl->consumed]; |
88365 | 5278 else |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5279 src += ccl->consumed; |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5280 consumed_chars += ccl->consumed; |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5281 if (p == src_end || ccl->status != CCL_STAT_SUSPEND_BY_SRC) |
88365 | 5282 break; |
5283 } | |
5284 | |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5285 switch (ccl->status) |
88365 | 5286 { |
5287 case CCL_STAT_SUSPEND_BY_SRC: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5288 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_SRC); |
88365 | 5289 break; |
5290 case CCL_STAT_SUSPEND_BY_DST: | |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
5291 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_DST); |
88365 | 5292 break; |
5293 case CCL_STAT_QUIT: | |
5294 case CCL_STAT_INVALID_CMD: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5295 record_conversion_result (coding, CODING_RESULT_INTERRUPT); |
88365 | 5296 break; |
5297 default: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5298 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5299 break; |
5300 } | |
5301 coding->consumed_char += consumed_chars; | |
5302 coding->consumed = src - coding->source; | |
5303 coding->charbuf_used = charbuf - coding->charbuf; | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5304 } |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5305 |
88365 | 5306 static int |
5307 encode_coding_ccl (coding) | |
5308 struct coding_system *coding; | |
5309 { | |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5310 struct ccl_program *ccl = &coding->spec.ccl->ccl; |
88365 | 5311 int multibytep = coding->dst_multibyte; |
5312 int *charbuf = coding->charbuf; | |
5313 int *charbuf_end = charbuf + coding->charbuf_used; | |
5314 unsigned char *dst = coding->destination + coding->produced; | |
5315 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5316 int destination_charbuf[1024]; | |
5317 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
|
5318 Lisp_Object attrs, charset_list; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5319 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5320 CODING_GET_INFO (coding, attrs, charset_list); |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5321 if (coding->consumed_char == coding->src_chars |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5322 && coding->mode & CODING_MODE_LAST_BLOCK) |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5323 ccl->last_block = 1; |
88365 | 5324 |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5325 while (charbuf < charbuf_end) |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5326 { |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5327 ccl_driver (ccl, charbuf, destination_charbuf, |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5328 charbuf_end - charbuf, 1024, charset_list); |
88365 | 5329 if (multibytep) |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5330 { |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5331 ASSURE_DESTINATION (ccl->produced * 2); |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5332 for (i = 0; i < ccl->produced; i++) |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5333 EMIT_ONE_BYTE (destination_charbuf[i] & 0xFF); |
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5334 } |
88365 | 5335 else |
5336 { | |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5337 ASSURE_DESTINATION (ccl->produced); |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5338 for (i = 0; i < ccl->produced; i++) |
88365 | 5339 *dst++ = destination_charbuf[i] & 0xFF; |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5340 produced_chars += ccl->produced; |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5341 } |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5342 charbuf += ccl->consumed; |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5343 if (ccl->status == CCL_STAT_QUIT |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5344 || ccl->status == CCL_STAT_INVALID_CMD) |
90346
bba59a8cdae0
(encode_coding_ccl): Allocate destination dynamically
Kenichi Handa <handa@m17n.org>
parents:
90336
diff
changeset
|
5345 break; |
88365 | 5346 } |
5347 | |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
5348 switch (ccl->status) |
88365 | 5349 { |
5350 case CCL_STAT_SUSPEND_BY_SRC: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5351 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_SRC); |
88365 | 5352 break; |
5353 case CCL_STAT_SUSPEND_BY_DST: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5354 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_DST); |
88365 | 5355 break; |
5356 case CCL_STAT_QUIT: | |
5357 case CCL_STAT_INVALID_CMD: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5358 record_conversion_result (coding, CODING_RESULT_INTERRUPT); |
88365 | 5359 break; |
5360 default: | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5361 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5362 break; |
5363 } | |
5364 | |
5365 coding->produced_char += produced_chars; | |
5366 coding->produced = dst - coding->destination; | |
5367 return 0; | |
5368 } | |
5369 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5370 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5371 |
88365 | 5372 /*** 10, 11. no-conversion handlers ***/ |
17052 | 5373 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5374 /* 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
|
5375 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5376 static void |
88365 | 5377 decode_coding_raw_text (coding) |
17052 | 5378 struct coding_system *coding; |
5379 { | |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
5380 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
|
5381 !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
|
5382 |
88365 | 5383 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
|
5384 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
|
5385 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
|
5386 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
|
5387 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5388 coding->consumed_char--; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5389 coding->consumed--; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5390 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
|
5391 } |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5392 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5393 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5394 } |
5395 | |
5396 static int | |
5397 encode_coding_raw_text (coding) | |
17052 | 5398 struct coding_system *coding; |
88365 | 5399 { |
5400 int multibytep = coding->dst_multibyte; | |
5401 int *charbuf = coding->charbuf; | |
5402 int *charbuf_end = coding->charbuf + coding->charbuf_used; | |
5403 unsigned char *dst = coding->destination + coding->produced; | |
5404 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
|
5405 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
|
5406 int c; |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5407 |
88365 | 5408 if (multibytep) |
5409 { | |
5410 int safe_room = MAX_MULTIBYTE_LENGTH * 2; | |
5411 | |
5412 if (coding->src_multibyte) | |
5413 while (charbuf < charbuf_end) | |
5414 { | |
5415 ASSURE_DESTINATION (safe_room); | |
5416 c = *charbuf++; | |
5417 if (ASCII_CHAR_P (c)) | |
5418 EMIT_ONE_ASCII_BYTE (c); | |
5419 else if (CHAR_BYTE8_P (c)) | |
5420 { | |
5421 c = CHAR_TO_BYTE8 (c); | |
5422 EMIT_ONE_BYTE (c); | |
5423 } | |
5424 else | |
5425 { | |
5426 unsigned char str[MAX_MULTIBYTE_LENGTH], *p0 = str, *p1 = str; | |
5427 | |
5428 CHAR_STRING_ADVANCE (c, p1); | |
5429 while (p0 < p1) | |
88950
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5430 { |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5431 EMIT_ONE_BYTE (*p0); |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5432 p0++; |
ad258ee59fbb
* coding.c (make_conversion_work_buffer): Adjusted for the change
Kenichi Handa <handa@m17n.org>
parents:
88936
diff
changeset
|
5433 } |
88365 | 5434 } |
5435 } | |
5436 else | |
5437 while (charbuf < charbuf_end) | |
5438 { | |
5439 ASSURE_DESTINATION (safe_room); | |
5440 c = *charbuf++; | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5441 EMIT_ONE_BYTE (c); |
88365 | 5442 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5443 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5444 else |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5445 { |
88365 | 5446 if (coding->src_multibyte) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5447 { |
88365 | 5448 int safe_room = MAX_MULTIBYTE_LENGTH; |
5449 | |
5450 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
|
5451 { |
88365 | 5452 ASSURE_DESTINATION (safe_room); |
5453 c = *charbuf++; | |
5454 if (ASCII_CHAR_P (c)) | |
5455 *dst++ = c; | |
5456 else if (CHAR_BYTE8_P (c)) | |
5457 *dst++ = CHAR_TO_BYTE8 (c); | |
5458 else | |
5459 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
|
5460 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5461 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5462 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5463 { |
88365 | 5464 ASSURE_DESTINATION (charbuf_end - charbuf); |
5465 while (charbuf < charbuf_end && dst < dst_end) | |
5466 *dst++ = *charbuf++; | |
89483 | 5467 } |
95353
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
5468 produced_chars = dst - (coding->destination + coding->produced); |
88365 | 5469 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5470 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
|
5471 coding->produced_char += produced_chars; |
88365 | 5472 coding->produced = dst - coding->destination; |
5473 return 0; | |
5474 } | |
5475 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5476 /* 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
|
5477 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
|
5478 is, return 1, else return 0. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5479 |
88365 | 5480 static int |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5481 detect_coding_charset (coding, detect_info) |
88365 | 5482 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5483 struct coding_detection_info *detect_info; |
88365 | 5484 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5485 const unsigned char *src = coding->source, *src_base; |
89483 | 5486 const unsigned char *src_end = coding->source + coding->src_bytes; |
88365 | 5487 int multibytep = coding->src_multibyte; |
5488 int consumed_chars = 0; | |
98951
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5489 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
|
5490 int found = 0; |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5491 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
|
5492 int check_latin_extra = 0; |
88365 | 5493 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5494 detect_info->checked |= CATEGORY_MASK_CHARSET; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5495 |
88365 | 5496 coding = &coding_categories[coding_category_charset]; |
5497 attrs = CODING_ID_ATTRS (coding->id); | |
5498 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
|
5499 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
|
5500 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
|
5501 "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
|
5502 || 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
|
5503 "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
|
5504 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
|
5505 |
88365 | 5506 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
|
5507 src += head_ascii; |
88365 | 5508 |
5509 while (1) | |
5510 { | |
5511 int c; | |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5512 Lisp_Object val; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5513 struct charset *charset; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5514 int dim, idx; |
88365 | 5515 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5516 src_base = src; |
88365 | 5517 ONE_MORE_BYTE (c); |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5518 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5519 continue; |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5520 val = AREF (valids, c); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5521 if (NILP (val)) |
88365 | 5522 break; |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
5523 if (c >= 0x80) |
98951
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5524 { |
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5525 if (c < 0xA0 |
102327
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5526 && check_latin_extra |
a1f0d8fadbb1
(detect_coding_charset): Fix last change for non-latin charsets.
Jason Rumney <jasonr@gnu.org>
parents:
102325
diff
changeset
|
5527 && (!VECTORP (Vlatin_extra_code_table) |
102325
2c693a021d83
(detect_coding_charset): If not checking latin extra,
Jason Rumney <jasonr@gnu.org>
parents:
102320
diff
changeset
|
5528 || 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
|
5529 break; |
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5530 found = CATEGORY_MASK_CHARSET; |
71becd1e9707
(detect_coding_charset): For iso-8859-* coding systems,
Kenichi Handa <handa@m17n.org>
parents:
98186
diff
changeset
|
5531 } |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5532 if (INTEGERP (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 (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 for (idx = 1; idx < dim; idx++) |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
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); |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
5541 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
|
5542 || 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
|
5543 break; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5544 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5545 if (idx < dim) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5546 break; |
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 else |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5549 { |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5550 idx = 1; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5551 for (; CONSP (val); val = XCDR (val)) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5552 { |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5553 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
|
5554 dim = CHARSET_DIMENSION (charset); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5555 while (idx < dim) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5556 { |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5557 if (src == src_end) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5558 goto too_short; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5559 ONE_MORE_BYTE (c); |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5560 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
|
5561 || 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
|
5562 break; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5563 idx++; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5564 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5565 if (idx == dim) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5566 { |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5567 val = Qnil; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5568 break; |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5569 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5570 } |
90651
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5571 if (CONSP (val)) |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5572 break; |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5573 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5574 } |
23c1467f8640
(detect_coding_charset): Fix detection of multi-byte
Kenichi Handa <handa@m17n.org>
parents:
90599
diff
changeset
|
5575 too_short: |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5576 detect_info->rejected |= CATEGORY_MASK_CHARSET; |
88365 | 5577 return 0; |
5578 | |
5579 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5580 detect_info->found |= found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5581 return 1; |
88365 | 5582 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5583 |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5584 static void |
88365 | 5585 decode_coding_charset (coding) |
17052 | 5586 struct coding_system *coding; |
88365 | 5587 { |
89483 | 5588 const unsigned char *src = coding->source + coding->consumed; |
5589 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
|
5590 const unsigned char *src_base; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5591 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
|
5592 /* 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
|
5593 the end. */ |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5594 int *charbuf_end |
103035
6e443d717c7b
(decode_coding_utf_16): Reduce charbuf_end for the
Kenichi Handa <handa@m17n.org>
parents:
102738
diff
changeset
|
5595 = coding->charbuf + coding->charbuf_size - (MAX_ANNOTATION_LENGTH * 2); |
88365 | 5596 int consumed_chars = 0, consumed_chars_base; |
5597 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
|
5598 Lisp_Object attrs, charset_list, valids; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5599 int char_offset = coding->produced_char; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5600 int last_offset = char_offset; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5601 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
|
5602 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
|
5603 !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
|
5604 int byte_after_cr = -1; |
88365 | 5605 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5606 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
|
5607 valids = AREF (attrs, coding_attr_charset_valids); |
88365 | 5608 |
5609 while (1) | |
5610 { | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5611 int c; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5612 Lisp_Object val; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5613 struct charset *charset; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5614 int dim; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5615 int len = 1; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5616 unsigned code; |
88365 | 5617 |
29093
176708661b08
(encode_eol): Fix a bug of DOS style EOL encoding.
Kenichi Handa <handa@m17n.org>
parents:
29005
diff
changeset
|
5618 src_base = src; |
88365 | 5619 consumed_chars_base = consumed_chars; |
5620 | |
5621 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
|
5622 { |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
5623 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
|
5624 src_base--; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
5625 break; |
5c5e6d041634
(decode_coding_utf_8): Check byte_after_cr before breaking the loop.
Kenichi Handa <handa@m17n.org>
parents:
100587
diff
changeset
|
5626 } |
88365 | 5627 |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5628 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
|
5629 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5630 c = byte_after_cr; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5631 byte_after_cr = -1; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5632 } |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5633 else |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5634 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5635 ONE_MORE_BYTE (c); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
5636 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
|
5637 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
|
5638 } |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5639 if (c < 0) |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5640 goto invalid_code; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5641 code = c; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5642 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5643 val = AREF (valids, c); |
100170
86455974b971
(decode_coding_charset): Check type of an element of
Kenichi Handa <handa@m17n.org>
parents:
100135
diff
changeset
|
5644 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
|
5645 goto invalid_code; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5646 if (INTEGERP (val)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5647 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5648 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
|
5649 dim = CHARSET_DIMENSION (charset); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5650 while (len < dim) |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5651 { |
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
5652 ONE_MORE_BYTE (c); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5653 code = (code << 8) | c; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5654 len++; |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5655 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5656 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
|
5657 charset, code, c); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5658 } |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
5659 else |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5660 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5661 /* 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
|
5662 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
|
5663 comes first). */ |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5664 while (CONSP (val)) |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5665 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5666 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
|
5667 dim = CHARSET_DIMENSION (charset); |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
5668 while (len < dim) |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5669 { |
88598
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
5670 ONE_MORE_BYTE (c); |
b88195f69856
(decode_coding_charset): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88597
diff
changeset
|
5671 code = (code << 8) | c; |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
5672 len++; |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5673 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5674 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
|
5675 src_end, charset, code, c); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5676 if (c >= 0) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5677 break; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5678 val = XCDR (val); |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5679 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5680 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5681 if (c < 0) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5682 goto invalid_code; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5683 if (charset->id != charset_ascii |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5684 && last_id != charset->id) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5685 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5686 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5687 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
|
5688 last_id = charset->id; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5689 last_offset = char_offset; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5690 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5691 |
88365 | 5692 *charbuf++ = c; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5693 char_offset++; |
88365 | 5694 continue; |
5695 | |
5696 invalid_code: | |
5697 src = src_base; | |
5698 consumed_chars = consumed_chars_base; | |
5699 ONE_MORE_BYTE (c); | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5700 *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
|
5701 char_offset++; |
88365 | 5702 coding->errors++; |
5703 } | |
5704 | |
5705 no_more_source: | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5706 if (last_id != charset_ascii) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
5707 ADD_CHARSET_DATA (charbuf, char_offset - last_offset, last_id); |
88365 | 5708 coding->consumed_char += consumed_chars_base; |
5709 coding->consumed = src_base - coding->source; | |
5710 coding->charbuf_used = charbuf - coding->charbuf; | |
5711 } | |
5712 | |
5713 static int | |
5714 encode_coding_charset (coding) | |
5715 struct coding_system *coding; | |
5716 { | |
5717 int multibytep = coding->dst_multibyte; | |
5718 int *charbuf = coding->charbuf; | |
5719 int *charbuf_end = charbuf + coding->charbuf_used; | |
5720 unsigned char *dst = coding->destination + coding->produced; | |
5721 unsigned char *dst_end = coding->destination + coding->dst_bytes; | |
5722 int safe_room = MAX_MULTIBYTE_LENGTH; | |
5723 int produced_chars = 0; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5724 Lisp_Object attrs, charset_list; |
88365 | 5725 int ascii_compatible; |
5726 int c; | |
5727 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
5728 CODING_GET_INFO (coding, attrs, charset_list); |
88365 | 5729 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); |
5730 | |
5731 while (charbuf < charbuf_end) | |
5732 { | |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5733 struct charset *charset; |
88365 | 5734 unsigned code; |
89483 | 5735 |
88365 | 5736 ASSURE_DESTINATION (safe_room); |
5737 c = *charbuf++; | |
5738 if (ascii_compatible && ASCII_CHAR_P (c)) | |
5739 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
|
5740 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
|
5741 { |
7f284ac55b07
(encode_coding_emacs_mule): Pay attention to raw-8-bit chars.
Kenichi Handa <handa@m17n.org>
parents:
88681
diff
changeset
|
5742 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
|
5743 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
|
5744 } |
88365 | 5745 else |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5746 { |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5747 charset = char_charset (c, charset_list, &code); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5748 if (charset) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5749 { |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5750 if (CHARSET_DIMENSION (charset) == 1) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5751 EMIT_ONE_BYTE (code); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5752 else if (CHARSET_DIMENSION (charset) == 2) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5753 EMIT_TWO_BYTES (code >> 8, code & 0xFF); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5754 else if (CHARSET_DIMENSION (charset) == 3) |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5755 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
|
5756 else |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5757 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
|
5758 (code >> 8) & 0xFF, code & 0xFF); |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5759 } |
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5760 else |
88573
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5761 { |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5762 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
|
5763 c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5764 else |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5765 c = coding->default_char; |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5766 EMIT_ONE_BYTE (c); |
133bf7ab1bad
(encode_coding_iso_2022): If coding requires safe
Kenichi Handa <handa@m17n.org>
parents:
88544
diff
changeset
|
5767 } |
88465
ae455bb40718
(decode_coding_charset, encode_coding_charset): Handle
Kenichi Handa <handa@m17n.org>
parents:
88456
diff
changeset
|
5768 } |
88365 | 5769 } |
5770 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
5771 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 5772 coding->produced_char += produced_chars; |
5773 coding->produced = dst - coding->destination; | |
5774 return 0; | |
17052 | 5775 } |
5776 | |
5777 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
5778 /*** 7. C library functions ***/ |
17052 | 5779 |
88365 | 5780 /* Setup coding context CODING from information about CODING_SYSTEM. |
5781 If CODING_SYSTEM is nil, `no-conversion' is assumed. If | |
5782 CODING_SYSTEM is invalid, signal an error. */ | |
5783 | |
5784 void | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
5785 setup_coding_system (coding_system, coding) |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
5786 Lisp_Object coding_system; |
17052 | 5787 struct coding_system *coding; |
5788 { | |
88365 | 5789 Lisp_Object attrs; |
5790 Lisp_Object eol_type; | |
5791 Lisp_Object coding_type; | |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
5792 Lisp_Object val; |
17052 | 5793 |
24460
be35d27a4bfb
(setup_coding_system): Check for CODING_SYSTEM = nil.
Kenichi Handa <handa@m17n.org>
parents:
24425
diff
changeset
|
5794 if (NILP (coding_system)) |
90011
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
5795 coding_system = Qundecided; |
88365 | 5796 |
5797 CHECK_CODING_SYSTEM_GET_ID (coding_system, coding->id); | |
5798 | |
5799 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
|
5800 eol_type = inhibit_eol_conversion ? Qunix : CODING_ID_EOL_TYPE (coding->id); |
88365 | 5801 |
5802 coding->mode = 0; | |
5803 coding->head_ascii = -1; | |
17052 | 5804 if (VECTORP (eol_type)) |
90587
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5805 coding->common_flags = (CODING_REQUIRE_DECODING_MASK |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5806 | CODING_REQUIRE_DETECTION_MASK); |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5807 else if (! EQ (eol_type, Qunix)) |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5808 coding->common_flags = (CODING_REQUIRE_DECODING_MASK |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5809 | CODING_REQUIRE_ENCODING_MASK); |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5810 else |
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
5811 coding->common_flags = 0; |
89448
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
5812 if (! NILP (CODING_ATTR_POST_READ (attrs))) |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
5813 coding->common_flags |= CODING_REQUIRE_DECODING_MASK; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
5814 if (! NILP (CODING_ATTR_PRE_WRITE (attrs))) |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
5815 coding->common_flags |= CODING_REQUIRE_ENCODING_MASK; |
89483 | 5816 if (! NILP (CODING_ATTR_FOR_UNIBYTE (attrs))) |
5817 coding->common_flags |= CODING_FOR_UNIBYTE_MASK; | |
88365 | 5818 |
5819 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
89483 | 5820 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
|
5821 coding->safe_charsets = SDATA (val); |
88365 | 5822 coding->default_char = XINT (CODING_ATTR_DEFAULT_CHAR (attrs)); |
103655
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
5823 coding->carryover_bytes = 0; |
88365 | 5824 |
5825 coding_type = CODING_ATTR_TYPE (attrs); | |
5826 if (EQ (coding_type, Qundecided)) | |
5827 { | |
5828 coding->detector = NULL; | |
5829 coding->decoder = decode_coding_raw_text; | |
5830 coding->encoder = encode_coding_raw_text; | |
5831 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; | |
5832 } | |
5833 else if (EQ (coding_type, Qiso_2022)) | |
5834 { | |
5835 int i; | |
5836 int flags = XINT (AREF (attrs, coding_attr_iso_flags)); | |
5837 | |
5838 /* Invoke graphic register 0 to plane 0. */ | |
5839 CODING_ISO_INVOCATION (coding, 0) = 0; | |
5840 /* Invoke graphic register 1 to plane 1 if we can use 8-bit. */ | |
5841 CODING_ISO_INVOCATION (coding, 1) | |
5842 = (flags & CODING_ISO_FLAG_SEVEN_BITS ? -1 : 1); | |
5843 /* Setup the initial status of designation. */ | |
5844 for (i = 0; i < 4; i++) | |
5845 CODING_ISO_DESIGNATION (coding, i) = CODING_ISO_INITIAL (coding, i); | |
5846 /* Not single shifting initially. */ | |
5847 CODING_ISO_SINGLE_SHIFTING (coding) = 0; | |
5848 /* Beginning of buffer should also be regarded as bol. */ | |
5849 CODING_ISO_BOL (coding) = 1; | |
5850 coding->detector = detect_coding_iso_2022; | |
5851 coding->decoder = decode_coding_iso_2022; | |
5852 coding->encoder = encode_coding_iso_2022; | |
5853 if (flags & CODING_ISO_FLAG_SAFE) | |
5854 coding->mode |= CODING_MODE_SAFE_ENCODING; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5855 coding->common_flags |
88365 | 5856 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
5857 | CODING_REQUIRE_FLUSHING_MASK); | |
5858 if (flags & CODING_ISO_FLAG_COMPOSITION) | |
5859 coding->common_flags |= CODING_ANNOTATE_COMPOSITION_MASK; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5860 if (flags & CODING_ISO_FLAG_DESIGNATION) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
5861 coding->common_flags |= CODING_ANNOTATE_CHARSET_MASK; |
88365 | 5862 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
|
5863 { |
88365 | 5864 setup_iso_safe_charsets (attrs); |
5865 val = CODING_ATTR_SAFE_CHARSETS (attrs); | |
89483 | 5866 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
|
5867 coding->safe_charsets = SDATA (val); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
5868 } |
88365 | 5869 CODING_ISO_FLAGS (coding) = flags; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5870 CODING_ISO_CMP_STATUS (coding)->state = COMPOSING_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5871 CODING_ISO_CMP_STATUS (coding)->method = COMPOSITION_NO; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5872 CODING_ISO_EXTSEGMENT_LEN (coding) = 0; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5873 CODING_ISO_EMBEDDED_UTF_8 (coding) = 0; |
88365 | 5874 } |
5875 else if (EQ (coding_type, Qcharset)) | |
5876 { | |
5877 coding->detector = detect_coding_charset; | |
5878 coding->decoder = decode_coding_charset; | |
5879 coding->encoder = encode_coding_charset; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
5880 coding->common_flags |
88365 | 5881 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
5882 } | |
5883 else if (EQ (coding_type, Qutf_8)) | |
5884 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5885 val = AREF (attrs, coding_attr_utf_bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5886 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
|
5887 : EQ (val, Qt) ? utf_with_bom |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5888 : utf_without_bom); |
88365 | 5889 coding->detector = detect_coding_utf_8; |
5890 coding->decoder = decode_coding_utf_8; | |
5891 coding->encoder = encode_coding_utf_8; | |
34888
b469d29c0815
(SAFE_ONE_MORE_BYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34813
diff
changeset
|
5892 coding->common_flags |
88365 | 5893 |= (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
|
5894 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
|
5895 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; |
88365 | 5896 } |
5897 else if (EQ (coding_type, Qutf_16)) | |
5898 { | |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5899 val = AREF (attrs, coding_attr_utf_bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5900 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
|
5901 : EQ (val, Qt) ? utf_with_bom |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5902 : utf_without_bom); |
88365 | 5903 val = AREF (attrs, coding_attr_utf_16_endian); |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
5904 CODING_UTF_16_ENDIAN (coding) = (EQ (val, Qbig) ? utf_16_big_endian |
88365 | 5905 : utf_16_little_endian); |
88438
3a34b722dd71
(encode_coding_utf_8): Initialize produced_chars to 0.
Kenichi Handa <handa@m17n.org>
parents:
88430
diff
changeset
|
5906 CODING_UTF_16_SURROGATE (coding) = 0; |
88365 | 5907 coding->detector = detect_coding_utf_16; |
5908 coding->decoder = decode_coding_utf_16; | |
5909 coding->encoder = encode_coding_utf_16; | |
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); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
5912 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
|
5913 coding->common_flags |= CODING_REQUIRE_DETECTION_MASK; |
88365 | 5914 } |
5915 else if (EQ (coding_type, Qccl)) | |
5916 { | |
5917 coding->detector = detect_coding_ccl; | |
5918 coding->decoder = decode_coding_ccl; | |
5919 coding->encoder = encode_coding_ccl; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5920 coding->common_flags |
88365 | 5921 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK |
5922 | CODING_REQUIRE_FLUSHING_MASK); | |
5923 } | |
5924 else if (EQ (coding_type, Qemacs_mule)) | |
5925 { | |
5926 coding->detector = detect_coding_emacs_mule; | |
5927 coding->decoder = decode_coding_emacs_mule; | |
5928 coding->encoder = encode_coding_emacs_mule; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5929 coding->common_flags |
88365 | 5930 |= (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
|
5931 coding->spec.emacs_mule.full_support = 1; |
88365 | 5932 if (! NILP (AREF (attrs, coding_attr_emacs_mule_full)) |
5933 && ! EQ (CODING_ATTR_CHARSET_LIST (attrs), Vemacs_mule_charset_list)) | |
5934 { | |
5935 Lisp_Object tail, safe_charsets; | |
5936 int max_charset_id = 0; | |
5937 | |
5938 for (tail = Vemacs_mule_charset_list; CONSP (tail); | |
5939 tail = XCDR (tail)) | |
5940 if (max_charset_id < XFASTINT (XCAR (tail))) | |
5941 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
|
5942 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
|
5943 memset (SDATA (safe_charsets), 255, max_charset_id + 1); |
88365 | 5944 for (tail = Vemacs_mule_charset_list; CONSP (tail); |
5945 tail = XCDR (tail)) | |
89483 | 5946 SSET (safe_charsets, XFASTINT (XCAR (tail)), 0); |
88365 | 5947 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
|
5948 coding->safe_charsets = SDATA (safe_charsets); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5949 coding->spec.emacs_mule.full_support = 1; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5950 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
5951 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
|
5952 coding->spec.emacs_mule.cmp_status.method = COMPOSITION_NO; |
88365 | 5953 } |
5954 else if (EQ (coding_type, Qshift_jis)) | |
5955 { | |
5956 coding->detector = detect_coding_sjis; | |
5957 coding->decoder = decode_coding_sjis; | |
5958 coding->encoder = encode_coding_sjis; | |
5959 coding->common_flags | |
5960 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); | |
5961 } | |
5962 else if (EQ (coding_type, Qbig5)) | |
5963 { | |
5964 coding->detector = detect_coding_big5; | |
5965 coding->decoder = decode_coding_big5; | |
5966 coding->encoder = encode_coding_big5; | |
20227
71008f909642
(setup_coding_system): Initialize common_flags member
Kenichi Handa <handa@m17n.org>
parents:
20150
diff
changeset
|
5967 coding->common_flags |
88365 | 5968 |= (CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK); |
5969 } | |
5970 else /* EQ (coding_type, Qraw_text) */ | |
5971 { | |
5972 coding->detector = NULL; | |
5973 coding->decoder = decode_coding_raw_text; | |
5974 coding->encoder = encode_coding_raw_text; | |
89933
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5975 if (! EQ (eol_type, Qunix)) |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5976 { |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5977 coding->common_flags |= CODING_REQUIRE_DECODING_MASK; |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5978 if (! VECTORP (eol_type)) |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5979 coding->common_flags |= CODING_REQUIRE_ENCODING_MASK; |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5980 } |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
5981 |
88365 | 5982 } |
5983 | |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
5984 return; |
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
5985 } |
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
5986 |
90061
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5987 /* 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
|
5988 |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5989 Lisp_Object |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5990 coding_charset_list (coding) |
26847 | 5991 struct coding_system *coding; |
5992 { | |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
5993 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
|
5994 |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5995 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
|
5996 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
|
5997 { |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
5998 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
|
5999 |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
6000 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
|
6001 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
|
6002 } |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
6003 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
|
6004 { |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
6005 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
|
6006 } |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
6007 return charset_list; |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
6008 } |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
6009 |
48210be97b12
Cancel the change done in HEAD on 2004-11-30.
Kenichi Handa <handa@m17n.org>
parents:
90054
diff
changeset
|
6010 |
101776
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6011 /* 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
|
6012 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6013 Lisp_Object |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6014 coding_system_charset_list (coding_system) |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6015 Lisp_Object coding_system; |
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 int id; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6018 Lisp_Object attrs, charset_list; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6019 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6020 CHECK_CODING_SYSTEM_GET_ID (coding_system, id); |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6021 attrs = CODING_ID_ATTRS (id); |
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 if (EQ (CODING_ATTR_TYPE (attrs), Qiso_2022)) |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6024 { |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6025 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
|
6026 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6027 if (flags & CODING_ISO_FLAG_FULL_SUPPORT) |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6028 charset_list = Viso_2022_charset_list; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6029 else |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6030 charset_list = CODING_ATTR_CHARSET_LIST (attrs); |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6031 } |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6032 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
|
6033 { |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6034 charset_list = Vemacs_mule_charset_list; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6035 } |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6036 else |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6037 { |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6038 charset_list = CODING_ATTR_CHARSET_LIST (attrs); |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6039 } |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6040 return charset_list; |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6041 } |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6042 |
11ba351ce12b
(coding_system_charset_list): New function.
Kenichi Handa <handa@m17n.org>
parents:
101678
diff
changeset
|
6043 |
88365 | 6044 /* Return raw-text or one of its subsidiaries that has the same |
6045 eol_type as CODING-SYSTEM. */ | |
6046 | |
6047 Lisp_Object | |
6048 raw_text_coding_system (coding_system) | |
6049 Lisp_Object coding_system; | |
26847 | 6050 { |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
6051 Lisp_Object spec, attrs; |
88365 | 6052 Lisp_Object eol_type, raw_text_eol_type; |
6053 | |
89462
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
6054 if (NILP (coding_system)) |
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
6055 return Qraw_text; |
88365 | 6056 spec = CODING_SYSTEM_SPEC (coding_system); |
6057 attrs = AREF (spec, 0); | |
89483 | 6058 |
88365 | 6059 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text)) |
6060 return coding_system; | |
6061 | |
6062 eol_type = AREF (spec, 2); | |
6063 if (VECTORP (eol_type)) | |
6064 return Qraw_text; | |
6065 spec = CODING_SYSTEM_SPEC (Qraw_text); | |
6066 raw_text_eol_type = AREF (spec, 2); | |
6067 return (EQ (eol_type, Qunix) ? AREF (raw_text_eol_type, 0) | |
6068 : EQ (eol_type, Qdos) ? AREF (raw_text_eol_type, 1) | |
6069 : AREF (raw_text_eol_type, 2)); | |
26847 | 6070 } |
6071 | |
88365 | 6072 |
6073 /* If CODING_SYSTEM doesn't specify end-of-line format but PARENT | |
6074 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
|
6075 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
|
6076 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
|
6077 (system_eol_type). */ |
88365 | 6078 |
6079 Lisp_Object | |
6080 coding_inherit_eol_type (coding_system, parent) | |
88473 | 6081 Lisp_Object coding_system, parent; |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
6082 { |
89545
4f394eed6ff2
(inhibit_pre_post_conversion): Removed (unused).
Dave Love <fx@gnu.org>
parents:
89519
diff
changeset
|
6083 Lisp_Object spec, eol_type; |
88365 | 6084 |
89462
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
6085 if (NILP (coding_system)) |
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
6086 coding_system = Qraw_text; |
88365 | 6087 spec = CODING_SYSTEM_SPEC (coding_system); |
6088 eol_type = AREF (spec, 2); | |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6089 if (VECTORP (eol_type)) |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6090 { |
88365 | 6091 Lisp_Object parent_eol_type; |
6092 | |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6093 if (! NILP (parent)) |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6094 { |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6095 Lisp_Object parent_spec; |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6096 |
90587
fe721cfad011
(setup_coding_system): Fix setting of
Kenichi Handa <handa@m17n.org>
parents:
90573
diff
changeset
|
6097 parent_spec = CODING_SYSTEM_SPEC (parent); |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6098 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
|
6099 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6100 else |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
6101 parent_eol_type = system_eol_type; |
88365 | 6102 if (EQ (parent_eol_type, Qunix)) |
6103 coding_system = AREF (eol_type, 0); | |
6104 else if (EQ (parent_eol_type, Qdos)) | |
6105 coding_system = AREF (eol_type, 1); | |
6106 else if (EQ (parent_eol_type, Qmac)) | |
6107 coding_system = AREF (eol_type, 2); | |
6108 } | |
6109 return coding_system; | |
22616
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
6110 } |
c493ce6a31e4
(setup_raw_text_coding_system): New function.
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
6111 |
17052 | 6112 /* Emacs has a mechanism to automatically detect a coding system if it |
6113 is one of Emacs' internal format, ISO2022, SJIS, and BIG5. But, | |
6114 it's impossible to distinguish some coding systems accurately | |
6115 because they use the same range of codes. So, at first, coding | |
6116 systems are categorized into 7, those are: | |
6117 | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17725
diff
changeset
|
6118 o coding-category-emacs-mule |
17052 | 6119 |
6120 The category for a coding system which has the same code range | |
6121 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
|
6122 symbol) `emacs-mule' by default. |
17052 | 6123 |
6124 o coding-category-sjis | |
6125 | |
6126 The category for a coding system which has the same code range | |
6127 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
|
6128 symbol) `japanese-shift-jis' by default. |
17052 | 6129 |
6130 o coding-category-iso-7 | |
6131 | |
6132 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
|
6133 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
|
6134 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
|
6135 charsets. Assigned the coding-system (Lisp symbol) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6136 `iso-2022-7bit' by default. |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6137 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6138 o coding-category-iso-7-tight |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6139 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6140 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
|
6141 encode/decode only the specified charsets. |
17052 | 6142 |
6143 o coding-category-iso-8-1 | |
6144 | |
6145 The category for a coding system which has the same code range | |
6146 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
|
6147 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
|
6148 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
|
6149 symbol) `iso-latin-1' by default. |
17052 | 6150 |
6151 o coding-category-iso-8-2 | |
6152 | |
6153 The category for a coding system which has the same code range | |
6154 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
|
6155 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
|
6156 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
|
6157 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
|
6158 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
6159 o coding-category-iso-7-else |
17052 | 6160 |
6161 The category for a coding system which has the same code range | |
88365 | 6162 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
|
6163 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
|
6164 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
|
6165 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
6166 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
|
6167 |
954e6be0a757
(detect_coding_iso2022): Distinguish coding-category-iso-7-else and
Kenichi Handa <handa@m17n.org>
parents:
18766
diff
changeset
|
6168 The category for a coding system which has the same code range |
88365 | 6169 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
|
6170 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
|
6171 symbol) `iso-2022-8bit-ss2' by default. |
17052 | 6172 |
6173 o coding-category-big5 | |
6174 | |
6175 The category for a coding system which has the same code range | |
6176 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
|
6177 `cn-big5' by default. |
17052 | 6178 |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6179 o coding-category-utf-8 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6180 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6181 The category for a coding system which has the same code range |
54303 | 6182 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
|
6183 symbol) `utf-8' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6184 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6185 o coding-category-utf-16-be |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6186 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6187 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
|
6188 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
|
6189 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
|
6190 `utf-16-be' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6191 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6192 o coding-category-utf-16-le |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6193 |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6194 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
|
6195 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
|
6196 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
|
6197 symbol) `utf-16-le' by default. |
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6198 |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6199 o coding-category-ccl |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6200 |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6201 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
|
6202 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
|
6203 coding system is assigned. |
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
6204 |
17052 | 6205 o coding-category-binary |
6206 | |
6207 The category for a coding system not categorized in any of the | |
6208 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
|
6209 `no-conversion' by default. |
17052 | 6210 |
6211 Each of them is a Lisp symbol and the value is an actual | |
88365 | 6212 `coding-system's (this is also a Lisp symbol) assigned by a user. |
17052 | 6213 What Emacs does actually is to detect a category of coding system. |
6214 Then, it uses a `coding-system' assigned to it. If Emacs can't | |
88365 | 6215 decide only one possible category, it selects a category of the |
17052 | 6216 highest priority. Priorities of categories are also specified by a |
6217 user in a Lisp variable `coding-category-list'. | |
6218 | |
6219 */ | |
6220 | |
88365 | 6221 #define EOL_SEEN_NONE 0 |
6222 #define EOL_SEEN_LF 1 | |
6223 #define EOL_SEEN_CR 2 | |
6224 #define EOL_SEEN_CRLF 4 | |
17052 | 6225 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6226 /* 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
|
6227 SOURCE is encoded. If CATEGORY is one of |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6228 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
|
6229 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
|
6230 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6231 Return one of EOL_SEEN_XXX. */ |
17052 | 6232 |
19173
04ed7c3f5cee
(detect_eol_type): If EOL representation does not
Richard M. Stallman <rms@gnu.org>
parents:
19134
diff
changeset
|
6233 #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
|
6234 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6235 static int |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6236 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
|
6237 const unsigned char *source; |
88365 | 6238 EMACS_INT src_bytes; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6239 enum coding_category category; |
17052 | 6240 { |
84646
922a7e3b7383
(detect_eol_type, detect_eol_type_in_2_octet_form):
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
83648
diff
changeset
|
6241 const unsigned char *src = source, *src_end = src + src_bytes; |
17052 | 6242 unsigned char c; |
88365 | 6243 int total = 0; |
6244 int eol_seen = EOL_SEEN_NONE; | |
6245 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6246 if ((1 << category) & CATEGORY_MASK_UTF_16) |
88365 | 6247 { |
6248 int msb, lsb; | |
6249 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
6250 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
|
6251 | coding_category_utf_16_le_nosig); |
88365 | 6252 lsb = 1 - msb; |
6253 | |
6254 while (src + 1 < src_end) | |
17052 | 6255 { |
88365 | 6256 c = src[lsb]; |
6257 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
|
6258 { |
88365 | 6259 int this_eol; |
6260 | |
6261 if (c == '\n') | |
6262 this_eol = EOL_SEEN_LF; | |
6263 else if (src + 3 >= src_end | |
6264 || src[msb + 2] != 0 | |
6265 || src[lsb + 2] != '\n') | |
6266 this_eol = EOL_SEEN_CR; | |
6267 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
|
6268 { |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6269 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
|
6270 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
|
6271 } |
88365 | 6272 |
6273 if (eol_seen == EOL_SEEN_NONE) | |
6274 /* This is the first end-of-line. */ | |
6275 eol_seen = this_eol; | |
6276 else if (eol_seen != this_eol) | |
6277 { | |
101678
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6278 /* 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
|
6279 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
|
6280 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
|
6281 || 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
|
6282 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
|
6283 else |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6284 { |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6285 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
|
6286 break; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6287 } |
88365 | 6288 } |
6289 if (++total == MAX_EOL_CHECK_COUNT) | |
6290 break; | |
6291 } | |
6292 src += 2; | |
6293 } | |
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
6294 } |
88365 | 6295 else |
6296 { | |
6297 while (src < src_end) | |
6298 { | |
6299 c = *src++; | |
6300 if (c == '\n' || c == '\r') | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6301 { |
88365 | 6302 int this_eol; |
6303 | |
6304 if (c == '\n') | |
6305 this_eol = EOL_SEEN_LF; | |
6306 else if (src >= src_end || *src != '\n') | |
6307 this_eol = EOL_SEEN_CR; | |
6308 else | |
6309 this_eol = EOL_SEEN_CRLF, src++; | |
6310 | |
6311 if (eol_seen == EOL_SEEN_NONE) | |
6312 /* This is the first end-of-line. */ | |
6313 eol_seen = this_eol; | |
6314 else if (eol_seen != this_eol) | |
6315 { | |
101678
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6316 /* 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
|
6317 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
|
6318 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
|
6319 || 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
|
6320 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
|
6321 else |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6322 { |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6323 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
|
6324 break; |
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6325 } |
88365 | 6326 } |
6327 if (++total == MAX_EOL_CHECK_COUNT) | |
6328 break; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6329 } |
17052 | 6330 } |
6331 } | |
88365 | 6332 return eol_seen; |
17052 | 6333 } |
6334 | |
88365 | 6335 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6336 static Lisp_Object |
88365 | 6337 adjust_coding_eol_type (coding, eol_seen) |
6338 struct coding_system *coding; | |
6339 int eol_seen; | |
6340 { | |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
6341 Lisp_Object eol_type; |
89483 | 6342 |
88365 | 6343 eol_type = CODING_ID_EOL_TYPE (coding->id); |
6344 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
|
6345 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6346 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
|
6347 eol_type = Qunix; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6348 } |
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
6349 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
|
6350 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6351 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
|
6352 eol_type = Qdos; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6353 } |
88862
108e2535280d
(adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
Dave Love <fx@gnu.org>
parents:
88856
diff
changeset
|
6354 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
|
6355 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6356 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
|
6357 eol_type = Qmac; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6358 } |
19181
917138730635
(detect_eol_type): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
19173
diff
changeset
|
6359 return eol_type; |
17052 | 6360 } |
6361 | |
88365 | 6362 /* Detect how a text specified in CODING is encoded. If a coding |
6363 system is detected, update fields of CODING by the detected coding | |
6364 system. */ | |
17052 | 6365 |
6366 void | |
88365 | 6367 detect_coding (coding) |
17052 | 6368 struct coding_system *coding; |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6369 { |
89483 | 6370 const unsigned char *src, *src_end; |
102105
a5023e8bbb1e
(detect_coding): Preserve coding->mode.
Kenichi Handa <handa@m17n.org>
parents:
102058
diff
changeset
|
6371 int saved_mode = coding->mode; |
88365 | 6372 |
6373 coding->consumed = coding->consumed_char = 0; | |
6374 coding->produced = coding->produced_char = 0; | |
6375 coding_set_source (coding); | |
6376 | |
6377 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
|
6378 coding->head_ascii = 0; |
88365 | 6379 |
6380 /* If we have not yet decided the text encoding type, detect it | |
6381 now. */ | |
6382 if (EQ (CODING_ATTR_TYPE (CODING_ID_ATTRS (coding->id)), Qundecided)) | |
6383 { | |
6384 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
|
6385 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
|
6386 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
|
6387 |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6388 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
|
6389 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
|
6390 { |
88365 | 6391 c = *src; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6392 if (c & 0x80) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6393 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6394 eight_bit_found = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6395 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6396 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6397 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6398 else if (c < 0x20) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6399 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6400 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
|
6401 && ! inhibit_iso_escape_detection |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6402 && ! detect_info.checked) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6403 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6404 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
|
6405 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6406 /* 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
|
6407 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
|
6408 { |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6409 /* 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
|
6410 have found a null-byte, but it's very |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107507
diff
changeset
|
6411 rare that a binary file conforms to |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6412 ISO-2022. */ |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6413 src = src_end; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6414 coding->head_ascii = src - coding->source; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6415 } |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6416 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
|
6417 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6418 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6419 } |
101040 | 6420 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
|
6421 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6422 null_byte_found = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6423 if (eight_bit_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6424 break; |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6425 } |
95585
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
6426 if (! eight_bit_found) |
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
6427 coding->head_ascii++; |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6428 } |
95585
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
6429 else if (! eight_bit_found) |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6430 coding->head_ascii++; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6431 } |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6432 |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6433 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
|
6434 || 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
|
6435 || detect_info.found) |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6436 { |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6437 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
|
6438 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
|
6439 |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6440 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
|
6441 /* 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
|
6442 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
|
6443 { |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6444 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
|
6445 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
|
6446 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
|
6447 break; |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6448 } |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6449 else |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6450 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6451 if (null_byte_found) |
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 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
|
6454 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
|
6455 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6456 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
|
6457 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6458 category = coding_priorities[i]; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6459 this = coding_categories + category; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6460 if (this->id < 0) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6461 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6462 /* 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
|
6463 detect_info.rejected |= (1 << category); |
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 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
|
6466 continue; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6467 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
|
6468 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6469 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
|
6470 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6471 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6472 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
|
6473 && detect_info.found & (1 << category)) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6474 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6475 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
|
6476 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6477 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
|
6478 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
|
6479 else |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6480 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
|
6481 } |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
6482 break; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6483 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6484 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
6485 } |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6486 |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6487 if (i < coding_category_raw_text) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6488 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
|
6489 else if (null_byte_found) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6490 setup_coding_system (Qno_conversion, coding); |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6491 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
|
6492 == CATEGORY_MASK_ANY) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6493 setup_coding_system (Qraw_text, coding); |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6494 else if (detect_info.rejected) |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6495 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
|
6496 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
|
6497 { |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6498 this = coding_categories + coding_priorities[i]; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6499 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
|
6500 break; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
6501 } |
88365 | 6502 } |
6503 } | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6504 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
|
6505 == coding_category_utf_8_auto) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6506 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6507 Lisp_Object coding_systems; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6508 struct coding_detection_info detect_info; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6509 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6510 coding_systems |
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); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6512 detect_info.found = detect_info.rejected = 0; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6513 coding->head_ascii = 0; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6514 if (CONSP (coding_systems) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6515 && detect_coding_utf_8 (coding, &detect_info)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6516 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6517 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
|
6518 setup_coding_system (XCAR (coding_systems), coding); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6519 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6520 setup_coding_system (XCDR (coding_systems), coding); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6521 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6522 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6523 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
|
6524 == coding_category_utf_16_auto) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6525 { |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6526 Lisp_Object coding_systems; |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6527 struct coding_detection_info detect_info; |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6528 |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6529 coding_systems |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6530 = 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
|
6531 detect_info.found = detect_info.rejected = 0; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
6532 coding->head_ascii = 0; |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6533 if (CONSP (coding_systems) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6534 && detect_coding_utf_16 (coding, &detect_info)) |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6535 { |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6536 if (detect_info.found & CATEGORY_MASK_UTF_16_LE) |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6537 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
|
6538 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
|
6539 setup_coding_system (XCDR (coding_systems), coding); |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6540 } |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
6541 } |
102105
a5023e8bbb1e
(detect_coding): Preserve coding->mode.
Kenichi Handa <handa@m17n.org>
parents:
102058
diff
changeset
|
6542 coding->mode = saved_mode; |
88365 | 6543 } |
6544 | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6545 |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6546 static void |
88365 | 6547 decode_eol (coding) |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6548 struct coding_system *coding; |
88365 | 6549 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6550 Lisp_Object eol_type; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6551 unsigned char *p, *pbeg, *pend; |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
6552 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6553 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
|
6554 if (EQ (eol_type, Qunix) || inhibit_eol_conversion) |
17052 | 6555 return; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6556 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6557 if (NILP (coding->dst_object)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6558 pbeg = coding->destination; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6559 else |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6560 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
|
6561 pend = pbeg + coding->produced; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6562 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6563 if (VECTORP (eol_type)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6564 { |
88365 | 6565 int eol_seen = EOL_SEEN_NONE; |
6566 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6567 for (p = pbeg; p < pend; p++) |
88365 | 6568 { |
6569 if (*p == '\n') | |
6570 eol_seen |= EOL_SEEN_LF; | |
6571 else if (*p == '\r') | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6572 { |
88365 | 6573 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
|
6574 { |
88365 | 6575 eol_seen |= EOL_SEEN_CRLF; |
6576 p++; | |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6577 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6578 else |
88365 | 6579 eol_seen |= EOL_SEEN_CR; |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
6580 } |
28022
6c41f3276340
Add comments on coding-category-utf-8,
Kenichi Handa <handa@m17n.org>
parents:
27943
diff
changeset
|
6581 } |
101678
589af07b7af1
(detect_eol, decode_eol): Handle text with DOS-style EOLs that also has
Eli Zaretskii <eliz@gnu.org>
parents:
101197
diff
changeset
|
6582 /* 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
|
6583 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
|
6584 && (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
|
6585 && (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
|
6586 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
|
6587 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
|
6588 && eol_seen != EOL_SEEN_LF |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6589 && eol_seen != EOL_SEEN_CRLF |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6590 && eol_seen != EOL_SEEN_CR) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6591 eol_seen = EOL_SEEN_LF; |
88365 | 6592 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
|
6593 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
|
6594 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6595 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6596 if (EQ (eol_type, Qmac)) |
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 for (p = pbeg; p < pend; p++) |
88365 | 6599 if (*p == '\r') |
6600 *p = '\n'; | |
6601 } | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6602 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
|
6603 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6604 int n = 0; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6605 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6606 if (NILP (coding->dst_object)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6607 { |
90378
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6608 /* 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
|
6609 movement. */ |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6610 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
|
6611 if (*p == '\r') |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6612 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6613 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
|
6614 n++; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6615 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6616 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6617 else |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6618 { |
90378
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6619 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
|
6620 int pos = coding->dst_pos; |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6621 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
|
6622 |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6623 while (pos < pos_end) |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6624 { |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6625 p = BYTE_POS_ADDR (pos_byte); |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6626 if (*p == '\r' && p[1] == '\n') |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6627 { |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6628 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
|
6629 n++; |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6630 pos_end--; |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6631 } |
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6632 pos++; |
91535
419a669bc4f2
(decode_eol): Pay attention to coding->dst_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
91367
diff
changeset
|
6633 if (coding->dst_multibyte) |
419a669bc4f2
(decode_eol): Pay attention to coding->dst_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
91367
diff
changeset
|
6634 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
|
6635 else |
419a669bc4f2
(decode_eol): Pay attention to coding->dst_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
91367
diff
changeset
|
6636 pos_byte++; |
90378
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
6637 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6638 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6639 coding->produced -= n; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
6640 coding->produced_char -= n; |
17052 | 6641 } |
6642 } | |
6643 | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6644 |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6645 /* Return a translation table (or list of them) from coding system |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6646 attribute vector ATTRS for encoding (ENCODEP is nonzero) or |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6647 decoding (ENCODEP is zero). */ |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6648 |
89858
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
6649 static Lisp_Object |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6650 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
|
6651 Lisp_Object attrs; |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6652 int encodep, *max_lookup; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6653 { |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6654 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
|
6655 Lisp_Object val; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6656 |
103306
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6657 if (NILP (Venable_character_translation)) |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6658 { |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6659 if (max_lookup) |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6660 *max_lookup = 0; |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6661 return Qnil; |
3680b4fe0f79
* coding.c (get_translation_table): Check Venable_character_translation.
Chong Yidong <cyd@stupidchicken.com>
parents:
103133
diff
changeset
|
6662 } |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6663 if (encodep) |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6664 translation_table = CODING_ATTR_ENCODE_TBL (attrs), |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6665 standard = Vstandard_translation_table_for_encode; |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6666 else |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6667 translation_table = CODING_ATTR_DECODE_TBL (attrs), |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6668 standard = Vstandard_translation_table_for_decode; |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6669 if (NILP (translation_table)) |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6670 translation_table = standard; |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6671 else |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6672 { |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6673 if (SYMBOLP (translation_table)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6674 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
|
6675 else if (CONSP (translation_table)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6676 { |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6677 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
|
6678 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
|
6679 if (SYMBOLP (XCAR (val))) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6680 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
|
6681 } |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6682 if (CHAR_TABLE_P (standard)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6683 { |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6684 if (CONSP (translation_table)) |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6685 translation_table = nconc2 (translation_table, |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6686 Fcons (standard, Qnil)); |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6687 else |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6688 translation_table = Fcons (translation_table, |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6689 Fcons (standard, Qnil)); |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6690 } |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6691 } |
89861
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6692 |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6693 if (max_lookup) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6694 { |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6695 *max_lookup = 1; |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6696 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
|
6697 && 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
|
6698 { |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6699 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
|
6700 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
|
6701 *max_lookup = XFASTINT (val); |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6702 } |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6703 else if (CONSP (translation_table)) |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6704 { |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6705 Lisp_Object tail, val; |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6706 |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6707 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
|
6708 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
|
6709 && 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
|
6710 { |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6711 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
|
6712 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
|
6713 *max_lookup = XFASTINT (val); |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6714 } |
7160ded23e55
(get_translation_table): Allow max_lookup to be NULL.
Kenichi Handa <handa@m17n.org>
parents:
89859
diff
changeset
|
6715 } |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
6716 } |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6717 return translation_table; |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6718 } |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6719 |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6720 #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
|
6721 do { \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6722 trans = Qnil; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6723 if (CHAR_TABLE_P (table)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6724 { \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6725 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
|
6726 if (CHARACTERP (trans)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6727 c = XFASTINT (trans), trans = Qnil; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6728 } \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6729 else if (CONSP (table)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6730 { \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6731 Lisp_Object tail; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6732 \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6733 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
|
6734 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
|
6735 { \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6736 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
|
6737 if (CHARACTERP (trans)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6738 c = XFASTINT (trans), trans = Qnil; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6739 else if (! NILP (trans)) \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6740 break; \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6741 } \ |
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6742 } \ |
89858
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
6743 } while (0) |
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
6744 |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
6745 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6746 /* 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
|
6747 TRANS is TO-CHAR or ((FROM . TO) ...) where |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6748 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
|
6749 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
|
6750 translation is found, and Qnil if not found.. |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6751 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
|
6752 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6753 static Lisp_Object |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6754 get_translation (trans, buf, buf_end) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6755 Lisp_Object trans; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6756 int *buf, *buf_end; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6757 { |
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 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6760 return trans; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6761 for (; CONSP (trans); trans = XCDR (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6762 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6763 Lisp_Object val = XCAR (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6764 Lisp_Object from = XCAR (val); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6765 int len = ASIZE (from); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6766 int i; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6767 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6768 for (i = 0; i < len; i++) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6769 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6770 if (buf + i == buf_end) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6771 return Qt; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6772 if (XINT (AREF (from, i)) != buf[i]) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6773 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6774 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6775 if (i == len) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6776 return val; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6777 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6778 return Qnil; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6779 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6780 |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6781 |
88365 | 6782 static int |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6783 produce_chars (coding, translation_table, last_block) |
17052 | 6784 struct coding_system *coding; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6785 Lisp_Object translation_table; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6786 int last_block; |
17052 | 6787 { |
88365 | 6788 unsigned char *dst = coding->destination + coding->produced; |
6789 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
|
6790 EMACS_INT produced; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6791 EMACS_INT produced_chars = 0; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6792 int carryover = 0; |
88365 | 6793 |
6794 if (! coding->chars_at_source) | |
6795 { | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6796 /* Source characters are in coding->charbuf. */ |
89575
59d10ebd2a0b
(produce_chars): Revert last change.
Andreas Schwab <schwab@suse.de>
parents:
89571
diff
changeset
|
6797 int *buf = coding->charbuf; |
59d10ebd2a0b
(produce_chars): Revert last change.
Andreas Schwab <schwab@suse.de>
parents:
89571
diff
changeset
|
6798 int *buf_end = buf + coding->charbuf_used; |
88365 | 6799 |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6800 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6801 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6802 coding_set_source (coding); |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6803 dst_end = ((unsigned char *) coding->source) + coding->consumed; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6804 } |
88365 | 6805 |
6806 while (buf < buf_end) | |
6807 { | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6808 int c = *buf, i; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6809 |
88365 | 6810 if (c >= 0) |
6811 { | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6812 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
|
6813 Lisp_Object trans = Qnil; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6814 |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
6815 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
|
6816 if (! NILP (trans)) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6817 { |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6818 trans = get_translation (trans, buf, buf_end); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6819 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6820 c = XINT (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6821 else if (CONSP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6822 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6823 from_nchars = ASIZE (XCAR (trans)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6824 trans = XCDR (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6825 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6826 c = XINT (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6827 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6828 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6829 to_nchars = ASIZE (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6830 c = XINT (AREF (trans, 0)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6831 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6832 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6833 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
|
6834 break; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6835 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6836 |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6837 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
|
6838 { |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6839 dst = alloc_destination (coding, |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6840 buf_end - buf |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6841 + MAX_MULTIBYTE_LENGTH * to_nchars, |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6842 dst); |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6843 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6844 { |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6845 coding_set_source (coding); |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6846 dst_end = (((unsigned char *) coding->source) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6847 + coding->consumed); |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6848 } |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6849 else |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6850 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
|
6851 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6852 |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
6853 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
|
6854 { |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
6855 if (i > 0) |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
6856 c = XINT (AREF (trans, i)); |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6857 if (coding->dst_multibyte |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6858 || ! CHAR_BYTE8_P (c)) |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6859 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
|
6860 else |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6861 *dst++ = CHAR_TO_BYTE8 (c); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6862 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6863 produced_chars += to_nchars; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6864 buf += from_nchars; |
88365 | 6865 } |
6866 else | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6867 /* 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
|
6868 buf += -c; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6869 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6870 carryover = buf_end - buf; |
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
6871 } |
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
6872 else |
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
6873 { |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6874 /* Source characters are at coding->source. */ |
89483 | 6875 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
|
6876 const unsigned char *src_end = src + coding->consumed; |
88365 | 6877 |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6878 if (EQ (coding->dst_object, coding->src_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6879 dst_end = (unsigned char *) src; |
88365 | 6880 if (coding->src_multibyte != coding->dst_multibyte) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6881 { |
88365 | 6882 if (coding->src_multibyte) |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6883 { |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
6884 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
|
6885 EMACS_INT consumed_chars = 0; |
88365 | 6886 |
6887 while (1) | |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6888 { |
89483 | 6889 const unsigned char *src_base = src; |
88365 | 6890 int c; |
6891 | |
6892 ONE_MORE_BYTE (c); | |
6893 if (dst == dst_end) | |
6894 { | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6895 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
|
6896 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
|
6897 if (dst == dst_end) |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6898 { |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6899 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
|
6900 |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6901 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
|
6902 dst); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6903 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
|
6904 coding_set_source (coding); |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6905 src = coding->source + offset; |
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6906 src_end = coding->source + coding->src_bytes; |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6907 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6908 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
|
6909 } |
88365 | 6910 } |
6911 *dst++ = c; | |
6912 produced_chars++; | |
6913 } | |
6914 no_more_source: | |
6915 ; | |
6916 } | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
6917 else |
88365 | 6918 while (src < src_end) |
6919 { | |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
6920 int multibytep = 1; |
88365 | 6921 int c = *src++; |
6922 | |
6923 if (dst >= dst_end - 1) | |
6924 { | |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
6925 if (EQ (coding->src_object, coding->dst_object)) |
89483 | 6926 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
|
6927 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
|
6928 { |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6929 EMACS_INT offset = src - coding->source; |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6930 EMACS_INT more_bytes; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6931 |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6932 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6933 more_bytes = ((src_end - src) / 2) + 2; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6934 else |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6935 more_bytes = src_end - src + 2; |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6936 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
|
6937 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
|
6938 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
|
6939 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
|
6940 src_end = coding->source + coding->src_bytes; |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6941 if (EQ (coding->src_object, coding->dst_object)) |
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
6942 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
|
6943 } |
88365 | 6944 } |
6945 EMIT_ONE_BYTE (c); | |
6946 } | |
6947 } | |
6948 else | |
6949 { | |
6950 if (!EQ (coding->src_object, coding->dst_object)) | |
6951 { | |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6952 EMACS_INT require = coding->src_bytes - coding->dst_bytes; |
88365 | 6953 |
6954 if (require > 0) | |
23325
bbd06336cd0c
(check_composing_code): If the current composing
Kenichi Handa <handa@m17n.org>
parents:
23315
diff
changeset
|
6955 { |
88365 | 6956 EMACS_INT offset = src - coding->source; |
6957 | |
6958 dst = alloc_destination (coding, require, dst); | |
6959 coding_set_source (coding); | |
6960 src = coding->source + offset; | |
6961 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
|
6962 } |
34892
3868f2e7355a
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
34888
diff
changeset
|
6963 } |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6964 produced_chars = coding->consumed_char; |
88365 | 6965 while (src < src_end) |
92406
c36bda0a03cc
(decode_coding_big5, produce_chars): Fix typos in last
Andreas Schwab <schwab@suse.de>
parents:
92399
diff
changeset
|
6966 *dst++ = *src++; |
92399
fbc07b3a6baf
(decode_coding_utf_8): When eol-type of CODING is
Kenichi Handa <handa@m17n.org>
parents:
92030
diff
changeset
|
6967 } |
88365 | 6968 } |
6969 | |
6970 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
|
6971 if (BUFFERP (coding->dst_object) && produced_chars > 0) |
88365 | 6972 insert_from_gap (produced_chars, produced); |
6973 coding->produced += produced; | |
6974 coding->produced_char += produced_chars; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6975 return carryover; |
88365 | 6976 } |
6977 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
6978 /* 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
|
6979 CHARBUF. CHARBUF is an array: |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6980 [ -LENGTH ANNOTATION_MASK NCHARS NBYTES METHOD [ COMPONENTS... ] ] |
88365 | 6981 */ |
6982 | |
6983 static INLINE void | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6984 produce_composition (coding, charbuf, pos) |
88365 | 6985 struct coding_system *coding; |
6986 int *charbuf; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6987 EMACS_INT pos; |
88365 | 6988 { |
6989 int len; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
6990 EMACS_INT to; |
88365 | 6991 enum composition_method method; |
6992 Lisp_Object components; | |
6993 | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6994 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
|
6995 to = pos + charbuf[2]; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
6996 method = (enum composition_method) (charbuf[4]); |
88365 | 6997 |
6998 if (method == COMPOSITION_RELATIVE) | |
6999 components = Qnil; | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7000 else |
88365 | 7001 { |
7002 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
|
7003 int i, j; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7004 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7005 if (method == COMPOSITION_WITH_RULE) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7006 len = charbuf[2] * 3 - 2; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7007 charbuf += MAX_ANNOTATION_LENGTH; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7008 /* charbuf = [ CHRA ... CHAR] or [ CHAR -2 RULE ... CHAR ] */ |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7009 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
|
7010 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7011 if (charbuf[i] >= 0) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7012 args[j] = make_number (charbuf[i]); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7013 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7014 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7015 i++; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7016 args[j] = make_number (charbuf[i] % 0x100); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7017 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7018 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7019 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
|
7020 } |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7021 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
|
7022 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7023 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7024 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7025 /* 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
|
7026 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
|
7027 [ -LENGTH ANNOTATION_MASK NCHARS CHARSET-ID ] |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7028 */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7029 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7030 static INLINE void |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7031 produce_charset (coding, charbuf, pos) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7032 struct coding_system *coding; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7033 int *charbuf; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7034 EMACS_INT pos; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7035 { |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7036 EMACS_INT from = pos - charbuf[2]; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7037 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
|
7038 |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7039 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
|
7040 Qcharset, CHARSET_NAME (charset), |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7041 coding->dst_object); |
88365 | 7042 } |
7043 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7044 |
88365 | 7045 #define CHARBUF_SIZE 0x4000 |
7046 | |
7047 #define ALLOC_CONVERSION_WORK_AREA(coding) \ | |
7048 do { \ | |
101943
97c9e9322753
Remove spurious semicolons.
Juanma Barranquero <lekktu@gmail.com>
parents:
101904
diff
changeset
|
7049 int size = CHARBUF_SIZE; \ |
88365 | 7050 \ |
7051 coding->charbuf = NULL; \ | |
7052 while (size > 1024) \ | |
7053 { \ | |
7054 coding->charbuf = (int *) alloca (sizeof (int) * size); \ | |
7055 if (coding->charbuf) \ | |
7056 break; \ | |
7057 size >>= 1; \ | |
7058 } \ | |
7059 if (! coding->charbuf) \ | |
7060 { \ | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7061 record_conversion_result (coding, CODING_RESULT_INSUFFICIENT_MEM); \ |
88365 | 7062 return coding->result; \ |
7063 } \ | |
7064 coding->charbuf_size = size; \ | |
7065 } while (0) | |
7066 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7067 |
30833
2db6e42a6ba3
(MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
Kenichi Handa <handa@m17n.org>
parents:
30756
diff
changeset
|
7068 static void |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7069 produce_annotation (coding, pos) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7070 struct coding_system *coding; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7071 EMACS_INT pos; |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7072 { |
88365 | 7073 int *charbuf = coding->charbuf; |
7074 int *charbuf_end = charbuf + coding->charbuf_used; | |
7075 | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7076 if (NILP (coding->dst_object)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7077 return; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7078 |
88365 | 7079 while (charbuf < charbuf_end) |
7080 { | |
7081 if (*charbuf >= 0) | |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7082 pos++, charbuf++; |
88365 | 7083 else |
29877
7b43e1fb478a
(decode_eol_post_ccl): Special handling for undecided
Eli Zaretskii <eliz@gnu.org>
parents:
29725
diff
changeset
|
7084 { |
88365 | 7085 int len = -*charbuf; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7086 |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7087 if (len > 2) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7088 switch (charbuf[1]) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7089 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7090 case CODING_ANNOTATE_COMPOSITION_MASK: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7091 produce_composition (coding, charbuf, pos); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7092 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7093 case CODING_ANNOTATE_CHARSET_MASK: |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7094 produce_charset (coding, charbuf, pos); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7095 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7096 } |
88365 | 7097 charbuf += len; |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7098 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7099 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7100 } |
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7101 |
88365 | 7102 /* Decode the data at CODING->src_object into CODING->dst_object. |
7103 CODING->src_object is a buffer, a string, or nil. | |
7104 CODING->dst_object is a buffer. | |
7105 | |
7106 If CODING->src_object is a buffer, it must be the current buffer. | |
7107 In this case, if CODING->src_pos is positive, it is a position of | |
7108 the source text in the buffer, otherwise, the source text is in the | |
7109 gap area of the buffer, and CODING->src_pos specifies the offset of | |
7110 the text from GPT (which must be the same as PT). If this is the | |
7111 same buffer as CODING->dst_object, CODING->src_pos must be | |
7112 negative. | |
7113 | |
90380
4bf7966e0788
(decode_coding): Typo in comment fixed.
Kenichi Handa <handa@m17n.org>
parents:
90378
diff
changeset
|
7114 If CODING->src_object is a string, CODING->src_pos is an index to |
88365 | 7115 that string. |
7116 | |
7117 If CODING->src_object is nil, CODING->source must already point to | |
7118 the non-relocatable memory area. In this case, CODING->src_pos is | |
7119 an offset from CODING->source. | |
7120 | |
7121 The decoded data is inserted at the current point of the buffer | |
7122 CODING->dst_object. | |
7123 */ | |
7124 | |
7125 static int | |
7126 decode_coding (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7127 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7128 { |
88365 | 7129 Lisp_Object attrs; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7130 Lisp_Object undo_list; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
7131 Lisp_Object translation_table; |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7132 struct ccl_spec cclspec; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7133 int carryover; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7134 int i; |
88365 | 7135 |
7136 if (BUFFERP (coding->src_object) | |
7137 && coding->src_pos > 0 | |
7138 && coding->src_pos < GPT | |
7139 && coding->src_pos + coding->src_chars > GPT) | |
7140 move_gap_both (coding->src_pos, coding->src_pos_byte); | |
7141 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7142 undo_list = Qt; |
88365 | 7143 if (BUFFERP (coding->dst_object)) |
7144 { | |
7145 if (current_buffer != XBUFFER (coding->dst_object)) | |
7146 set_buffer_internal (XBUFFER (coding->dst_object)); | |
7147 if (GPT != PT) | |
7148 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
|
7149 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
|
7150 current_buffer->undo_list = Qt; |
88365 | 7151 } |
7152 | |
7153 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
|
7154 coding->produced = coding->produced_char = 0; |
88365 | 7155 coding->chars_at_source = 0; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7156 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
|
7157 coding->errors = 0; |
88365 | 7158 |
7159 ALLOC_CONVERSION_WORK_AREA (coding); | |
7160 | |
7161 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
|
7162 translation_table = get_translation_table (attrs, 0, NULL); |
88365 | 7163 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7164 carryover = 0; |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7165 if (coding->decoder == decode_coding_ccl) |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7166 { |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7167 coding->spec.ccl = &cclspec; |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7168 setup_ccl_program (&cclspec.ccl, CODING_CCL_DECODER (coding)); |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7169 } |
88365 | 7170 do |
7171 { | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7172 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
|
7173 |
88365 | 7174 coding_set_source (coding); |
7175 coding->annotated = 0; | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7176 coding->charbuf_used = carryover; |
88365 | 7177 (*(coding->decoder)) (coding); |
7178 coding_set_destination (coding); | |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7179 carryover = produce_chars (coding, translation_table, 0); |
88365 | 7180 if (coding->annotated) |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7181 produce_annotation (coding, pos); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7182 for (i = 0; i < carryover; i++) |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7183 coding->charbuf[i] |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7184 = coding->charbuf[coding->charbuf_used - carryover + i]; |
88365 | 7185 } |
107171
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7186 while (coding->result == CODING_RESULT_INSUFFICIENT_DST |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7187 || (coding->consumed < coding->src_bytes |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7188 && (coding->result == CODING_RESULT_SUCCESS |
dfc03b454687
Fix the ccl decoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
106918
diff
changeset
|
7189 || coding->result == CODING_RESULT_INVALID_SRC))); |
88365 | 7190 |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7191 if (carryover > 0) |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7192 { |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7193 coding_set_destination (coding); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7194 coding->charbuf_used = carryover; |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7195 produce_chars (coding, translation_table, 1); |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7196 } |
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7197 |
88365 | 7198 coding->carryover_bytes = 0; |
7199 if (coding->consumed < coding->src_bytes) | |
7200 { | |
7201 int nbytes = coding->src_bytes - coding->consumed; | |
89483 | 7202 const unsigned char *src; |
88365 | 7203 |
7204 coding_set_source (coding); | |
7205 coding_set_destination (coding); | |
7206 src = coding->source + coding->consumed; | |
7207 | |
7208 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
|
7209 { |
88365 | 7210 /* Flush out unprocessed data as binary chars. We are sure |
7211 that the number of data is less than the size of | |
7212 coding->charbuf. */ | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7213 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
|
7214 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
|
7215 |
88365 | 7216 while (nbytes-- > 0) |
7217 { | |
7218 int c = *src++; | |
89279
1fd77c471ee6
(decode_coding_utf_8): When eol_type is Qdos, handle
Kenichi Handa <handa@m17n.org>
parents:
89227
diff
changeset
|
7219 |
90243
c59afb15f5c6
(decode_coding): Fix handling of invalid bytes.
Kenichi Handa <handa@m17n.org>
parents:
90231
diff
changeset
|
7220 if (c & 0x80) |
c59afb15f5c6
(decode_coding): Fix handling of invalid bytes.
Kenichi Handa <handa@m17n.org>
parents:
90231
diff
changeset
|
7221 c = BYTE8_TO_CHAR (c); |
c59afb15f5c6
(decode_coding): Fix handling of invalid bytes.
Kenichi Handa <handa@m17n.org>
parents:
90231
diff
changeset
|
7222 coding->charbuf[coding->charbuf_used++] = c; |
88365 | 7223 } |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
7224 produce_chars (coding, Qnil, 1); |
29725
2bc397e9b09a
(setup_coding_system) <4>: Reset member `cr_carryover'.
Kenichi Handa <handa@m17n.org>
parents:
29663
diff
changeset
|
7225 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7226 else |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7227 { |
88365 | 7228 /* Record unprocessed bytes in coding->carryover. We are |
7229 sure that the number of data is less than the size of | |
7230 coding->carryover. */ | |
7231 unsigned char *p = coding->carryover; | |
7232 | |
102115
db1f94e25359
(detect_coding): Don't overflow coding->carryover.
Kenichi Handa <handa@m17n.org>
parents:
102105
diff
changeset
|
7233 if (nbytes > sizeof coding->carryover) |
db1f94e25359
(detect_coding): Don't overflow coding->carryover.
Kenichi Handa <handa@m17n.org>
parents:
102105
diff
changeset
|
7234 nbytes = sizeof coding->carryover; |
88365 | 7235 coding->carryover_bytes = nbytes; |
7236 while (nbytes-- > 0) | |
7237 *p++ = *src++; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7238 } |
88365 | 7239 coding->consumed = coding->src_bytes; |
7240 } | |
7241 | |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
7242 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
|
7243 && !inhibit_eol_conversion) |
90378
0aec08f4c729
(decode_eol): Pay attention to buffer relocation in
Kenichi Handa <handa@m17n.org>
parents:
90363
diff
changeset
|
7244 decode_eol (coding); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7245 if (BUFFERP (coding->dst_object)) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7246 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7247 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
|
7248 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
|
7249 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7250 return coding->result; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7251 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7252 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7253 |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
7254 /* 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
|
7255 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
|
7256 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
|
7257 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
|
7258 next element of BUF. |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7259 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7260 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
|
7261 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
|
7262 return BUF. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7263 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7264 static INLINE int * |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7265 handle_composition_annotation (pos, limit, coding, buf, stop) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7266 EMACS_INT pos, limit; |
26847 | 7267 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7268 int *buf; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7269 EMACS_INT *stop; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7270 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7271 EMACS_INT start, end; |
26847 | 7272 Lisp_Object prop; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7273 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7274 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
|
7275 || end > limit) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7276 *stop = limit; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7277 else if (start > pos) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7278 *stop = start; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7279 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7280 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7281 if (start == pos) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7282 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7283 /* We found a composition. Store the corresponding |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7284 annotation data in BUF. */ |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7285 int *head = buf; |
26847 | 7286 enum composition_method method = COMPOSITION_METHOD (prop); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7287 int nchars = COMPOSITION_LENGTH (prop); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7288 |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7289 ADD_COMPOSITION_DATA (buf, nchars, 0, method); |
26847 | 7290 if (method != COMPOSITION_RELATIVE) |
7291 { | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7292 Lisp_Object components; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7293 int len, i, i_byte; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7294 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7295 components = COMPOSITION_COMPONENTS (prop); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7296 if (VECTORP (components)) |
26847 | 7297 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7298 len = XVECTOR (components)->size; |
26847 | 7299 for (i = 0; i < len; i++) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7300 *buf++ = XINT (AREF (components, i)); |
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 else if (STRINGP (components)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7303 { |
89483 | 7304 len = SCHARS (components); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7305 i = i_byte = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7306 while (i < len) |
26847 | 7307 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7308 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
|
7309 buf++; |
26847 | 7310 } |
7311 } | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7312 else if (INTEGERP (components)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7313 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7314 len = 1; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7315 *buf++ = XINT (components); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7316 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7317 else if (CONSP (components)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7318 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7319 for (len = 0; CONSP (components); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7320 len++, components = XCDR (components)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7321 *buf++ = XINT (XCAR (components)); |
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 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7324 abort (); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7325 *head -= len; |
26847 | 7326 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7327 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7328 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7329 if (find_composition (end, limit, &start, &end, &prop, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7330 coding->src_object) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7331 && end <= limit) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7332 *stop = start; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7333 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7334 *stop = limit; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7335 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7336 return buf; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7337 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7338 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7339 |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
7340 /* 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
|
7341 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
|
7342 *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
|
7343 (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
|
7344 BUF. |
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 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
|
7347 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
|
7348 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7349 static INLINE int * |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7350 handle_charset_annotation (pos, limit, coding, buf, stop) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7351 EMACS_INT pos, limit; |
26847 | 7352 struct coding_system *coding; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7353 int *buf; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7354 EMACS_INT *stop; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7355 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7356 Lisp_Object val, next; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7357 int id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7358 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7359 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
|
7360 if (! NILP (val) && CHARSETP (val)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7361 id = XINT (CHARSET_SYMBOL_ID (val)); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7362 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7363 id = -1; |
89852
b636ae1109c6
(MAX_ANNOTATION_LENGTH): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
89851
diff
changeset
|
7364 ADD_CHARSET_DATA (buf, 0, id); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7365 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
|
7366 coding->src_object, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7367 make_number (limit)); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7368 *stop = XINT (next); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7369 return buf; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7370 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7371 |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7372 |
88365 | 7373 static void |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7374 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
|
7375 struct coding_system *coding; |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7376 Lisp_Object translation_table; |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7377 int max_lookup; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7378 { |
88365 | 7379 int *buf = coding->charbuf; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7380 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
|
7381 const unsigned char *src = coding->source + coding->consumed; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7382 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
|
7383 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
|
7384 EMACS_INT end_pos = coding->src_pos + coding->src_chars; |
88365 | 7385 int multibytep = coding->src_multibyte; |
7386 Lisp_Object eol_type; | |
7387 int c; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7388 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
|
7389 int *lookup_buf = NULL; |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7390 |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7391 if (! NILP (translation_table)) |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7392 lookup_buf = alloca (sizeof (int) * max_lookup); |
88365 | 7393 |
102334
7baaea85626e
(decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule,
Eli Zaretskii <eliz@gnu.org>
parents:
102327
diff
changeset
|
7394 eol_type = inhibit_eol_conversion ? Qunix : CODING_ID_EOL_TYPE (coding->id); |
88365 | 7395 if (VECTORP (eol_type)) |
7396 eol_type = Qunix; | |
7397 | |
7398 /* Note: composition handling is not yet implemented. */ | |
7399 coding->common_flags &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
7400 | |
89562
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7401 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
|
7402 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
|
7403 else |
89562
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7404 { |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7405 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
|
7406 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
|
7407 else |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7408 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
|
7409 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
|
7410 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
|
7411 else |
12fbcfebb9ad
(consume_chars): If coding->src_object is nil, don't check annotation.
Kenichi Handa <handa@m17n.org>
parents:
89545
diff
changeset
|
7412 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
|
7413 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7414 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7415 /* Compensate for CRLF and conversion. */ |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7416 buf_end -= 1 + MAX_ANNOTATION_LENGTH; |
88365 | 7417 while (buf < buf_end) |
7418 { | |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7419 Lisp_Object trans; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7420 |
88365 | 7421 if (pos == stop) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7422 { |
88365 | 7423 if (pos == end_pos) |
7424 break; | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7425 if (pos == stop_composition) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7426 buf = handle_composition_annotation (pos, end_pos, coding, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7427 buf, &stop_composition); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7428 if (pos == stop_charset) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7429 buf = handle_charset_annotation (pos, end_pos, coding, |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7430 buf, &stop_charset); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7431 stop = (stop_composition < stop_charset |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
7432 ? stop_composition : stop_charset); |
88365 | 7433 } |
7434 | |
7435 if (! multibytep) | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7436 { |
89462
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
7437 EMACS_INT bytes; |
4e359ebf3984
(decode_coding_iso_2022): Fix handling of invalid
Kenichi Handa <handa@m17n.org>
parents:
89448
diff
changeset
|
7438 |
106918
d6e8fa5622b7
Fix ccl encoding of unibyte source.
Kenichi Handa <handa@m17n.org>
parents:
106826
diff
changeset
|
7439 if (coding->encoder == encode_coding_raw_text |
d6e8fa5622b7
Fix ccl encoding of unibyte source.
Kenichi Handa <handa@m17n.org>
parents:
106826
diff
changeset
|
7440 || coding->encoder == encode_coding_ccl) |
89933
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7441 c = *src++, pos++; |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7442 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
|
7443 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
|
7444 else |
89917
1763eef5ad02
(encode_coding_utf_8): Fix handling of raw-byte char.
Kenichi Handa <handa@m17n.org>
parents:
89905
diff
changeset
|
7445 c = BYTE8_TO_CHAR (*src), src++, pos++; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7446 } |
88365 | 7447 else |
92992
49c4ea77b83a
(CHAR_STRING_ADVANCE_NO_UNIFY)
Kenichi Handa <handa@m17n.org>
parents:
92458
diff
changeset
|
7448 c = STRING_CHAR_ADVANCE_NO_UNIFY (src), pos++; |
88365 | 7449 if ((c == '\r') && (coding->mode & CODING_MODE_SELECTIVE_DISPLAY)) |
7450 c = '\n'; | |
7451 if (! EQ (eol_type, Qunix)) | |
7452 { | |
7453 if (c == '\n') | |
32443
57fa108c491f
(code_convert_region): Be sure to initialize coding->category_idx.
Kenichi Handa <handa@m17n.org>
parents:
31458
diff
changeset
|
7454 { |
88365 | 7455 if (EQ (eol_type, Qdos)) |
7456 *buf++ = '\r'; | |
7457 else | |
7458 c = '\r'; | |
32443
57fa108c491f
(code_convert_region): Be sure to initialize coding->category_idx.
Kenichi Handa <handa@m17n.org>
parents:
31458
diff
changeset
|
7459 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7460 } |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7461 |
89858
23cb9ed79225
(get_translation_table): Declare it as Lisp_Object.
Kenichi Handa <handa@m17n.org>
parents:
89856
diff
changeset
|
7462 trans = Qnil; |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7463 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
|
7464 if (NILP (trans)) |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7465 *buf++ = c; |
26847 | 7466 else |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7467 { |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7468 int from_nchars = 1, to_nchars = 1; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7469 int *lookup_buf_end; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7470 const unsigned char *p = src; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7471 int i; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7472 |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7473 lookup_buf[0] = c; |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7474 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
|
7475 lookup_buf[i] = STRING_CHAR_ADVANCE (p); |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7476 lookup_buf_end = lookup_buf + i; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7477 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
|
7478 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7479 c = XINT (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7480 else if (CONSP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7481 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7482 from_nchars = ASIZE (XCAR (trans)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7483 trans = XCDR (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7484 if (INTEGERP (trans)) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7485 c = XINT (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7486 else |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7487 { |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7488 to_nchars = ASIZE (trans); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7489 if (buf + to_nchars > buf_end) |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7490 break; |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7491 c = XINT (AREF (trans, 0)); |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7492 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7493 } |
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7494 else |
23881
20d595402dea
(DECODE_DESIGNATION): Jump to label_invalid_code if
Kenichi Handa <handa@m17n.org>
parents:
23564
diff
changeset
|
7495 break; |
102422
82f82b92314e
(CODING_ISO_CMP_STATUS): New macro.
Kenichi Handa <handa@m17n.org>
parents:
102334
diff
changeset
|
7496 *buf++ = c; |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7497 for (i = 1; i < to_nchars; i++) |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7498 *buf++ = XINT (AREF (trans, i)); |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7499 for (i = 1; i < from_nchars; i++, pos++) |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7500 src += MULTIBYTE_LENGTH_NO_CHECK (src); |
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
7501 } |
88365 | 7502 } |
7503 | |
7504 coding->consumed = src - coding->source; | |
7505 coding->consumed_char = pos - coding->src_pos; | |
7506 coding->charbuf_used = buf - coding->charbuf; | |
7507 coding->chars_at_source = 0; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7508 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7509 |
88365 | 7510 |
7511 /* Encode the text at CODING->src_object into CODING->dst_object. | |
7512 CODING->src_object is a buffer or a string. | |
7513 CODING->dst_object is a buffer or nil. | |
7514 | |
7515 If CODING->src_object is a buffer, it must be the current buffer. | |
7516 In this case, if CODING->src_pos is positive, it is a position of | |
7517 the source text in the buffer, otherwise. the source text is in the | |
7518 gap area of the buffer, and coding->src_pos specifies the offset of | |
7519 the text from GPT (which must be the same as PT). If this is the | |
7520 same buffer as CODING->dst_object, CODING->src_pos must be | |
7521 negative and CODING should not have `pre-write-conversion'. | |
7522 | |
7523 If CODING->src_object is a string, CODING should not have | |
7524 `pre-write-conversion'. | |
7525 | |
7526 If CODING->dst_object is a buffer, the encoded data is inserted at | |
7527 the current point of that buffer. | |
7528 | |
7529 If CODING->dst_object is nil, the encoded data is placed at the | |
7530 memory area specified by CODING->destination. */ | |
7531 | |
7532 static int | |
7533 encode_coding (coding) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7534 struct coding_system *coding; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7535 { |
88365 | 7536 Lisp_Object attrs; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
7537 Lisp_Object translation_table; |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7538 int max_lookup; |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
7539 struct ccl_spec cclspec; |
88365 | 7540 |
7541 attrs = CODING_ID_ATTRS (coding->id); | |
89933
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7542 if (coding->encoder == encode_coding_raw_text) |
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7543 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
|
7544 else |
89933
48af0ea7d387
(setup_coding_system): Set coding->common_flags
Kenichi Handa <handa@m17n.org>
parents:
89924
diff
changeset
|
7545 translation_table = get_translation_table (attrs, 1, &max_lookup); |
88365 | 7546 |
7547 if (BUFFERP (coding->dst_object)) | |
7548 { | |
7549 set_buffer_internal (XBUFFER (coding->dst_object)); | |
7550 coding->dst_multibyte | |
7551 = ! NILP (current_buffer->enable_multibyte_characters); | |
7552 } | |
7553 | |
7554 coding->consumed = coding->consumed_char = 0; | |
7555 coding->produced = coding->produced_char = 0; | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7556 record_conversion_result (coding, CODING_RESULT_SUCCESS); |
88365 | 7557 coding->errors = 0; |
7558 | |
7559 ALLOC_CONVERSION_WORK_AREA (coding); | |
7560 | |
107507
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
7561 if (coding->encoder == encode_coding_ccl) |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
7562 { |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
7563 coding->spec.ccl = &cclspec; |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
7564 setup_ccl_program (&cclspec.ccl, CODING_CCL_ENCODER (coding)); |
8960853cf85d
Fix the ccl encoder for the case that the output buffer is fullfilled.
Kenichi Handa <handa@m17n.org>
parents:
107506
diff
changeset
|
7565 } |
88365 | 7566 do { |
7567 coding_set_source (coding); | |
89859
b706c5ee6492
(get_translation_table): New arg max_lookup. Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
89858
diff
changeset
|
7568 consume_chars (coding, translation_table, max_lookup); |
88365 | 7569 coding_set_destination (coding); |
7570 (*(coding->encoder)) (coding); | |
7571 } while (coding->consumed_char < coding->src_chars); | |
7572 | |
90809
3c52757d5f6e
(produce_chars): Don't call insert_from_gap if no
Kenichi Handa <handa@m17n.org>
parents:
90772
diff
changeset
|
7573 if (BUFFERP (coding->dst_object) && coding->produced_char > 0) |
88365 | 7574 insert_from_gap (coding->produced_char, coding->produced); |
7575 | |
7576 return (coding->result); | |
7577 } | |
7578 | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7579 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7580 /* 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
|
7581 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
|
7582 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7583 /* 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
|
7584 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
|
7585 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
|
7586 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
|
7587 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
|
7588 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
|
7589 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7590 /* 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
|
7591 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
|
7592 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7593 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7594 /* 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
|
7595 multibyteness of returning buffer. */ |
88365 | 7596 |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
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 make_conversion_work_buffer (multibyte) |
89863
428fc37b2ae6
Add many prototypes for static functions.
Kenichi Handa <handa@m17n.org>
parents:
89861
diff
changeset
|
7599 int multibyte; |
88365 | 7600 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7601 Lisp_Object name, workbuf; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7602 struct buffer *current; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7603 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7604 if (reused_workbuf_in_use++) |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7605 { |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7606 name = Fgenerate_new_buffer_name (Vcode_conversion_workbuf_name, Qnil); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7607 workbuf = Fget_buffer_create (name); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7608 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7609 else |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7610 { |
99074
10cd979d05ca
(make_conversion_work_buffer): Check that Vcode_conversion_reused_workbuf
Noah Friedman <friedman@splode.com>
parents:
98992
diff
changeset
|
7611 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
|
7612 Vcode_conversion_reused_workbuf |
1cfa973fde14
(make_conversion_work_buffer): Avoid calling
Kenichi Handa <handa@m17n.org>
parents:
96571
diff
changeset
|
7613 = Fget_buffer_create (Vcode_conversion_workbuf_name); |
1cfa973fde14
(make_conversion_work_buffer): Avoid calling
Kenichi Handa <handa@m17n.org>
parents:
96571
diff
changeset
|
7614 workbuf = Vcode_conversion_reused_workbuf; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7615 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7616 current = current_buffer; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7617 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
|
7618 /* 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
|
7619 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
|
7620 doesn't compile new regexps. */ |
46114a72fb0e
(make_conversion_work_buffer): Disable buffer modification hooks in
Chong Yidong <cyd@stupidchicken.com>
parents:
100176
diff
changeset
|
7621 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
|
7622 Ferase_buffer (); |
88365 | 7623 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
|
7624 current_buffer->enable_multibyte_characters = multibyte ? Qt : Qnil; |
88365 | 7625 set_buffer_internal (current); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7626 return workbuf; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7627 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7628 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7629 |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7630 static Lisp_Object |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7631 code_conversion_restore (arg) |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7632 Lisp_Object arg; |
26067
f54ca66e2571
(code_convert_string): Add record_unwind_protect to
Kenichi Handa <handa@m17n.org>
parents:
25860
diff
changeset
|
7633 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7634 Lisp_Object current, workbuf; |
90263
80fb4c061e99
(code_conversion_restore): GCPRO arg.
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
7635 struct gcpro gcpro1; |
80fb4c061e99
(code_conversion_restore): GCPRO arg.
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
7636 |
80fb4c061e99
(code_conversion_restore): GCPRO arg.
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
7637 GCPRO1 (arg); |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7638 current = XCAR (arg); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7639 workbuf = XCDR (arg); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7640 if (! NILP (workbuf)) |
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 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
|
7643 reused_workbuf_in_use = 0; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7644 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
|
7645 Fkill_buffer (workbuf); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7646 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7647 set_buffer_internal (XBUFFER (current)); |
90263
80fb4c061e99
(code_conversion_restore): GCPRO arg.
Kenichi Handa <handa@m17n.org>
parents:
90261
diff
changeset
|
7648 UNGCPRO; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7649 return Qnil; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7650 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7651 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7652 Lisp_Object |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7653 code_conversion_save (with_work_buf, multibyte) |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7654 int with_work_buf, multibyte; |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7655 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7656 Lisp_Object workbuf = Qnil; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7657 |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7658 if (with_work_buf) |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7659 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
|
7660 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
|
7661 Fcons (Fcurrent_buffer (), workbuf)); |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7662 return workbuf; |
17052 | 7663 } |
7664 | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7665 int |
88365 | 7666 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
|
7667 struct coding_system *coding; |
88365 | 7668 EMACS_INT chars, bytes; |
7669 { | |
7670 int count = specpdl_ptr - specpdl; | |
89448
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7671 Lisp_Object attrs; |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7672 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7673 code_conversion_save (0, 0); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7674 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7675 coding->src_object = Fcurrent_buffer (); |
88365 | 7676 coding->src_chars = chars; |
7677 coding->src_bytes = bytes; | |
7678 coding->src_pos = -chars; | |
7679 coding->src_pos_byte = -bytes; | |
7680 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
|
7681 coding->dst_object = coding->src_object; |
88365 | 7682 coding->dst_pos = PT; |
7683 coding->dst_pos_byte = PT_BYTE; | |
88443
6b86cf30a0b9
(produce_chars): Set the variable `multibytep' correctly.
Kenichi Handa <handa@m17n.org>
parents:
88438
diff
changeset
|
7684 coding->dst_multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
88365 | 7685 |
7686 if (CODING_REQUIRE_DETECTION (coding)) | |
7687 detect_coding (coding); | |
89483 | 7688 |
90350
60eaefb08cf7
(DECODE_COMPOSITION_START): If the source is short, set
Kenichi Handa <handa@m17n.org>
parents:
90346
diff
changeset
|
7689 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
|
7690 current_buffer->text->inhibit_shrinking = 1; |
88365 | 7691 decode_coding (coding); |
90772
b15334b4a9c3
(coding_alloc_by_making_gap): New arg offset.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
7692 current_buffer->text->inhibit_shrinking = 0; |
88365 | 7693 |
89448
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7694 attrs = CODING_ID_ATTRS (coding->id); |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7695 if (! NILP (CODING_ATTR_POST_READ (attrs))) |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7696 { |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7697 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
|
7698 Lisp_Object val; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7699 |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7700 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
|
7701 val = call1 (CODING_ATTR_POST_READ (attrs), |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7702 make_number (coding->produced_char)); |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7703 CHECK_NATNUM (val); |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7704 coding->produced_char += Z - prev_Z; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7705 coding->produced += Z_BYTE - prev_Z_BYTE; |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7706 } |
de8b460070cc
(setup_coding_system): If coding has
Kenichi Handa <handa@m17n.org>
parents:
89446
diff
changeset
|
7707 |
88365 | 7708 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
|
7709 return coding->result; |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7710 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7711 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7712 int |
88365 | 7713 encode_coding_gap (coding, chars, bytes) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7714 struct coding_system *coding; |
88365 | 7715 EMACS_INT chars, bytes; |
26847 | 7716 { |
88365 | 7717 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
|
7718 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7719 code_conversion_save (0, 0); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7720 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7721 coding->src_object = Fcurrent_buffer (); |
88365 | 7722 coding->src_chars = chars; |
7723 coding->src_bytes = bytes; | |
7724 coding->src_pos = -chars; | |
7725 coding->src_pos_byte = -bytes; | |
7726 coding->src_multibyte = chars < bytes; | |
7727 coding->dst_object = coding->src_object; | |
7728 coding->dst_pos = PT; | |
7729 coding->dst_pos_byte = PT_BYTE; | |
7730 | |
7731 encode_coding (coding); | |
7732 | |
7733 unbind_to (count, Qnil); | |
7734 return coding->result; | |
26847 | 7735 } |
7736 | |
88365 | 7737 |
7738 /* Decode the text in the range FROM/FROM_BYTE and TO/TO_BYTE in | |
7739 SRC_OBJECT into DST_OBJECT by coding context CODING. | |
7740 | |
7741 SRC_OBJECT is a buffer, a string, or Qnil. | |
7742 | |
7743 If it is a buffer, the text is at point of the buffer. FROM and TO | |
7744 are positions in the buffer. | |
7745 | |
7746 If it is a string, the text is at the beginning of the string. | |
7747 FROM and TO are indices to the string. | |
7748 | |
7749 If it is nil, the text is at coding->source. FROM and TO are | |
7750 indices to coding->source. | |
7751 | |
7752 DST_OBJECT is a buffer, Qt, or Qnil. | |
7753 | |
7754 If it is a buffer, the decoded text is inserted at point of the | |
7755 buffer. If the buffer is the same as SRC_OBJECT, the source text | |
7756 is deleted. | |
7757 | |
7758 If it is Qt, a string is made from the decoded text, and | |
7759 set in CODING->dst_object. | |
7760 | |
7761 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
|
7762 The caller must allocate CODING->dst_bytes bytes at |
88365 | 7763 CODING->destination by xmalloc. If the decoded text is longer than |
7764 CODING->dst_bytes, CODING->destination is relocated by xrealloc. | |
7765 */ | |
26847 | 7766 |
7767 void | |
88365 | 7768 decode_coding_object (coding, src_object, from, from_byte, to, to_byte, |
7769 dst_object) | |
26847 | 7770 struct coding_system *coding; |
88365 | 7771 Lisp_Object src_object; |
7772 EMACS_INT from, from_byte, to, to_byte; | |
7773 Lisp_Object dst_object; | |
26847 | 7774 { |
88365 | 7775 int count = specpdl_ptr - specpdl; |
7776 unsigned char *destination; | |
7777 EMACS_INT dst_bytes; | |
7778 EMACS_INT chars = to - from; | |
7779 EMACS_INT bytes = to_byte - from_byte; | |
7780 Lisp_Object attrs; | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7781 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
|
7782 int need_marker_adjustment = 0; |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7783 Lisp_Object old_deactivate_mark; |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7784 |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7785 old_deactivate_mark = Vdeactivate_mark; |
88365 | 7786 |
7787 if (NILP (dst_object)) | |
7788 { | |
7789 destination = coding->destination; | |
7790 dst_bytes = coding->dst_bytes; | |
7791 } | |
7792 | |
7793 coding->src_object = src_object; | |
7794 coding->src_chars = chars; | |
7795 coding->src_bytes = bytes; | |
7796 coding->src_multibyte = chars < bytes; | |
7797 | |
7798 if (STRINGP (src_object)) | |
7799 { | |
7800 coding->src_pos = from; | |
7801 coding->src_pos_byte = from_byte; | |
7802 } | |
7803 else if (BUFFERP (src_object)) | |
7804 { | |
7805 set_buffer_internal (XBUFFER (src_object)); | |
7806 if (from != GPT) | |
7807 move_gap_both (from, from_byte); | |
7808 if (EQ (src_object, dst_object)) | |
26847 | 7809 { |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7810 struct Lisp_Marker *tail; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7811 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7812 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next) |
26847 | 7813 { |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7814 tail->need_adjustment |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7815 = tail->charpos == (tail->insertion_type ? from : to); |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7816 need_marker_adjustment |= tail->need_adjustment; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7817 } |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7818 saved_pt = PT, saved_pt_byte = PT_BYTE; |
88365 | 7819 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
|
7820 current_buffer->text->inhibit_shrinking = 1; |
88365 | 7821 del_range_both (from, from_byte, to, to_byte, 1); |
7822 coding->src_pos = -chars; | |
7823 coding->src_pos_byte = -bytes; | |
20931
068eb408c911
(decode_coding_iso2022): Update coding->fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20803
diff
changeset
|
7824 } |
42661
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
7825 else |
e85e4d9494b1
(code_convert_region): Don't copy old text if undo disabled.
Richard M. Stallman <rms@gnu.org>
parents:
42105
diff
changeset
|
7826 { |
88365 | 7827 coding->src_pos = from; |
7828 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
|
7829 } |
88365 | 7830 } |
7831 | |
7832 if (CODING_REQUIRE_DETECTION (coding)) | |
7833 detect_coding (coding); | |
7834 attrs = CODING_ID_ATTRS (coding->id); | |
7835 | |
89418
a9c2b3712863
(coding_set_source): Fix for the case that the current
Kenichi Handa <handa@m17n.org>
parents:
89404
diff
changeset
|
7836 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
|
7837 || (! 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
|
7838 && NILP (dst_object))) |
88365 | 7839 { |
93321
c3fe9ef79b56
(decode_coding_object): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93197
diff
changeset
|
7840 coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding); |
c3fe9ef79b56
(decode_coding_object): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93197
diff
changeset
|
7841 coding->dst_object = code_conversion_save (1, coding->dst_multibyte); |
88365 | 7842 coding->dst_pos = BEG; |
7843 coding->dst_pos_byte = BEG_BYTE; | |
7844 } | |
7845 else if (BUFFERP (dst_object)) | |
7846 { | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7847 code_conversion_save (0, 0); |
88365 | 7848 coding->dst_object = dst_object; |
7849 coding->dst_pos = BUF_PT (XBUFFER (dst_object)); | |
7850 coding->dst_pos_byte = BUF_PT_BYTE (XBUFFER (dst_object)); | |
7851 coding->dst_multibyte | |
7852 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
7853 } | |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
7854 else |
29172
46ad5a027334
(run_pre_post_conversion_on_str): Set point to the
Kenichi Handa <handa@m17n.org>
parents:
29093
diff
changeset
|
7855 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7856 code_conversion_save (0, 0); |
88365 | 7857 coding->dst_object = Qnil; |
93322
3b82aab9d8fc
(decode_coding_object): Revert part of last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93321
diff
changeset
|
7858 /* 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
|
7859 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
|
7860 CODING_FOR_UNIBYTE. */ |
93323
06e93ffa2e9f
(decode_coding_object): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93322
diff
changeset
|
7861 coding->dst_multibyte = 1; |
88365 | 7862 } |
7863 | |
7864 decode_coding (coding); | |
7865 | |
7866 if (BUFFERP (coding->dst_object)) | |
7867 set_buffer_internal (XBUFFER (coding->dst_object)); | |
7868 | |
7869 if (! NILP (CODING_ATTR_POST_READ (attrs))) | |
7870 { | |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7871 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
88365 | 7872 EMACS_INT prev_Z = Z, prev_Z_BYTE = Z_BYTE; |
7873 Lisp_Object val; | |
7874 | |
88506
a7f0d13affa5
(decode_coding_object): Move point to coding->dst_pos before
Kenichi Handa <handa@m17n.org>
parents:
88497
diff
changeset
|
7875 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
|
7876 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
|
7877 old_deactivate_mark); |
90131
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
7878 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
|
7879 make_number (coding->produced_char)); |
88365 | 7880 UNGCPRO; |
7881 CHECK_NATNUM (val); | |
7882 coding->produced_char += Z - prev_Z; | |
7883 coding->produced += Z_BYTE - prev_Z_BYTE; | |
7884 } | |
7885 | |
7886 if (EQ (dst_object, Qt)) | |
7887 { | |
7888 coding->dst_object = Fbuffer_string (); | |
7889 } | |
7890 else if (NILP (dst_object) && BUFFERP (coding->dst_object)) | |
7891 { | |
7892 set_buffer_internal (XBUFFER (coding->dst_object)); | |
7893 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
|
7894 { |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7895 destination = xrealloc (destination, coding->produced); |
88365 | 7896 if (! destination) |
26847 | 7897 { |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7898 record_conversion_result (coding, |
107174
e98bd64897e0
Fix handling of CODING_RESULT_INSUFFICIENT_DST.
Kenichi Handa <handa@m17n.org>
parents:
107171
diff
changeset
|
7899 CODING_RESULT_INSUFFICIENT_MEM); |
88365 | 7900 unbind_to (count, Qnil); |
7901 return; | |
26847 | 7902 } |
88365 | 7903 if (BEGV < GPT && GPT < BEGV + coding->produced_char) |
7904 move_gap_both (BEGV, BEGV_BYTE); | |
7905 bcopy (BEGV_ADDR, destination, coding->produced); | |
7906 coding->destination = destination; | |
23279
ca159e828a68
(ccl_coding_driver): If ccl_driver is interrupted by a
Kenichi Handa <handa@m17n.org>
parents:
23258
diff
changeset
|
7907 } |
88365 | 7908 } |
7909 | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7910 if (saved_pt >= 0) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7911 { |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7912 /* This is the case of: |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7913 (BUFFERP (src_object) && EQ (src_object, dst_object)) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7914 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
|
7915 contents, we must recover it now. */ |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7916 set_buffer_internal (XBUFFER (src_object)); |
92458
5f5f07a5c076
(decode_coding_object): Inhibit gap shrinking while
Andreas Schwab <schwab@suse.de>
parents:
92406
diff
changeset
|
7917 current_buffer->text->inhibit_shrinking = 0; |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7918 if (saved_pt < from) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7919 TEMP_SET_PT_BOTH (saved_pt, saved_pt_byte); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7920 else if (saved_pt < from + chars) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7921 TEMP_SET_PT_BOTH (from, from_byte); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7922 else if (! NILP (current_buffer->enable_multibyte_characters)) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7923 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
|
7924 saved_pt_byte + (coding->produced - bytes)); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7925 else |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7926 TEMP_SET_PT_BOTH (saved_pt + (coding->produced - bytes), |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7927 saved_pt_byte + (coding->produced - bytes)); |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7928 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7929 if (need_marker_adjustment) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7930 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7931 struct Lisp_Marker *tail; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7932 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7933 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
|
7934 if (tail->need_adjustment) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7935 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7936 tail->need_adjustment = 0; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7937 if (tail->insertion_type) |
26847 | 7938 { |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7939 tail->bytepos = from_byte; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7940 tail->charpos = from; |
26847 | 7941 } |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7942 else |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7943 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7944 tail->bytepos = from_byte + coding->produced; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7945 tail->charpos |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7946 = (NILP (current_buffer->enable_multibyte_characters) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7947 ? tail->bytepos : from + coding->produced_char); |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7948 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7949 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7950 } |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7951 } |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7952 |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7953 Vdeactivate_mark = old_deactivate_mark; |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
7954 unbind_to (count, coding->dst_object); |
88365 | 7955 } |
7956 | |
26847 | 7957 |
29275
b4ea9178e480
(DECODE_COMPOSITION_START): If coding->cmp_data is not
Kenichi Handa <handa@m17n.org>
parents:
29247
diff
changeset
|
7958 void |
88365 | 7959 encode_coding_object (coding, src_object, from, from_byte, to, to_byte, |
7960 dst_object) | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
7961 struct coding_system *coding; |
88365 | 7962 Lisp_Object src_object; |
7963 EMACS_INT from, from_byte, to, to_byte; | |
7964 Lisp_Object dst_object; | |
7965 { | |
7966 int count = specpdl_ptr - specpdl; | |
7967 EMACS_INT chars = to - from; | |
7968 EMACS_INT bytes = to_byte - from_byte; | |
7969 Lisp_Object attrs; | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
7970 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
|
7971 int need_marker_adjustment = 0; |
90231
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
7972 int kill_src_buffer = 0; |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7973 Lisp_Object old_deactivate_mark; |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7974 |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
7975 old_deactivate_mark = Vdeactivate_mark; |
88365 | 7976 |
7977 coding->src_object = src_object; | |
7978 coding->src_chars = chars; | |
7979 coding->src_bytes = bytes; | |
7980 coding->src_multibyte = chars < bytes; | |
7981 | |
7982 attrs = CODING_ID_ATTRS (coding->id); | |
7983 | |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7984 if (EQ (src_object, dst_object)) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7985 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7986 struct Lisp_Marker *tail; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7987 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7988 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
|
7989 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7990 tail->need_adjustment |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7991 = tail->charpos == (tail->insertion_type ? from : to); |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7992 need_marker_adjustment |= tail->need_adjustment; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7993 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7994 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
7995 |
88365 | 7996 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
|
7997 { |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
7998 coding->src_object = code_conversion_save (1, coding->src_multibyte); |
88365 | 7999 set_buffer_internal (XBUFFER (coding->src_object)); |
8000 if (STRINGP (src_object)) | |
8001 insert_from_string (src_object, from, from_byte, chars, bytes, 0); | |
8002 else if (BUFFERP (src_object)) | |
8003 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
|
8004 else |
88365 | 8005 insert_1_both (coding->source + from, chars, bytes, 0, 0, 0); |
8006 | |
8007 if (EQ (src_object, dst_object)) | |
8008 { | |
8009 set_buffer_internal (XBUFFER (src_object)); | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8010 saved_pt = PT, saved_pt_byte = PT_BYTE; |
88365 | 8011 del_range_both (from, from_byte, to, to_byte, 1); |
8012 set_buffer_internal (XBUFFER (coding->src_object)); | |
8013 } | |
8014 | |
90131
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
8015 { |
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
8016 Lisp_Object args[3]; |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
8017 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
8018 |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
8019 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
|
8020 old_deactivate_mark); |
90131
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
8021 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
|
8022 args[1] = make_number (BEG); |
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
8023 args[2] = make_number (Z); |
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
8024 safe_call (3, args); |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
8025 UNGCPRO; |
90131
503a3c779486
(decode_coding_object): Use safe_call1 instead of call1.
Kenichi Handa <handa@m17n.org>
parents:
90127
diff
changeset
|
8026 } |
90231
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
8027 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
|
8028 kill_src_buffer = 1; |
88510
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
8029 coding->src_object = Fcurrent_buffer (); |
88365 | 8030 if (BEG != GPT) |
8031 move_gap_both (BEG, BEG_BYTE); | |
8032 coding->src_chars = Z - BEG; | |
8033 coding->src_bytes = Z_BYTE - BEG_BYTE; | |
8034 coding->src_pos = BEG; | |
8035 coding->src_pos_byte = BEG_BYTE; | |
8036 coding->src_multibyte = Z < Z_BYTE; | |
8037 } | |
8038 else if (STRINGP (src_object)) | |
8039 { | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8040 code_conversion_save (0, 0); |
88365 | 8041 coding->src_pos = from; |
8042 coding->src_pos_byte = from_byte; | |
8043 } | |
8044 else if (BUFFERP (src_object)) | |
8045 { | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8046 code_conversion_save (0, 0); |
88365 | 8047 set_buffer_internal (XBUFFER (src_object)); |
8048 if (EQ (src_object, dst_object)) | |
8049 { | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8050 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
|
8051 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
|
8052 coding->src_pos = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8053 coding->src_pos_byte = 0; |
88365 | 8054 } |
23514
7bad909cd6f1
(setup_coding_system): Fix setting up
Kenichi Handa <handa@m17n.org>
parents:
23475
diff
changeset
|
8055 else |
42105
09cc243e2d14
(code_convert_region): Update coding->cmp_data->char_offset
Richard M. Stallman <rms@gnu.org>
parents:
42104
diff
changeset
|
8056 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8057 if (from < GPT && to >= GPT) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8058 move_gap_both (from, from_byte); |
88365 | 8059 coding->src_pos = from; |
8060 coding->src_pos_byte = from_byte; | |
8061 } | |
64308
93129de4b8a4
(code_convert_region_unwind): ARG is changed to a cons.
Kenichi Handa <handa@m17n.org>
parents:
64251
diff
changeset
|
8062 } |
93129de4b8a4
(code_convert_region_unwind): ARG is changed to a cons.
Kenichi Handa <handa@m17n.org>
parents:
64251
diff
changeset
|
8063 else |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8064 code_conversion_save (0, 0); |
88365 | 8065 |
8066 if (BUFFERP (dst_object)) | |
8067 { | |
8068 coding->dst_object = dst_object; | |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8069 if (EQ (src_object, dst_object)) |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8070 { |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8071 coding->dst_pos = from; |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8072 coding->dst_pos_byte = from_byte; |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8073 } |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8074 else |
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8075 { |
95353
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8076 struct buffer *current = current_buffer; |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8077 |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8078 set_buffer_temp (XBUFFER (dst_object)); |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8079 coding->dst_pos = PT; |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8080 coding->dst_pos_byte = PT_BYTE; |
96d35f50fe34
(encode_coding_raw_text): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95345
diff
changeset
|
8081 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
|
8082 set_buffer_temp (current); |
89042
2b9f8973f240
(coding_set_destination): Fix coding->destination for
Kenichi Handa <handa@m17n.org>
parents:
88977
diff
changeset
|
8083 } |
88365 | 8084 coding->dst_multibyte |
8085 = ! NILP (XBUFFER (dst_object)->enable_multibyte_characters); | |
8086 } | |
8087 else if (EQ (dst_object, Qt)) | |
8088 { | |
8089 coding->dst_object = Qnil; | |
8090 coding->dst_bytes = coding->src_chars; | |
88510
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
8091 if (coding->dst_bytes == 0) |
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
8092 coding->dst_bytes = 1; |
d266b8fb8761
(encode_coding_object): Give correct arguments ot
Kenichi Handa <handa@m17n.org>
parents:
88506
diff
changeset
|
8093 coding->destination = (unsigned char *) xmalloc (coding->dst_bytes); |
88365 | 8094 coding->dst_multibyte = 0; |
65506
f376635f5061
(code_convert_region_unwind): Argument format changed.
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
8095 } |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
8096 else |
29172
46ad5a027334
(run_pre_post_conversion_on_str): Set point to the
Kenichi Handa <handa@m17n.org>
parents:
29093
diff
changeset
|
8097 { |
88365 | 8098 coding->dst_object = Qnil; |
8099 coding->dst_multibyte = 0; | |
8100 } | |
8101 | |
8102 encode_coding (coding); | |
8103 | |
8104 if (EQ (dst_object, Qt)) | |
8105 { | |
8106 if (BUFFERP (coding->dst_object)) | |
8107 coding->dst_object = Fbuffer_string (); | |
23514
7bad909cd6f1
(setup_coding_system): Fix setting up
Kenichi Handa <handa@m17n.org>
parents:
23475
diff
changeset
|
8108 else |
88365 | 8109 { |
8110 coding->dst_object | |
8111 = make_unibyte_string ((char *) coding->destination, | |
8112 coding->produced); | |
8113 xfree (coding->destination); | |
8114 } | |
8115 } | |
8116 | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8117 if (saved_pt >= 0) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8118 { |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8119 /* This is the case of: |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8120 (BUFFERP (src_object) && EQ (src_object, dst_object)) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8121 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
|
8122 contents, we must recover it now. */ |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8123 set_buffer_internal (XBUFFER (src_object)); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8124 if (saved_pt < from) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8125 TEMP_SET_PT_BOTH (saved_pt, saved_pt_byte); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8126 else if (saved_pt < from + chars) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8127 TEMP_SET_PT_BOTH (from, from_byte); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8128 else if (! NILP (current_buffer->enable_multibyte_characters)) |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8129 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
|
8130 saved_pt_byte + (coding->produced - bytes)); |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8131 else |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8132 TEMP_SET_PT_BOTH (saved_pt + (coding->produced - bytes), |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8133 saved_pt_byte + (coding->produced - bytes)); |
91344
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8134 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8135 if (need_marker_adjustment) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8136 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8137 struct Lisp_Marker *tail; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8138 |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8139 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
|
8140 if (tail->need_adjustment) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8141 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8142 tail->need_adjustment = 0; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8143 if (tail->insertion_type) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8144 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8145 tail->bytepos = from_byte; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8146 tail->charpos = from; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8147 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8148 else |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8149 { |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8150 tail->bytepos = from_byte + coding->produced; |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8151 tail->charpos |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8152 = (NILP (current_buffer->enable_multibyte_characters) |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8153 ? tail->bytepos : from + coding->produced_char); |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8154 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8155 } |
56f3473b139e
(decode_coding_object): Adjuste marker positions after
Kenichi Handa <handa@m17n.org>
parents:
91327
diff
changeset
|
8156 } |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8157 } |
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
8158 |
90231
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
8159 if (kill_src_buffer) |
8be9e4c6d687
(encode_coding_object): If a pre-write-conversion
Kenichi Handa <handa@m17n.org>
parents:
90224
diff
changeset
|
8160 Fkill_buffer (coding->src_object); |
91838
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
8161 |
7bed61cbed0c
(decode_coding_object, encode_coding_object): Preserve
Kenichi Handa <handa@m17n.org>
parents:
91807
diff
changeset
|
8162 Vdeactivate_mark = old_deactivate_mark; |
88365 | 8163 unbind_to (count, Qnil); |
58637
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
8164 } |
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
8165 |
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
8166 |
29005
b396df3a5181
(ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->resutl to
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
8167 Lisp_Object |
88365 | 8168 preferred_coding_system () |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8169 { |
88365 | 8170 int id = coding_categories[coding_priorities[0]].id; |
8171 | |
8172 return CODING_ID_NAME (id); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8173 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8174 |
17052 | 8175 |
8176 #ifdef emacs | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
8177 /*** 8. Emacs Lisp library functions ***/ |
17052 | 8178 |
8179 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
|
8180 doc: /* Return t if OBJECT is nil or a coding-system. |
88365 | 8181 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
|
8182 about coding-system objects. */) |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8183 (object) |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8184 Lisp_Object object; |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8185 { |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8186 if (NILP (object) |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8187 || CODING_SYSTEM_ID (object) >= 0) |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8188 return Qt; |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8189 if (! SYMBOLP (object) |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
8190 || NILP (Fget (object, Qcoding_system_define_form))) |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8191 return Qnil; |
90272
f1df126ec7de
Sync to HEAD for handling autoload-coding-system.
Kenichi Handa <handa@m17n.org>
parents:
90263
diff
changeset
|
8192 return Qt; |
17052 | 8193 } |
8194 | |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
8195 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
|
8196 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
|
8197 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
|
8198 (prompt) |
17052 | 8199 Lisp_Object prompt; |
8200 { | |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8201 Lisp_Object val; |
17717
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
8202 do |
4891aaecc5cc
(Fread_coding_system, Fread_non_nil_coding_system):
Richard M. Stallman <rms@gnu.org>
parents:
17485
diff
changeset
|
8203 { |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8204 val = Fcompleting_read (prompt, Vcoding_system_alist, Qnil, |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8205 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
|
8206 } |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
8207 while (SCHARS (val) == 0); |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
8208 return (Fintern (val, Qnil)); |
17052 | 8209 } |
8210 | |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
8211 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
|
8212 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
|
8213 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
|
8214 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
|
8215 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
|
8216 (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
|
8217 Lisp_Object prompt, default_coding_system; |
17052 | 8218 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
8219 Lisp_Object val; |
79107
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8220 int count = SPECPDL_INDEX (); |
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8221 |
19758
49a1662b68dd
(Fread_coding_system): New optional arg DEFAULT_CODING_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
19750
diff
changeset
|
8222 if (SYMBOLP (default_coding_system)) |
45396
cab845213388
* coding.c (Fread_coding_system, code_convert_region1)
Ken Raeburn <raeburn@raeburn.org>
parents:
45239
diff
changeset
|
8223 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
|
8224 specbind (Qcompletion_ignore_case, Qt); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
8225 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
|
8226 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
|
8227 default_coding_system, Qnil); |
79107
cce707ee192e
(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris <rgm@gnu.org>
parents:
78313
diff
changeset
|
8228 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
|
8229 return (SCHARS (val) == 0 ? Qnil : Fintern (val, Qnil)); |
17052 | 8230 } |
8231 | |
8232 DEFUN ("check-coding-system", Fcheck_coding_system, Scheck_coding_system, | |
8233 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
|
8234 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
|
8235 If valid, return CODING-SYSTEM, else signal a `coding-system-error' error. |
89892 | 8236 It is valid if it is nil or a symbol defined as a coding system by the |
8237 function `define-coding-system'. */) | |
88365 | 8238 (coding_system) |
17052 | 8239 Lisp_Object coding_system; |
8240 { | |
52794
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8241 Lisp_Object define_form; |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8242 |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8243 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
|
8244 if (! NILP (define_form)) |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8245 { |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8246 Fput (coding_system, Qcoding_system_define_form, Qnil); |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8247 safe_eval (define_form); |
f4d906e31662
(Qcoding_system_define_form): New variable.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
8248 } |
17052 | 8249 if (!NILP (Fcoding_system_p (coding_system))) |
8250 return coding_system; | |
71972
eaa3c19b94d2
(Fcheck_coding_system): Use xsignal1. Remove loop.
Kim F. Storm <storm@cua.dk>
parents:
71084
diff
changeset
|
8251 xsignal1 (Qcoding_system_error, coding_system); |
17052 | 8252 } |
88365 | 8253 |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
8254 |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8255 /* 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
|
8256 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
|
8257 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
|
8258 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
|
8259 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
|
8260 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
|
8261 Otherwise, the bytes are raw bytes. |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8262 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8263 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
|
8264 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8265 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
|
8266 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
|
8267 (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
|
8268 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
|
8269 detect only text-format. */ |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8270 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8271 Lisp_Object |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8272 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
|
8273 coding_system) |
46548
cb1914307488
(encode_eol, detect_coding, detect_eol):
Ken Raeburn <raeburn@raeburn.org>
parents:
46462
diff
changeset
|
8274 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
|
8275 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
|
8276 int highest; |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
8277 int multibytep; |
88365 | 8278 Lisp_Object coding_system; |
17052 | 8279 { |
89483 | 8280 const unsigned char *src_end = src + src_bytes; |
88365 | 8281 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
|
8282 Lisp_Object val = Qnil; |
88365 | 8283 struct coding_system coding; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8284 int id; |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8285 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
|
8286 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
|
8287 int null_byte_found = 0, eight_bit_found = 0; |
88365 | 8288 |
8289 if (NILP (coding_system)) | |
8290 coding_system = Qundecided; | |
8291 setup_coding_system (coding_system, &coding); | |
8292 attrs = CODING_ID_ATTRS (coding.id); | |
8293 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
|
8294 coding_system = CODING_ATTR_BASE_NAME (attrs); |
88365 | 8295 |
8296 coding.source = src; | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8297 coding.src_chars = src_chars; |
88365 | 8298 coding.src_bytes = src_bytes; |
8299 coding.src_multibyte = multibytep; | |
8300 coding.consumed = 0; | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8301 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
|
8302 coding.head_ascii = 0; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8303 |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8304 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
|
8305 |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8306 /* 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
|
8307 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
|
8308 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
|
8309 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8310 enum coding_category category; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8311 struct coding_system *this; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8312 int c, i; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8313 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8314 /* 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
|
8315 for (; src < src_end; src++) |
17052 | 8316 { |
88365 | 8317 c = *src; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8318 if (c & 0x80) |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8319 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8320 eight_bit_found = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8321 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8322 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8323 } |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8324 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
|
8325 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8326 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
|
8327 && ! inhibit_iso_escape_detection |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8328 && ! 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
|
8329 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8330 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
|
8331 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8332 /* 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
|
8333 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
|
8334 { |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8335 /* 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
|
8336 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
|
8337 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
|
8338 ISO-2022. */ |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8339 src = src_end; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8340 coding.head_ascii = src - coding.source; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8341 } |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8342 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
|
8343 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8344 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8345 } |
101040 | 8346 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
|
8347 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8348 null_byte_found = 1; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8349 if (eight_bit_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8350 break; |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8351 } |
95585
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
8352 if (! eight_bit_found) |
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
8353 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
|
8354 } |
95585
862c7386145c
(detect_coding): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
95533
diff
changeset
|
8355 else if (! eight_bit_found) |
95533
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8356 coding.head_ascii++; |
831c8ee4d884
(detect_coding): Fix handling of coding->head_ascii.
Kenichi Handa <handa@m17n.org>
parents:
95397
diff
changeset
|
8357 } |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8358 |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8359 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
|
8360 || 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
|
8361 || detect_info.found) |
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8362 { |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8363 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
|
8364 /* 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
|
8365 for (i = 0; i < coding_category_raw_text; i++) |
88365 | 8366 { |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8367 category = coding_priorities[i]; |
90594
a965377e6761
(detect_coding_system): Fix for handling off
Kenichi Handa <handa@m17n.org>
parents:
90587
diff
changeset
|
8368 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
|
8369 if (detect_info.found & (1 << category)) |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8370 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8371 } |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8372 else |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8373 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8374 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8375 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8376 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
|
8377 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
|
8378 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8379 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
|
8380 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8381 category = coding_priorities[i]; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8382 this = coding_categories + category; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8383 |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8384 if (this->id < 0) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8385 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8386 /* 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
|
8387 detect_info.rejected |= (1 << category); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8388 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8389 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
|
8390 continue; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8391 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
|
8392 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8393 if (highest |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8394 && (detect_info.found & (1 << category))) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8395 break; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8396 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8397 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
|
8398 && highest |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8399 && (detect_info.found & (1 << category))) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8400 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8401 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
|
8402 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8403 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
|
8404 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
|
8405 else |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8406 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
|
8407 } |
89974
2fef8edebd5c
(detect_coding_utf_16): Don't set detect_info->found if
Kenichi Handa <handa@m17n.org>
parents:
89933
diff
changeset
|
8408 break; |
93595
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8409 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8410 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8411 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8412 } |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8413 |
101197
ee5f395f3c19
(detect_coding_system): Fix handling of null_byte_fount.
Kenichi Handa <handa@m17n.org>
parents:
101174
diff
changeset
|
8414 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
|
8415 || null_byte_found) |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8416 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8417 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
|
8418 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
|
8419 val = Fcons (make_number (id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8420 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8421 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
|
8422 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8423 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
|
8424 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
|
8425 val = Fcons (make_number (id), Qnil); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8426 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8427 else if (highest) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8428 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8429 if (detect_info.found) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8430 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8431 detect_info.found = 1 << category; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8432 val = Fcons (make_number (this->id), Qnil); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8433 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8434 else |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8435 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
|
8436 if (! (detect_info.rejected & (1 << coding_priorities[i]))) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8437 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8438 detect_info.found = 1 << coding_priorities[i]; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8439 id = coding_categories[coding_priorities[i]].id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8440 val = Fcons (make_number (id), Qnil); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8441 break; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8442 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8443 } |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8444 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8445 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8446 int mask = detect_info.rejected | detect_info.found; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8447 int found = 0; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8448 |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8449 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
|
8450 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8451 category = coding_priorities[i]; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8452 if (! (mask & (1 << category))) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8453 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8454 found |= 1 << category; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8455 id = coding_categories[category].id; |
90594
a965377e6761
(detect_coding_system): Fix for handling off
Kenichi Handa <handa@m17n.org>
parents:
90587
diff
changeset
|
8456 if (id >= 0) |
a965377e6761
(detect_coding_system): Fix for handling off
Kenichi Handa <handa@m17n.org>
parents:
90587
diff
changeset
|
8457 val = Fcons (make_number (id), val); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8458 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8459 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8460 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
|
8461 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8462 category = coding_priorities[i]; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8463 if (detect_info.found & (1 << category)) |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8464 { |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8465 id = coding_categories[category].id; |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8466 val = Fcons (make_number (id), val); |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8467 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8468 } |
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8469 detect_info.found |= found; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8470 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8471 } |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8472 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
|
8473 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8474 if (detect_coding_utf_8 (&coding, &detect_info)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8475 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8476 struct coding_system *this; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8477 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8478 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
|
8479 this = coding_categories + coding_category_utf_8_sig; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8480 else |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8481 this = coding_categories + coding_category_utf_8_nosig; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8482 val = Fcons (make_number (this->id), Qnil); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8483 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
8484 } |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8485 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
|
8486 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8487 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
|
8488 { |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8489 struct coding_system *this; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8490 |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8491 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
|
8492 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
|
8493 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
|
8494 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
|
8495 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
|
8496 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
|
8497 else |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8498 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
|
8499 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
|
8500 } |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
8501 } |
88365 | 8502 else |
8503 { | |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8504 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
|
8505 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
|
8506 } |
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 /* Then, detect eol-format if necessary. */ |
88365 | 8509 { |
100135
0e17542db552
(detect_coding_system): Initialize utf_16_le_eol to -1, val to
Kenichi Handa <handa@m17n.org>
parents:
100133
diff
changeset
|
8510 int normal_eol = -1, utf_16_be_eol = -1, utf_16_le_eol = -1; |
88365 | 8511 Lisp_Object tail; |
8512 | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8513 if (VECTORP (eol_type)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8514 { |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8515 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
|
8516 { |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8517 if (null_byte_found) |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8518 normal_eol = EOL_SEEN_LF; |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8519 else |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8520 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
|
8521 coding_category_raw_text); |
ac4d127a841a
(CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
Kenichi Handa <handa@m17n.org>
parents:
93323
diff
changeset
|
8522 } |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8523 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
|
8524 | 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
|
8525 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
|
8526 coding_category_utf_16_be); |
89331
1892a75ffcac
(CATEGORY_MASK_RAW_TEXT): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89279
diff
changeset
|
8527 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
|
8528 | 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
|
8529 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
|
8530 coding_category_utf_16_le); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8531 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8532 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8533 { |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8534 if (EQ (eol_type, Qunix)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8535 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
|
8536 else if (EQ (eol_type, Qdos)) |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8537 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
|
8538 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8539 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
|
8540 } |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8541 |
88365 | 8542 for (tail = val; CONSP (tail); tail = XCDR (tail)) |
8543 { | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8544 enum coding_category category; |
88365 | 8545 int this_eol; |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8546 |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8547 id = XINT (XCAR (tail)); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8548 attrs = CODING_ID_ATTRS (id); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8549 category = XINT (CODING_ATTR_CATEGORY (attrs)); |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8550 eol_type = CODING_ID_EOL_TYPE (id); |
88365 | 8551 if (VECTORP (eol_type)) |
8552 { | |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8553 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
|
8554 || 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
|
8555 this_eol = utf_16_be_eol; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8556 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
|
8557 || 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
|
8558 this_eol = utf_16_le_eol; |
88365 | 8559 else |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8560 this_eol = normal_eol; |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8561 |
88365 | 8562 if (this_eol == EOL_SEEN_LF) |
8563 XSETCAR (tail, AREF (eol_type, 0)); | |
8564 else if (this_eol == EOL_SEEN_CRLF) | |
8565 XSETCAR (tail, AREF (eol_type, 1)); | |
8566 else if (this_eol == EOL_SEEN_CR) | |
8567 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
|
8568 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8569 XSETCAR (tail, CODING_ID_NAME (id)); |
88365 | 8570 } |
89193
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8571 else |
311d061195ef
(detect_coding_utf_8): Check incomplete byte sequence.
Kenichi Handa <handa@m17n.org>
parents:
89184
diff
changeset
|
8572 XSETCAR (tail, CODING_ID_NAME (id)); |
88365 | 8573 } |
8574 } | |
8575 | |
100135
0e17542db552
(detect_coding_system): Initialize utf_16_le_eol to -1, val to
Kenichi Handa <handa@m17n.org>
parents:
100133
diff
changeset
|
8576 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
|
8577 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8578 |
88365 | 8579 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8580 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
|
8581 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
|
8582 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
|
8583 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
|
8584 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
|
8585 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
|
8586 |
72552
6493d4697ad2
(Fdetect_coding_region, Fdetect_coding_string): Fix
Kenichi Handa <handa@m17n.org>
parents:
72395
diff
changeset
|
8587 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
|
8588 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
|
8589 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
|
8590 format. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8591 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8592 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
|
8593 highest priority. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8594 (start, end, highest) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8595 Lisp_Object start, end, highest; |
17052 | 8596 { |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8597 int from, to; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8598 int from_byte, to_byte; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8599 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
8600 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
|
8601 CHECK_NUMBER_COERCE_MARKER (end); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8602 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8603 validate_region (&start, &end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8604 from = XINT (start), to = XINT (end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8605 from_byte = CHAR_TO_BYTE (from); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8606 to_byte = CHAR_TO_BYTE (to); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8607 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8608 if (from < GPT && to >= GPT) |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8609 move_gap_both (to, to_byte); |
88365 | 8610 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8611 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
|
8612 to - from, to_byte - from_byte, |
34531
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
8613 !NILP (highest), |
37f85e931855
(ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
34197
diff
changeset
|
8614 !NILP (current_buffer |
88365 | 8615 ->enable_multibyte_characters), |
8616 Qnil); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8617 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8618 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8619 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
|
8620 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
|
8621 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
|
8622 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
|
8623 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
|
8624 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
|
8625 |
72552
6493d4697ad2
(Fdetect_coding_region, Fdetect_coding_string): Fix
Kenichi Handa <handa@m17n.org>
parents:
72395
diff
changeset
|
8626 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
|
8627 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
|
8628 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
|
8629 format. |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8630 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8631 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
|
8632 highest priority. */) |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
8633 (string, highest) |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8634 Lisp_Object string, highest; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8635 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
8636 CHECK_STRING (string); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
8637 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
8638 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
|
8639 SCHARS (string), SBYTES (string), |
89483 | 8640 !NILP (highest), STRING_MULTIBYTE (string), |
88365 | 8641 Qnil); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8642 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8643 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8644 |
88365 | 8645 static INLINE int |
8646 char_encodable_p (c, attrs) | |
8647 int c; | |
8648 Lisp_Object attrs; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8649 { |
88365 | 8650 Lisp_Object tail; |
8651 struct charset *charset; | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8652 Lisp_Object translation_table; |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8653 |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8654 translation_table = CODING_ATTR_TRANS_TBL (attrs); |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
8655 if (! NILP (translation_table)) |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8656 c = translate_char (translation_table, c); |
88365 | 8657 for (tail = CODING_ATTR_CHARSET_LIST (attrs); |
8658 CONSP (tail); tail = XCDR (tail)) | |
8659 { | |
8660 charset = CHARSET_FROM_ID (XINT (XCAR (tail))); | |
8661 if (CHAR_CHARSET_P (c, charset)) | |
8662 break; | |
8663 } | |
8664 return (! NILP (tail)); | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8665 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8666 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8667 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8668 /* Return a list of coding systems that safely encode the text between |
88365 | 8669 START and END. If EXCLUDE is non-nil, it is a list of coding |
8670 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
|
8671 coding systems. In any case, if the text contains only ASCII or is |
88365 | 8672 unibyte, return t. */ |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8673 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8674 DEFUN ("find-coding-systems-region-internal", |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8675 Ffind_coding_systems_region_internal, |
88365 | 8676 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
|
8677 doc: /* Internal use only. */) |
88365 | 8678 (start, end, exclude) |
8679 Lisp_Object start, end, exclude; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8680 { |
88365 | 8681 Lisp_Object coding_attrs_list, safe_codings; |
8682 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
|
8683 const unsigned char *p, *pbeg, *pend; |
88365 | 8684 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
|
8685 Lisp_Object tail, elt, work_table; |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8686 |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8687 if (STRINGP (start)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8688 { |
88365 | 8689 if (!STRING_MULTIBYTE (start) |
89483 | 8690 || SCHARS (start) == SBYTES (start)) |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8691 return Qt; |
88365 | 8692 start_byte = 0; |
89483 | 8693 end_byte = SBYTES (start); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8694 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8695 else |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8696 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
8697 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
|
8698 CHECK_NUMBER_COERCE_MARKER (end); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8699 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
|
8700 args_out_of_range (start, end); |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8701 if (NILP (current_buffer->enable_multibyte_characters)) |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8702 return Qt; |
88365 | 8703 start_byte = CHAR_TO_BYTE (XINT (start)); |
8704 end_byte = CHAR_TO_BYTE (XINT (end)); | |
8705 if (XINT (end) - XINT (start) == end_byte - start_byte) | |
8706 return Qt; | |
8707 | |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8708 if (XINT (start) < GPT && XINT (end) > GPT) |
88365 | 8709 { |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8710 if ((GPT - XINT (start)) < (XINT (end) - GPT)) |
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8711 move_gap_both (XINT (start), start_byte); |
88365 | 8712 else |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8713 move_gap_both (XINT (end), end_byte); |
88365 | 8714 } |
8715 } | |
8716 | |
8717 coding_attrs_list = Qnil; | |
8718 for (tail = Vcoding_system_list; CONSP (tail); tail = XCDR (tail)) | |
8719 if (NILP (exclude) | |
8720 || NILP (Fmemq (XCAR (tail), exclude))) | |
8721 { | |
8722 Lisp_Object attrs; | |
8723 | |
8724 attrs = AREF (CODING_SYSTEM_SPEC (XCAR (tail)), 0); | |
8725 if (EQ (XCAR (tail), CODING_ATTR_BASE_NAME (attrs)) | |
8726 && ! EQ (CODING_ATTR_TYPE (attrs), Qundecided)) | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8727 { |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8728 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
|
8729 get_translation_table (attrs, 1, NULL)); |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8730 coding_attrs_list = Fcons (attrs, coding_attrs_list); |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8731 } |
88365 | 8732 } |
8733 | |
8734 if (STRINGP (start)) | |
89483 | 8735 p = pbeg = SDATA (start); |
88365 | 8736 else |
8737 p = pbeg = BYTE_POS_ADDR (start_byte); | |
8738 pend = p + (end_byte - start_byte); | |
8739 | |
8740 while (p < pend && ASCII_BYTE_P (*p)) p++; | |
8741 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
8742 | |
103486
091a55d2d6f7
(Ffind_coding_systems_region_internal): Cache checked characters.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
103474
diff
changeset
|
8743 work_table = Fmake_char_table (Qnil, Qnil); |
88365 | 8744 while (p < pend) |
8745 { | |
8746 if (ASCII_BYTE_P (*p)) | |
8747 p++; | |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8748 else |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8749 { |
88365 | 8750 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
|
8751 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
|
8752 /* 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
|
8753 continue; |
88365 | 8754 |
8755 charset_map_loaded = 0; | |
8756 for (tail = coding_attrs_list; CONSP (tail);) | |
8757 { | |
8758 elt = XCAR (tail); | |
8759 if (NILP (elt)) | |
8760 tail = XCDR (tail); | |
8761 else if (char_encodable_p (c, elt)) | |
8762 tail = XCDR (tail); | |
8763 else if (CONSP (XCDR (tail))) | |
8764 { | |
8765 XSETCAR (tail, XCAR (XCDR (tail))); | |
8766 XSETCDR (tail, XCDR (XCDR (tail))); | |
8767 } | |
8768 else | |
8769 { | |
8770 XSETCAR (tail, Qnil); | |
8771 tail = XCDR (tail); | |
8772 } | |
8773 } | |
8774 if (charset_map_loaded) | |
8775 { | |
8776 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
8777 | |
8778 if (STRINGP (start)) | |
89483 | 8779 pbeg = SDATA (start); |
88365 | 8780 else |
8781 pbeg = BYTE_POS_ADDR (start_byte); | |
8782 p = pbeg + p_offset; | |
8783 pend = pbeg + pend_offset; | |
8784 } | |
103486
091a55d2d6f7
(Ffind_coding_systems_region_internal): Cache checked characters.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
103474
diff
changeset
|
8785 char_table_set (work_table, c, Qt); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8786 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8787 } |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8788 |
89905
37e044cc35f6
(Ffind_coding_systems_region_internal): Include raw-text and
Kenichi Handa <handa@m17n.org>
parents:
89892
diff
changeset
|
8789 safe_codings = list2 (Qraw_text, Qno_conversion); |
88365 | 8790 for (tail = coding_attrs_list; CONSP (tail); tail = XCDR (tail)) |
8791 if (! NILP (XCAR (tail))) | |
8792 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
|
8793 |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8794 return safe_codings; |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8795 } |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8796 |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
8797 |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8798 DEFUN ("unencodable-char-position", Funencodable_char_position, |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8799 Sunencodable_char_position, 3, 5, 0, |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8800 doc: /* |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8801 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
|
8802 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
|
8803 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
|
8804 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8805 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
|
8806 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
|
8807 list of positions. |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8808 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8809 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
|
8810 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
|
8811 to the string. */) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8812 (start, end, coding_system, count, string) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8813 Lisp_Object start, end, coding_system, count, string; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8814 { |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8815 int n; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8816 struct coding_system coding; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8817 Lisp_Object attrs, charset_list, translation_table; |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8818 Lisp_Object positions; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8819 int from, to; |
89483 | 8820 const unsigned char *p, *stop, *pend; |
8821 int ascii_compatible; | |
8822 | |
8823 setup_coding_system (Fcheck_coding_system (coding_system), &coding); | |
8824 attrs = CODING_ID_ATTRS (coding.id); | |
8825 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text)) | |
8826 return Qnil; | |
8827 ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs)); | |
8828 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
|
8829 translation_table = get_translation_table (attrs, 1, NULL); |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8830 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8831 if (NILP (string)) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8832 { |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8833 validate_region (&start, &end); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8834 from = XINT (start); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8835 to = XINT (end); |
89483 | 8836 if (NILP (current_buffer->enable_multibyte_characters) |
8837 || (ascii_compatible | |
8838 && (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
|
8839 return Qnil; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8840 p = CHAR_POS_ADDR (from); |
89483 | 8841 pend = CHAR_POS_ADDR (to); |
8842 if (from < GPT && to >= GPT) | |
8843 stop = GPT_ADDR; | |
48829
f6c59ca557c7
(Funencodable_char_position): Set pend correctly.
Kenichi Handa <handa@m17n.org>
parents:
48230
diff
changeset
|
8844 else |
89483 | 8845 stop = pend; |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8846 } |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8847 else |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8848 { |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8849 CHECK_STRING (string); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8850 CHECK_NATNUM (start); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8851 CHECK_NATNUM (end); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8852 from = XINT (start); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8853 to = XINT (end); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8854 if (from > to |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8855 || to > SCHARS (string)) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8856 args_out_of_range_3 (string, start, end); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8857 if (! STRING_MULTIBYTE (string)) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8858 return Qnil; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8859 p = SDATA (string) + string_char_to_byte (string, from); |
89483 | 8860 stop = pend = SDATA (string) + string_char_to_byte (string, to); |
8861 if (ascii_compatible && (to - from) == (pend - p)) | |
8862 return Qnil; | |
8863 } | |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8864 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8865 if (NILP (count)) |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8866 n = 1; |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8867 else |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8868 { |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8869 CHECK_NATNUM (count); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8870 n = XINT (count); |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8871 } |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8872 |
89483 | 8873 positions = Qnil; |
8874 while (1) | |
8875 { | |
8876 int c; | |
8877 | |
8878 if (ascii_compatible) | |
8879 while (p < stop && ASCII_BYTE_P (*p)) | |
8880 p++, from++; | |
8881 if (p >= stop) | |
8882 { | |
8883 if (p >= pend) | |
8884 break; | |
8885 stop = pend; | |
8886 p = GAP_END_ADDR; | |
8887 } | |
8888 | |
8889 c = STRING_CHAR_ADVANCE (p); | |
8890 if (! (ASCII_CHAR_P (c) && ascii_compatible) | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8891 && ! char_charset (translate_char (translation_table, c), |
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8892 charset_list, NULL)) |
89483 | 8893 { |
8894 positions = Fcons (make_number (from), positions); | |
8895 n--; | |
8896 if (n == 0) | |
8897 break; | |
8898 } | |
8899 | |
8900 from++; | |
8901 } | |
8902 | |
8903 return (NILP (count) ? Fcar (positions) : Fnreverse (positions)); | |
8904 } | |
8905 | |
8906 | |
88365 | 8907 DEFUN ("check-coding-systems-region", Fcheck_coding_systems_region, |
8908 Scheck_coding_systems_region, 3, 3, 0, | |
8909 doc: /* Check if the region is encodable by coding systems. | |
8910 | |
8911 START and END are buffer positions specifying the region. | |
8912 CODING-SYSTEM-LIST is a list of coding systems to check. | |
8913 | |
8914 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
|
8915 CODING-SYSTEM is a member of CODING-SYSTEM-LIST and can't encode the |
88365 | 8916 whole region, POS0, POS1, ... are buffer positions where non-encodable |
8917 characters are found. | |
8918 | |
8919 If all coding systems in CODING-SYSTEM-LIST can encode the region, the | |
8920 value is nil. | |
8921 | |
8922 START may be a string. In that case, check if the string is | |
8923 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
|
8924 buffer positions. END is ignored. |
4d3a5c88cb2b
(Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
Kenichi Handa <handa@m17n.org>
parents:
101943
diff
changeset
|
8925 |
102058
4f60db600648
(Fcheck_coding_systems_region): Fix test for unibyte
Andreas Schwab <schwab@suse.de>
parents:
102055
diff
changeset
|
8926 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
|
8927 is nil. */) |
88365 | 8928 (start, end, coding_system_list) |
8929 Lisp_Object start, end, coding_system_list; | |
8930 { | |
8931 Lisp_Object list; | |
8932 EMACS_INT start_byte, end_byte; | |
8933 int pos; | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
8934 const unsigned char *p, *pbeg, *pend; |
88365 | 8935 int c; |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8936 Lisp_Object tail, elt, attrs; |
88365 | 8937 |
8938 if (STRINGP (start)) | |
8939 { | |
8940 if (!STRING_MULTIBYTE (start) | |
102058
4f60db600648
(Fcheck_coding_systems_region): Fix test for unibyte
Andreas Schwab <schwab@suse.de>
parents:
102055
diff
changeset
|
8941 || SCHARS (start) == SBYTES (start)) |
88365 | 8942 return Qnil; |
8943 start_byte = 0; | |
89483 | 8944 end_byte = SBYTES (start); |
88365 | 8945 pos = 0; |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
8946 } |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8947 else |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8948 { |
88365 | 8949 CHECK_NUMBER_COERCE_MARKER (start); |
8950 CHECK_NUMBER_COERCE_MARKER (end); | |
8951 if (XINT (start) < BEG || XINT (end) > Z || XINT (start) > XINT (end)) | |
8952 args_out_of_range (start, end); | |
8953 if (NILP (current_buffer->enable_multibyte_characters)) | |
8954 return Qnil; | |
8955 start_byte = CHAR_TO_BYTE (XINT (start)); | |
8956 end_byte = CHAR_TO_BYTE (XINT (end)); | |
8957 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
|
8958 return Qnil; |
88365 | 8959 |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8960 if (XINT (start) < GPT && XINT (end) > GPT) |
88365 | 8961 { |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8962 if ((GPT - XINT (start)) < (XINT (end) - GPT)) |
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8963 move_gap_both (XINT (start), start_byte); |
88365 | 8964 else |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8965 move_gap_both (XINT (end), end_byte); |
88365 | 8966 } |
89394
6ffca50f25b9
(Fcheck_coding_systems_region): Fix type errors.
Dave Love <fx@gnu.org>
parents:
89373
diff
changeset
|
8967 pos = XINT (start); |
88365 | 8968 } |
8969 | |
8970 list = Qnil; | |
8971 for (tail = coding_system_list; CONSP (tail); tail = XCDR (tail)) | |
8972 { | |
8973 elt = XCAR (tail); | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8974 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
|
8975 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
|
8976 get_translation_table (attrs, 1, NULL)); |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
8977 list = Fcons (Fcons (elt, Fcons (attrs, Qnil)), list); |
88365 | 8978 } |
8979 | |
8980 if (STRINGP (start)) | |
89483 | 8981 p = pbeg = SDATA (start); |
88365 | 8982 else |
8983 p = pbeg = BYTE_POS_ADDR (start_byte); | |
8984 pend = p + (end_byte - start_byte); | |
8985 | |
8986 while (p < pend && ASCII_BYTE_P (*p)) p++, pos++; | |
8987 while (p < pend && ASCII_BYTE_P (*(pend - 1))) pend--; | |
8988 | |
8989 while (p < pend) | |
8990 { | |
8991 if (ASCII_BYTE_P (*p)) | |
8992 p++; | |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8993 else |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
8994 { |
88365 | 8995 c = STRING_CHAR_ADVANCE (p); |
8996 | |
8997 charset_map_loaded = 0; | |
8998 for (tail = list; CONSP (tail); tail = XCDR (tail)) | |
8999 { | |
9000 elt = XCDR (XCAR (tail)); | |
9001 if (! char_encodable_p (c, XCAR (elt))) | |
9002 XSETCDR (elt, Fcons (make_number (pos), XCDR (elt))); | |
9003 } | |
9004 if (charset_map_loaded) | |
9005 { | |
9006 EMACS_INT p_offset = p - pbeg, pend_offset = pend - pbeg; | |
9007 | |
9008 if (STRINGP (start)) | |
89483 | 9009 pbeg = SDATA (start); |
88365 | 9010 else |
9011 pbeg = BYTE_POS_ADDR (start_byte); | |
9012 p = pbeg + p_offset; | |
9013 pend = pbeg + pend_offset; | |
9014 } | |
9015 } | |
9016 pos++; | |
9017 } | |
9018 | |
9019 tail = list; | |
9020 list = Qnil; | |
9021 for (; CONSP (tail); tail = XCDR (tail)) | |
9022 { | |
9023 elt = XCAR (tail); | |
9024 if (CONSP (XCDR (XCDR (elt)))) | |
9025 list = Fcons (Fcons (XCAR (elt), Fnreverse (XCDR (XCDR (elt)))), | |
9026 list); | |
9027 } | |
9028 | |
9029 return list; | |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
9030 } |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
9031 |
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
9032 |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9033 Lisp_Object |
88365 | 9034 code_convert_region (start, end, coding_system, dst_object, encodep, norecord) |
9035 Lisp_Object start, end, coding_system, dst_object; | |
9036 int encodep, norecord; | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9037 { |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9038 struct coding_system coding; |
88365 | 9039 EMACS_INT from, from_byte, to, to_byte; |
9040 Lisp_Object src_object; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9041 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9042 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
|
9043 CHECK_NUMBER_COERCE_MARKER (end); |
88365 | 9044 if (NILP (coding_system)) |
9045 coding_system = Qno_conversion; | |
9046 else | |
9047 CHECK_CODING_SYSTEM (coding_system); | |
9048 src_object = Fcurrent_buffer (); | |
9049 if (NILP (dst_object)) | |
9050 dst_object = src_object; | |
9051 else if (! EQ (dst_object, Qt)) | |
9052 CHECK_BUFFER (dst_object); | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9053 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9054 validate_region (&start, &end); |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9055 from = XFASTINT (start); |
88365 | 9056 from_byte = CHAR_TO_BYTE (from); |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9057 to = XFASTINT (end); |
88365 | 9058 to_byte = CHAR_TO_BYTE (to); |
9059 | |
9060 setup_coding_system (coding_system, &coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9061 coding.mode |= CODING_MODE_LAST_BLOCK; |
88365 | 9062 |
9063 if (encodep) | |
9064 encode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
9065 dst_object); | |
9066 else | |
9067 decode_coding_object (&coding, src_object, from, from_byte, to, to_byte, | |
9068 dst_object); | |
9069 if (! norecord) | |
9070 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
9071 | |
9072 return (BUFFERP (dst_object) | |
9073 ? make_number (coding.produced_char) | |
9074 : coding.dst_object); | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9075 } |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9076 |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9077 |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9078 DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, |
88365 | 9079 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
|
9080 doc: /* Decode the current region from the specified coding system. |
88365 | 9081 When called from a program, takes four arguments: |
9082 START, END, CODING-SYSTEM, and DESTINATION. | |
9083 START and END are buffer positions. | |
9084 | |
9085 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
|
9086 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
|
9087 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
|
9088 does not move). |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
9089 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
|
9090 If DESTINATION is t, the decoded text is returned. |
88365 | 9091 |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9092 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
|
9093 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
|
9094 not fully specified.) */) |
88365 | 9095 (start, end, coding_system, destination) |
9096 Lisp_Object start, end, coding_system, destination; | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9097 { |
88365 | 9098 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
|
9099 } |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9100 |
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9101 DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, |
88365 | 9102 3, 4, "r\nzCoding system: ", |
9103 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
|
9104 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
|
9105 START, END, CODING-SYSTEM and DESTINATION. |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9106 START and END are buffer positions. |
88365 | 9107 |
9108 Optional 4th arguments DESTINATION specifies where the encoded text goes. | |
9109 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
|
9110 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
|
9111 does not move). |
95356
90b4a0dc21cc
(Fdecode_coding_region, Fencode_coding_region, Fencode_coding_string):
Juanma Barranquero <lekktu@gmail.com>
parents:
95353
diff
changeset
|
9112 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
|
9113 If DESTINATION is t, the encoded text is returned. |
88365 | 9114 |
40713
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9115 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
|
9116 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
|
9117 not fully specified.) */) |
88365 | 9118 (start, end, coding_system, destination) |
9119 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
|
9120 { |
88365 | 9121 return code_convert_region (start, end, coding_system, destination, 1, 0); |
17052 | 9122 } |
9123 | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9124 Lisp_Object |
88365 | 9125 code_convert_string (string, coding_system, dst_object, |
9126 encodep, nocopy, norecord) | |
9127 Lisp_Object string, coding_system, dst_object; | |
9128 int encodep, nocopy, norecord; | |
17052 | 9129 { |
9130 struct coding_system coding; | |
88365 | 9131 EMACS_INT chars, bytes; |
17052 | 9132 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9133 CHECK_STRING (string); |
88365 | 9134 if (NILP (coding_system)) |
9135 { | |
9136 if (! norecord) | |
9137 Vlast_coding_system_used = Qno_conversion; | |
9138 if (NILP (dst_object)) | |
9139 return (nocopy ? Fcopy_sequence (string) : string); | |
9140 } | |
17052 | 9141 |
70520
b6740a317343
(setup_coding_system): For invalid coding-system, set
Kenichi Handa <handa@m17n.org>
parents:
69995
diff
changeset
|
9142 if (NILP (coding_system)) |
88365 | 9143 coding_system = Qno_conversion; |
9144 else | |
9145 CHECK_CODING_SYSTEM (coding_system); | |
9146 if (NILP (dst_object)) | |
9147 dst_object = Qt; | |
9148 else if (! EQ (dst_object, Qt)) | |
9149 CHECK_BUFFER (dst_object); | |
9150 | |
9151 setup_coding_system (coding_system, &coding); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9152 coding.mode |= CODING_MODE_LAST_BLOCK; |
89483 | 9153 chars = SCHARS (string); |
9154 bytes = SBYTES (string); | |
88365 | 9155 if (encodep) |
9156 encode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
9157 else | |
9158 decode_coding_object (&coding, string, 0, 0, chars, bytes, dst_object); | |
9159 if (! norecord) | |
9160 Vlast_coding_system_used = CODING_ID_NAME (coding.id); | |
9161 | |
9162 return (BUFFERP (dst_object) | |
9163 ? make_number (coding.produced_char) | |
9164 : coding.dst_object); | |
20803
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9165 } |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9166 |
0fa2183c587d
(ENCODE_ISO_CHARACTER): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20794
diff
changeset
|
9167 |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9168 /* Encode or decode STRING according to CODING_SYSTEM. |
26847 | 9169 Do not set Vlast_coding_system_used. |
9170 | |
9171 This function is called only from macros DECODE_FILE and | |
9172 ENCODE_FILE, thus we ignore character composition. */ | |
22341
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9173 |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9174 Lisp_Object |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9175 code_convert_string_norecord (string, coding_system, encodep) |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9176 Lisp_Object string, coding_system; |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9177 int encodep; |
572ba933a4bf
(code_convert_string_norecord): New function.
Karl Heuer <kwzh@gnu.org>
parents:
22329
diff
changeset
|
9178 { |
88430
6418a272b97e
* coding.c: Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
88365
diff
changeset
|
9179 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
|
9180 } |
88365 | 9181 |
9182 | |
9183 DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | |
9184 2, 4, 0, | |
9185 doc: /* Decode STRING which is encoded in CODING-SYSTEM, and return the result. | |
9186 | |
9187 Optional third arg NOCOPY non-nil means it is OK to return STRING itself | |
9188 if the decoding operation is trivial. | |
9189 | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9190 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
|
9191 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
|
9192 case, the return value is the length of the decoded text. |
88365 | 9193 |
9194 This function sets `last-coding-system-used' to the precise coding system | |
9195 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
|
9196 not fully specified.) */) |
88365 | 9197 (string, coding_system, nocopy, buffer) |
9198 Lisp_Object string, coding_system, nocopy, buffer; | |
9199 { | |
9200 return code_convert_string (string, coding_system, buffer, | |
9201 0, ! NILP (nocopy), 0); | |
9202 } | |
9203 | |
9204 DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, | |
9205 2, 4, 0, | |
9206 doc: /* Encode STRING to CODING-SYSTEM, and return the result. | |
9207 | |
9208 Optional third arg NOCOPY non-nil means it is OK to return STRING | |
9209 itself if the encoding operation is trivial. | |
9210 | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9211 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
|
9212 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
|
9213 case, the return value is the length of the encoded text. |
88365 | 9214 |
9215 This function sets `last-coding-system-used' to the precise coding system | |
9216 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | |
9217 not fully specified.) */) | |
9218 (string, coding_system, nocopy, buffer) | |
9219 Lisp_Object string, coding_system, nocopy, buffer; | |
9220 { | |
9221 return code_convert_string (string, coding_system, buffer, | |
88856 | 9222 1, ! NILP (nocopy), 1); |
88365 | 9223 } |
9224 | |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9225 |
17052 | 9226 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
|
9227 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
|
9228 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
|
9229 (code) |
17052 | 9230 Lisp_Object code; |
9231 { | |
88365 | 9232 Lisp_Object spec, attrs, val; |
9233 struct charset *charset_roman, *charset_kanji, *charset_kana, *charset; | |
9234 int c; | |
9235 | |
9236 CHECK_NATNUM (code); | |
9237 c = XFASTINT (code); | |
9238 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
9239 attrs = AREF (spec, 0); | |
9240 | |
9241 if (ASCII_BYTE_P (c) | |
9242 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
9243 return code; | |
9244 | |
9245 val = CODING_ATTR_CHARSET_LIST (attrs); | |
9246 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
|
9247 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
|
9248 charset_kanji = CHARSET_FROM_ID (XINT (XCAR (val))); |
88365 | 9249 |
9250 if (c <= 0x7F) | |
9251 charset = charset_roman; | |
9252 else if (c >= 0xA0 && c < 0xDF) | |
9253 { | |
9254 charset = charset_kana; | |
9255 c -= 0x80; | |
24065
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
9256 } |
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
9257 else |
7e291dea6141
(Fdecode_sjis_char): Decode Japanese Katakana character
Kenichi Handa <handa@m17n.org>
parents:
24056
diff
changeset
|
9258 { |
88497
d2b9e0d4c2f6
(Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
Kenichi Handa <handa@m17n.org>
parents:
88485
diff
changeset
|
9259 int s1 = c >> 8, s2 = c & 0xFF; |
88365 | 9260 |
9261 if (s1 < 0x81 || (s1 > 0x9F && s1 < 0xE0) || s1 > 0xEF | |
9262 || s2 < 0x40 || s2 == 0x7F || s2 > 0xFC) | |
9263 error ("Invalid code: %d", code); | |
9264 SJIS_TO_JIS (c); | |
9265 charset = charset_kanji; | |
9266 } | |
9267 c = DECODE_CHAR (charset, c); | |
9268 if (c < 0) | |
9269 error ("Invalid code: %d", code); | |
9270 return make_number (c); | |
17052 | 9271 } |
9272 | |
9273 | |
9274 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
|
9275 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
|
9276 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
|
9277 (ch) |
88365 | 9278 Lisp_Object ch; |
17052 | 9279 { |
88365 | 9280 Lisp_Object spec, attrs, charset_list; |
9281 int c; | |
9282 struct charset *charset; | |
9283 unsigned code; | |
9284 | |
9285 CHECK_CHARACTER (ch); | |
9286 c = XFASTINT (ch); | |
9287 CHECK_CODING_SYSTEM_GET_SPEC (Vsjis_coding_system, spec); | |
9288 attrs = AREF (spec, 0); | |
9289 | |
9290 if (ASCII_CHAR_P (c) | |
9291 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
9292 return ch; | |
9293 | |
9294 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
9295 charset = char_charset (c, charset_list, &code); | |
9296 if (code == CHARSET_INVALID_CODE (charset)) | |
9297 error ("Can't encode by shift_jis encoding: %d", c); | |
9298 JIS_TO_SJIS (code); | |
9299 | |
9300 return make_number (code); | |
17052 | 9301 } |
9302 | |
9303 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
|
9304 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
|
9305 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
|
9306 (code) |
17052 | 9307 Lisp_Object code; |
9308 { | |
88365 | 9309 Lisp_Object spec, attrs, val; |
9310 struct charset *charset_roman, *charset_big5, *charset; | |
9311 int c; | |
9312 | |
9313 CHECK_NATNUM (code); | |
9314 c = XFASTINT (code); | |
9315 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
9316 attrs = AREF (spec, 0); | |
9317 | |
9318 if (ASCII_BYTE_P (c) | |
9319 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
9320 return code; | |
9321 | |
9322 val = CODING_ATTR_CHARSET_LIST (attrs); | |
9323 charset_roman = CHARSET_FROM_ID (XINT (XCAR (val))), val = XCDR (val); | |
9324 charset_big5 = CHARSET_FROM_ID (XINT (XCAR (val))); | |
9325 | |
9326 if (c <= 0x7F) | |
9327 charset = charset_roman; | |
24324
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
9328 else |
2eec590faf26
(Fdecode_sjis_char, Fencode_sjis_char): Hanlde
Kenichi Handa <handa@m17n.org>
parents:
24316
diff
changeset
|
9329 { |
88365 | 9330 int b1 = c >> 8, b2 = c & 0x7F; |
9331 if (b1 < 0xA1 || b1 > 0xFE | |
9332 || b2 < 0x40 || (b2 > 0x7E && b2 < 0xA1) || b2 > 0xFE) | |
9333 error ("Invalid code: %d", code); | |
9334 charset = charset_big5; | |
9335 } | |
9336 c = DECODE_CHAR (charset, (unsigned )c); | |
9337 if (c < 0) | |
9338 error ("Invalid code: %d", code); | |
9339 return make_number (c); | |
17052 | 9340 } |
9341 | |
9342 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
|
9343 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
|
9344 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
|
9345 (ch) |
17052 | 9346 Lisp_Object ch; |
9347 { | |
88365 | 9348 Lisp_Object spec, attrs, charset_list; |
9349 struct charset *charset; | |
9350 int c; | |
9351 unsigned code; | |
9352 | |
9353 CHECK_CHARACTER (ch); | |
9354 c = XFASTINT (ch); | |
9355 CHECK_CODING_SYSTEM_GET_SPEC (Vbig5_coding_system, spec); | |
9356 attrs = AREF (spec, 0); | |
9357 if (ASCII_CHAR_P (c) | |
9358 && ! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | |
9359 return ch; | |
9360 | |
9361 charset_list = CODING_ATTR_CHARSET_LIST (attrs); | |
9362 charset = char_charset (c, charset_list, &code); | |
9363 if (code == CHARSET_INVALID_CODE (charset)) | |
9364 error ("Can't encode by Big5 encoding: %d", c); | |
9365 | |
9366 return make_number (code); | |
17052 | 9367 } |
88365 | 9368 |
20680
dd46027e8412
(code_convert_region): Always count chars inserted
Richard M. Stallman <rms@gnu.org>
parents:
20668
diff
changeset
|
9369 |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
9370 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
|
9371 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
|
9372 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
|
9373 (coding_system, terminal) |
17052 | 9374 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
|
9375 Lisp_Object terminal; |
17052 | 9376 { |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9377 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
|
9378 CHECK_SYMBOL (coding_system); |
83127
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
9379 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
|
9380 /* We had better not send unsafe characters to terminal. */ |
91041 | 9381 terminal_coding->mode |= CODING_MODE_SAFE_ENCODING; |
88365 | 9382 /* Characer composition should be disabled. */ |
91041 | 9383 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
|
9384 terminal_coding->src_multibyte = 1; |
5182815e0ee1
Make terminal_coding and keyboard_coding display-local.
Karoly Lorentey <lorentey@elte.hu>
parents:
54320
diff
changeset
|
9385 terminal_coding->dst_multibyte = 0; |
17052 | 9386 return Qnil; |
9387 } | |
9388 | |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9389 DEFUN ("set-safe-terminal-coding-system-internal", |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9390 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
|
9391 Sset_safe_terminal_coding_system_internal, 1, 1, 0, |
41006 | 9392 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
|
9393 (coding_system) |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9394 Lisp_Object coding_system; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9395 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40461
diff
changeset
|
9396 CHECK_SYMBOL (coding_system); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9397 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
|
9398 &safe_terminal_coding); |
88365 | 9399 /* Characer composition should be disabled. */ |
9400 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
|
9401 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
|
9402 safe_terminal_coding.dst_multibyte = 0; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9403 return Qnil; |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9404 } |
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
9405 |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
9406 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
|
9407 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
|
9408 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
|
9409 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
|
9410 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
|
9411 (terminal) |
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9412 Lisp_Object terminal; |
17052 | 9413 { |
91046 | 9414 struct coding_system *terminal_coding |
9415 = TERMINAL_TERMINAL_CODING (get_terminal (terminal, 1)); | |
9416 Lisp_Object coding_system = CODING_ID_NAME (terminal_coding->id); | |
9417 | |
90011
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
9418 /* 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
|
9419 return (! EQ (coding_system, Qundecided) ? coding_system : Qnil); |
17052 | 9420 } |
9421 | |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
9422 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
|
9423 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
|
9424 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
|
9425 (coding_system, terminal) |
17052 | 9426 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
|
9427 Lisp_Object terminal; |
17052 | 9428 { |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9429 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
|
9430 CHECK_SYMBOL (coding_system); |
103655
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9431 if (NILP (coding_system)) |
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9432 coding_system = Qno_conversion; |
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9433 else |
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9434 Fcheck_coding_system (coding_system); |
e2d67c929da2
(setup_coding_system): Initialize
Kenichi Handa <handa@m17n.org>
parents:
103486
diff
changeset
|
9435 setup_coding_system (coding_system, TERMINAL_KEYBOARD_CODING (t)); |
88365 | 9436 /* Characer composition should be disabled. */ |
91041 | 9437 TERMINAL_KEYBOARD_CODING (t)->common_flags |
9438 &= ~CODING_ANNOTATE_COMPOSITION_MASK; | |
17052 | 9439 return Qnil; |
9440 } | |
9441 | |
9442 DEFUN ("keyboard-coding-system", | |
91046 | 9443 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
|
9444 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
|
9445 (terminal) |
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83423
diff
changeset
|
9446 Lisp_Object terminal; |
17052 | 9447 { |
91046 | 9448 return CODING_ID_NAME (TERMINAL_KEYBOARD_CODING |
9449 (get_terminal (terminal, 1))->id); | |
17052 | 9450 } |
9451 | |
9452 | |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
9453 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
|
9454 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
|
9455 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
|
9456 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
|
9457 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
|
9458 \(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
|
9459 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
|
9460 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9461 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
|
9462 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
|
9463 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
|
9464 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
|
9465 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9466 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
|
9467 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
|
9468 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
|
9469 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
|
9470 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
9471 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
|
9472 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
|
9473 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
|
9474 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
|
9475 |
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9476 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
|
9477 `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
|
9478 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
|
9479 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
|
9480 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
|
9481 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
|
9482 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
|
9483 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
|
9484 `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
|
9485 |
70948
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9486 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
|
9487 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
|
9488 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
|
9489 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
|
9490 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
|
9491 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
|
9492 |
78152
5e5f359984e5
(Ffind_operation_coding_system): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
75348
diff
changeset
|
9493 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
|
9494 (nargs, args) |
17052 | 9495 int nargs; |
9496 Lisp_Object *args; | |
9497 { | |
9498 Lisp_Object operation, target_idx, target, val; | |
9499 register Lisp_Object chain; | |
9500 | |
9501 if (nargs < 2) | |
9502 error ("Too few arguments"); | |
9503 operation = args[0]; | |
9504 if (!SYMBOLP (operation) | |
9505 || !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
|
9506 error ("Invalid first argument"); |
17052 | 9507 if (nargs < 1 + XINT (target_idx)) |
9508 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
|
9509 SDATA (SYMBOL_NAME (operation))); |
17052 | 9510 target = args[XINT (target_idx) + 1]; |
9511 if (!(STRINGP (target) | |
70948
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9512 || (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
|
9513 && STRINGP (XCAR (target)) && BUFFERP (XCDR (target))) |
17052 | 9514 || (EQ (operation, Qopen_network_stream) && INTEGERP (target)))) |
88365 | 9515 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
|
9516 if (CONSP (target)) |
7ea8b1c11d80
(Ffind_operation_coding_system): Allow (FILENAME . BUFFER) in TARGET.
Kenichi Handa <handa@m17n.org>
parents:
70704
diff
changeset
|
9517 target = XCAR (target); |
17052 | 9518 |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18536
diff
changeset
|
9519 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
|
9520 || EQ (operation, Qwrite_region)) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9521 ? 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
|
9522 : (EQ (operation, Qopen_network_stream) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9523 ? Vnetwork_coding_system_alist |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9524 : Vprocess_coding_system_alist)); |
17052 | 9525 if (NILP (chain)) |
9526 return Qnil; | |
9527 | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9528 for (; CONSP (chain); chain = XCDR (chain)) |
17052 | 9529 { |
19747
bed06df9cbc5
(setup_coding_system, Ffind_operation_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
19743
diff
changeset
|
9530 Lisp_Object elt; |
88365 | 9531 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9532 elt = XCAR (chain); |
17052 | 9533 if (CONSP (elt) |
9534 && ((STRINGP (target) | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9535 && STRINGP (XCAR (elt)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9536 && 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
|
9537 || (INTEGERP (target) && EQ (target, XCAR (elt))))) |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9538 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25370
diff
changeset
|
9539 val = XCDR (elt); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9540 /* 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
|
9541 function symbol, we return VAL as a coding system. */ |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9542 if (CONSP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9543 return val; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9544 if (! SYMBOLP (val)) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9545 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9546 if (! NILP (Fcoding_system_p (val))) |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9547 return Fcons (val, val); |
19763
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9548 if (! NILP (Ffboundp (val))) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9549 { |
72188 | 9550 /* We use call1 rather than safe_call1 |
9551 so as to get bug reports about functions called here | |
9552 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
|
9553 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
|
9554 if (CONSP (val)) |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9555 return val; |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9556 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
|
9557 return Fcons (val, val); |
ab2fd2c85986
(Ffind_operation_coding_system): If a function in
Kenichi Handa <handa@m17n.org>
parents:
19758
diff
changeset
|
9558 } |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9559 return Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
9560 } |
17052 | 9561 } |
9562 return Qnil; | |
9563 } | |
9564 | |
88365 | 9565 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
|
9566 Sset_coding_system_priority, 0, MANY, 0, |
88645 | 9567 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
|
9568 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
|
9569 all but the first one are ignored. |
040a08a2a879
(Fread_coding_system): Fix arg of XSETSTRING.
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
9570 |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
9571 usage: (set-coding-system-priority &rest coding-systems) */) |
88365 | 9572 (nargs, args) |
9573 int nargs; | |
9574 Lisp_Object *args; | |
9575 { | |
9576 int i, j; | |
9577 int changed[coding_category_max]; | |
9578 enum coding_category priorities[coding_category_max]; | |
9579 | |
9580 bzero (changed, sizeof changed); | |
9581 | |
9582 for (i = j = 0; i < nargs; i++) | |
9583 { | |
9584 enum coding_category category; | |
9585 Lisp_Object spec, attrs; | |
9586 | |
9587 CHECK_CODING_SYSTEM_GET_SPEC (args[i], spec); | |
9588 attrs = AREF (spec, 0); | |
9589 category = XINT (CODING_ATTR_CATEGORY (attrs)); | |
9590 if (changed[category]) | |
9591 /* Ignore this coding system because a coding system of the | |
9592 same category already had a higher priority. */ | |
9593 continue; | |
9594 changed[category] = 1; | |
9595 priorities[j++] = category; | |
9596 if (coding_categories[category].id >= 0 | |
9597 && ! EQ (args[i], CODING_ID_NAME (coding_categories[category].id))) | |
9598 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
|
9599 Fset (AREF (Vcoding_category_table, category), args[i]); |
88365 | 9600 } |
9601 | |
9602 /* Now we have decided top J priorities. Reflect the order of the | |
9603 original priorities to the remaining priorities. */ | |
9604 | |
9605 for (i = j, j = 0; i < coding_category_max; i++, j++) | |
9606 { | |
9607 while (j < coding_category_max | |
9608 && changed[coding_priorities[j]]) | |
9609 j++; | |
9610 if (j == coding_category_max) | |
9611 abort (); | |
9612 priorities[i] = coding_priorities[j]; | |
9613 } | |
9614 | |
9615 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
|
9616 |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9617 /* Update `coding-category-list'. */ |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9618 Vcoding_category_list = Qnil; |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9619 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
|
9620 Vcoding_category_list |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
9621 = 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
|
9622 Vcoding_category_list); |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
9623 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9624 return Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9625 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9626 |
88365 | 9627 DEFUN ("coding-system-priority-list", Fcoding_system_priority_list, |
9628 Scoding_system_priority_list, 0, 1, 0, | |
88645 | 9629 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
|
9630 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
|
9631 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
|
9632 |
88645 | 9633 HIGHESTP non-nil means just return the highest priority one. */) |
88365 | 9634 (highestp) |
9635 Lisp_Object highestp; | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9636 { |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
9637 int i; |
22954
928b337d953b
Avoid using initializers for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
22874
diff
changeset
|
9638 Lisp_Object val; |
928b337d953b
Avoid using initializers for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
22874
diff
changeset
|
9639 |
88365 | 9640 for (i = 0, val = Qnil; i < coding_category_max; i++) |
9641 { | |
9642 enum coding_category category = coding_priorities[i]; | |
9643 int id = coding_categories[category].id; | |
9644 Lisp_Object attrs; | |
9645 | |
9646 if (id < 0) | |
9647 continue; | |
9648 attrs = CODING_ID_ATTRS (id); | |
9649 if (! NILP (highestp)) | |
9650 return CODING_ATTR_BASE_NAME (attrs); | |
9651 val = Fcons (CODING_ATTR_BASE_NAME (attrs), val); | |
9652 } | |
9653 return Fnreverse (val); | |
9654 } | |
9655 | |
105959
ba3ffbd9c422
* process.c (ifflag_def): Make flag_sym constant.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105877
diff
changeset
|
9656 static const char *const suffixes[] = { "-unix", "-dos", "-mac" }; |
88631
780b91d4a7e5
(setup_iso_safe_charsets): Fix arg decl for K&R.
Dave Love <fx@gnu.org>
parents:
88607
diff
changeset
|
9657 |
88365 | 9658 static Lisp_Object |
9659 make_subsidiaries (base) | |
9660 Lisp_Object base; | |
9661 { | |
9662 Lisp_Object subsidiaries; | |
89483 | 9663 int base_name_len = SBYTES (SYMBOL_NAME (base)); |
88365 | 9664 char *buf = (char *) alloca (base_name_len + 6); |
9665 int i; | |
89483 | 9666 |
9667 bcopy (SDATA (SYMBOL_NAME (base)), buf, base_name_len); | |
88365 | 9668 subsidiaries = Fmake_vector (make_number (3), Qnil); |
9669 for (i = 0; i < 3; i++) | |
9670 { | |
9671 bcopy (suffixes[i], buf + base_name_len, strlen (suffixes[i]) + 1); | |
9672 ASET (subsidiaries, i, intern (buf)); | |
9673 } | |
9674 return subsidiaries; | |
9675 } | |
9676 | |
22226
557fac086b1b
(ascii_skip_code): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
9677 |
49539
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
9678 DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal, |
88365 | 9679 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
|
9680 doc: /* For internal use only. |
f464d728344c
(Vchar_coding_system_table, Qchar_coding_system):
Dave Love <fx@gnu.org>
parents:
88510
diff
changeset
|
9681 usage: (define-coding-system-internal ...) */) |
88365 | 9682 (nargs, args) |
9683 int nargs; | |
9684 Lisp_Object *args; | |
9685 { | |
9686 Lisp_Object name; | |
9687 Lisp_Object spec_vec; /* [ ATTRS ALIASE EOL_TYPE ] */ | |
9688 Lisp_Object attrs; /* Vector of attributes. */ | |
9689 Lisp_Object eol_type; | |
9690 Lisp_Object aliases; | |
9691 Lisp_Object coding_type, charset_list, safe_charsets; | |
9692 enum coding_category category; | |
9693 Lisp_Object tail, val; | |
9694 int max_charset_id = 0; | |
9695 int i; | |
9696 | |
9697 if (nargs < coding_arg_max) | |
9698 goto short_args; | |
9699 | |
9700 attrs = Fmake_vector (make_number (coding_attr_last_index), Qnil); | |
9701 | |
9702 name = args[coding_arg_name]; | |
9703 CHECK_SYMBOL (name); | |
9704 CODING_ATTR_BASE_NAME (attrs) = name; | |
9705 | |
9706 val = args[coding_arg_mnemonic]; | |
9707 if (! STRINGP (val)) | |
9708 CHECK_CHARACTER (val); | |
9709 CODING_ATTR_MNEMONIC (attrs) = val; | |
9710 | |
9711 coding_type = args[coding_arg_coding_type]; | |
9712 CHECK_SYMBOL (coding_type); | |
9713 CODING_ATTR_TYPE (attrs) = coding_type; | |
9714 | |
9715 charset_list = args[coding_arg_charset_list]; | |
9716 if (SYMBOLP (charset_list)) | |
9717 { | |
9718 if (EQ (charset_list, Qiso_2022)) | |
9719 { | |
9720 if (! EQ (coding_type, Qiso_2022)) | |
9721 error ("Invalid charset-list"); | |
9722 charset_list = Viso_2022_charset_list; | |
9723 } | |
9724 else if (EQ (charset_list, Qemacs_mule)) | |
9725 { | |
9726 if (! EQ (coding_type, Qemacs_mule)) | |
9727 error ("Invalid charset-list"); | |
9728 charset_list = Vemacs_mule_charset_list; | |
9729 } | |
9730 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) | |
9731 if (max_charset_id < XFASTINT (XCAR (tail))) | |
9732 max_charset_id = XFASTINT (XCAR (tail)); | |
9733 } | |
9734 else | |
9735 { | |
9736 charset_list = Fcopy_sequence (charset_list); | |
91046 | 9737 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) |
88365 | 9738 { |
9739 struct charset *charset; | |
9740 | |
91046 | 9741 val = XCAR (tail); |
88365 | 9742 CHECK_CHARSET_GET_CHARSET (val, charset); |
9743 if (EQ (coding_type, Qiso_2022) | |
9744 ? CHARSET_ISO_FINAL (charset) < 0 | |
9745 : EQ (coding_type, Qemacs_mule) | |
9746 ? CHARSET_EMACS_MULE_ID (charset) < 0 | |
9747 : 0) | |
9748 error ("Can't handle charset `%s'", | |
89483 | 9749 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
9750 | |
9751 XSETCAR (tail, make_number (charset->id)); | |
88365 | 9752 if (max_charset_id < charset->id) |
9753 max_charset_id = charset->id; | |
9754 } | |
9755 } | |
9756 CODING_ATTR_CHARSET_LIST (attrs) = charset_list; | |
9757 | |
102186
a12d39ca6870
* coding.h (struct coding_system): Make safe_charsets a pointer to
Andreas Schwab <schwab@suse.de>
parents:
102115
diff
changeset
|
9758 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
|
9759 memset (SDATA (safe_charsets), 255, max_charset_id + 1); |
88365 | 9760 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) |
89483 | 9761 SSET (safe_charsets, XFASTINT (XCAR (tail)), 0); |
88365 | 9762 CODING_ATTR_SAFE_CHARSETS (attrs) = safe_charsets; |
9763 | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9764 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
|
9765 |
88365 | 9766 val = args[coding_arg_decode_translation_table]; |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
9767 if (! CHAR_TABLE_P (val) && ! CONSP (val)) |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
9768 CHECK_SYMBOL (val); |
88365 | 9769 CODING_ATTR_DECODE_TBL (attrs) = val; |
9770 | |
9771 val = args[coding_arg_encode_translation_table]; | |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
9772 if (! CHAR_TABLE_P (val) && ! CONSP (val)) |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
9773 CHECK_SYMBOL (val); |
88365 | 9774 CODING_ATTR_ENCODE_TBL (attrs) = val; |
9775 | |
9776 val = args[coding_arg_post_read_conversion]; | |
9777 CHECK_SYMBOL (val); | |
9778 CODING_ATTR_POST_READ (attrs) = val; | |
9779 | |
9780 val = args[coding_arg_pre_write_conversion]; | |
9781 CHECK_SYMBOL (val); | |
9782 CODING_ATTR_PRE_WRITE (attrs) = val; | |
9783 | |
9784 val = args[coding_arg_default_char]; | |
9785 if (NILP (val)) | |
9786 CODING_ATTR_DEFAULT_CHAR (attrs) = make_number (' '); | |
9787 else | |
9788 { | |
89483 | 9789 CHECK_CHARACTER (val); |
88365 | 9790 CODING_ATTR_DEFAULT_CHAR (attrs) = val; |
9791 } | |
9792 | |
89483 | 9793 val = args[coding_arg_for_unibyte]; |
9794 CODING_ATTR_FOR_UNIBYTE (attrs) = NILP (val) ? Qnil : Qt; | |
9795 | |
88365 | 9796 val = args[coding_arg_plist]; |
9797 CHECK_LIST (val); | |
9798 CODING_ATTR_PLIST (attrs) = val; | |
9799 | |
9800 if (EQ (coding_type, Qcharset)) | |
9801 { | |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9802 /* 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
|
9803 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
|
9804 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9805 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
|
9806 coding system. |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9807 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9808 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
|
9809 charset whose ID is NUM. |
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 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
|
9812 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
|
9813 charsets. A charset of smaller dimension comes firtst. */ |
88365 | 9814 val = Fmake_vector (make_number (256), Qnil); |
9815 | |
89653
cbaa9fd1aa5c
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89648
diff
changeset
|
9816 for (tail = charset_list; CONSP (tail); tail = XCDR (tail)) |
88365 | 9817 { |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9818 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
|
9819 int dim = CHARSET_DIMENSION (charset); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9820 int idx = (dim - 1) * 4; |
89483 | 9821 |
89653
cbaa9fd1aa5c
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89648
diff
changeset
|
9822 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
|
9823 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
|
9824 |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
9825 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
|
9826 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
|
9827 { |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9828 Lisp_Object tmp, tmp2; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9829 int dim2; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9830 |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9831 tmp = AREF (val, i); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9832 if (NILP (tmp)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9833 tmp = XCAR (tail); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9834 else if (NUMBERP (tmp)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9835 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9836 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
|
9837 if (dim < dim2) |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
9838 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
|
9839 else |
88607
18436bf3d6dd
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
88598
diff
changeset
|
9840 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
|
9841 } |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
9842 else |
88597
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9843 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9844 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
|
9845 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9846 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
|
9847 if (dim < dim2) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9848 break; |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9849 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9850 if (NILP (tmp2)) |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9851 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
|
9852 else |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9853 { |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9854 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
|
9855 XSETCAR (tmp2, XCAR (tail)); |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9856 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9857 } |
74b74f59bc09
(decode_coding_charset): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88587
diff
changeset
|
9858 ASET (val, i, tmp); |
88477
5f974cbba7b3
(coding_set_source): Delete the local variable beg_byte.
Kenichi Handa <handa@m17n.org>
parents:
88473
diff
changeset
|
9859 } |
88365 | 9860 } |
9861 ASET (attrs, coding_attr_charset_valids, val); | |
9862 category = coding_category_charset; | |
9863 } | |
9864 else if (EQ (coding_type, Qccl)) | |
9865 { | |
9866 Lisp_Object valids; | |
89483 | 9867 |
88365 | 9868 if (nargs < coding_arg_ccl_max) |
9869 goto short_args; | |
9870 | |
9871 val = args[coding_arg_ccl_decoder]; | |
9872 CHECK_CCL_PROGRAM (val); | |
9873 if (VECTORP (val)) | |
9874 val = Fcopy_sequence (val); | |
9875 ASET (attrs, coding_attr_ccl_decoder, val); | |
9876 | |
9877 val = args[coding_arg_ccl_encoder]; | |
9878 CHECK_CCL_PROGRAM (val); | |
9879 if (VECTORP (val)) | |
9880 val = Fcopy_sequence (val); | |
9881 ASET (attrs, coding_attr_ccl_encoder, val); | |
9882 | |
9883 val = args[coding_arg_ccl_valids]; | |
9884 valids = Fmake_string (make_number (256), make_number (0)); | |
9885 for (tail = val; !NILP (tail); tail = Fcdr (tail)) | |
9886 { | |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9887 int from, to; |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9888 |
88365 | 9889 val = Fcar (tail); |
9890 if (INTEGERP (val)) | |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9891 { |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9892 from = to = XINT (val); |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9893 if (from < 0 || from > 255) |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9894 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
|
9895 } |
88365 | 9896 else |
9897 { | |
9898 CHECK_CONS (val); | |
89483 | 9899 CHECK_NATNUM_CAR (val); |
9900 CHECK_NATNUM_CDR (val); | |
88365 | 9901 from = XINT (XCAR (val)); |
89483 | 9902 if (from > 255) |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9903 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
|
9904 make_number (0), make_number (255)); |
88365 | 9905 to = XINT (XCDR (val)); |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9906 if (to < from || to > 255) |
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9907 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
|
9908 XCAR (val), make_number (255)); |
88365 | 9909 } |
89373
4cc9e57fcabc
(decode_coding_ccl, encode_coding_ccl): Call ccl_driver
Kenichi Handa <handa@m17n.org>
parents:
89331
diff
changeset
|
9910 for (i = from; i <= to; i++) |
89483 | 9911 SSET (valids, i, 1); |
88365 | 9912 } |
9913 ASET (attrs, coding_attr_ccl_valids, valids); | |
89483 | 9914 |
88365 | 9915 category = coding_category_ccl; |
9916 } | |
9917 else if (EQ (coding_type, Qutf_16)) | |
9918 { | |
9919 Lisp_Object bom, endian; | |
9920 | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9921 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
|
9922 |
88365 | 9923 if (nargs < coding_arg_utf16_max) |
9924 goto short_args; | |
9925 | |
9926 bom = args[coding_arg_utf16_bom]; | |
9927 if (! NILP (bom) && ! EQ (bom, Qt)) | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
9928 { |
88365 | 9929 CHECK_CONS (bom); |
89483 | 9930 val = XCAR (bom); |
9931 CHECK_CODING_SYSTEM (val); | |
9932 val = XCDR (bom); | |
9933 CHECK_CODING_SYSTEM (val); | |
88365 | 9934 } |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
9935 ASET (attrs, coding_attr_utf_bom, bom); |
88365 | 9936 |
9937 endian = args[coding_arg_utf16_endian]; | |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9938 CHECK_SYMBOL (endian); |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9939 if (NILP (endian)) |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9940 endian = Qbig; |
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9941 else if (! EQ (endian, Qbig) && ! EQ (endian, Qlittle)) |
89483 | 9942 error ("Invalid endian: %s", SDATA (SYMBOL_NAME (endian))); |
88365 | 9943 ASET (attrs, coding_attr_utf_16_endian, endian); |
9944 | |
9945 category = (CONSP (bom) | |
9946 ? coding_category_utf_16_auto | |
9947 : NILP (bom) | |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9948 ? (EQ (endian, Qbig) |
88365 | 9949 ? coding_category_utf_16_be_nosig |
9950 : coding_category_utf_16_le_nosig) | |
89420
c3e67ce6ee0f
(Qsignature, Qendian): Delete these variables.
Kenichi Handa <handa@m17n.org>
parents:
89418
diff
changeset
|
9951 : (EQ (endian, Qbig) |
88365 | 9952 ? coding_category_utf_16_be |
9953 : coding_category_utf_16_le)); | |
9954 } | |
9955 else if (EQ (coding_type, Qiso_2022)) | |
9956 { | |
9957 Lisp_Object initial, reg_usage, request, flags; | |
89442
7349f4473e7f
(detected_mask): Delete unused variable.
Kenichi Handa <handa@m17n.org>
parents:
89429
diff
changeset
|
9958 int i; |
88365 | 9959 |
9960 if (nargs < coding_arg_iso2022_max) | |
9961 goto short_args; | |
9962 | |
9963 initial = Fcopy_sequence (args[coding_arg_iso2022_initial]); | |
9964 CHECK_VECTOR (initial); | |
9965 for (i = 0; i < 4; i++) | |
9966 { | |
9967 val = Faref (initial, make_number (i)); | |
9968 if (! NILP (val)) | |
9969 { | |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9970 struct charset *charset; |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9971 |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
9972 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
|
9973 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
|
9974 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
|
9975 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 9976 } |
9977 else | |
9978 ASET (initial, i, make_number (-1)); | |
9979 } | |
9980 | |
9981 reg_usage = args[coding_arg_iso2022_reg_usage]; | |
9982 CHECK_CONS (reg_usage); | |
89483 | 9983 CHECK_NUMBER_CAR (reg_usage); |
9984 CHECK_NUMBER_CDR (reg_usage); | |
88365 | 9985 |
9986 request = Fcopy_sequence (args[coding_arg_iso2022_request]); | |
9987 for (tail = request; ! NILP (tail); tail = Fcdr (tail)) | |
9988 { | |
9989 int id; | |
89483 | 9990 Lisp_Object tmp; |
88365 | 9991 |
9992 val = Fcar (tail); | |
9993 CHECK_CONS (val); | |
89483 | 9994 tmp = XCAR (val); |
9995 CHECK_CHARSET_GET_ID (tmp, id); | |
9996 CHECK_NATNUM_CDR (val); | |
88365 | 9997 if (XINT (XCDR (val)) >= 4) |
9998 error ("Invalid graphic register number: %d", XINT (XCDR (val))); | |
89483 | 9999 XSETCAR (val, make_number (id)); |
88365 | 10000 } |
10001 | |
10002 flags = args[coding_arg_iso2022_flags]; | |
10003 CHECK_NATNUM (flags); | |
10004 i = XINT (flags); | |
10005 if (EQ (args[coding_arg_charset_list], Qiso_2022)) | |
10006 flags = make_number (i | CODING_ISO_FLAG_FULL_SUPPORT); | |
10007 | |
10008 ASET (attrs, coding_attr_iso_initial, initial); | |
10009 ASET (attrs, coding_attr_iso_usage, reg_usage); | |
10010 ASET (attrs, coding_attr_iso_request, request); | |
10011 ASET (attrs, coding_attr_iso_flags, flags); | |
10012 setup_iso_safe_charsets (attrs); | |
10013 | |
10014 if (i & CODING_ISO_FLAG_SEVEN_BITS) | |
10015 category = ((i & (CODING_ISO_FLAG_LOCKING_SHIFT | |
10016 | CODING_ISO_FLAG_SINGLE_SHIFT)) | |
10017 ? coding_category_iso_7_else | |
10018 : EQ (args[coding_arg_charset_list], Qiso_2022) | |
10019 ? coding_category_iso_7 | |
10020 : coding_category_iso_7_tight); | |
10021 else | |
10022 { | |
10023 int id = XINT (AREF (initial, 1)); | |
10024 | |
88977
3b05c02eebf2
(Fdefine_coding_system_internal): Fix category setting
Kenichi Handa <handa@m17n.org>
parents:
88950
diff
changeset
|
10025 category = (((i & CODING_ISO_FLAG_LOCKING_SHIFT) |
88365 | 10026 || EQ (args[coding_arg_charset_list], Qiso_2022) |
10027 || id < 0) | |
10028 ? coding_category_iso_8_else | |
10029 : (CHARSET_DIMENSION (CHARSET_FROM_ID (id)) == 1) | |
10030 ? coding_category_iso_8_1 | |
10031 : coding_category_iso_8_2); | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10032 } |
89227
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
10033 if (category != coding_category_iso_8_1 |
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
10034 && category != coding_category_iso_8_2) |
101ee928c088
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89225
diff
changeset
|
10035 CODING_ATTR_ASCII_COMPAT (attrs) = Qnil; |
88365 | 10036 } |
10037 else if (EQ (coding_type, Qemacs_mule)) | |
10038 { | |
10039 if (EQ (args[coding_arg_charset_list], Qemacs_mule)) | |
10040 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
|
10041 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 10042 category = coding_category_emacs_mule; |
10043 } | |
10044 else if (EQ (coding_type, Qshift_jis)) | |
10045 { | |
10046 | |
10047 struct charset *charset; | |
10048 | |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
10049 if (XINT (Flength (charset_list)) != 3 |
89739
293c9235be3f
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89732
diff
changeset
|
10050 && XINT (Flength (charset_list)) != 4) |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
10051 error ("There should be three or four charsets"); |
88365 | 10052 |
10053 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10054 if (CHARSET_DIMENSION (charset) != 1) | |
10055 error ("Dimension of charset %s is not one", | |
89483 | 10056 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
|
10057 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
|
10058 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 10059 |
10060 charset_list = XCDR (charset_list); | |
10061 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10062 if (CHARSET_DIMENSION (charset) != 1) | |
10063 error ("Dimension of charset %s is not one", | |
89483 | 10064 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
88365 | 10065 |
10066 charset_list = XCDR (charset_list); | |
10067 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10068 if (CHARSET_DIMENSION (charset) != 2) | |
10069 error ("Dimension of charset %s is not two", | |
89483 | 10070 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
88365 | 10071 |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
10072 charset_list = XCDR (charset_list); |
89740
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10073 if (! NILP (charset_list)) |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10074 { |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10075 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
|
10076 if (CHARSET_DIMENSION (charset) != 2) |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10077 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
|
10078 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89739
diff
changeset
|
10079 } |
89732
8acde12aba89
(get_translation_table): New function.
Kenichi Handa <handa@m17n.org>
parents:
89730
diff
changeset
|
10080 |
88365 | 10081 category = coding_category_sjis; |
10082 Vsjis_coding_system = name; | |
10083 } | |
10084 else if (EQ (coding_type, Qbig5)) | |
10085 { | |
10086 struct charset *charset; | |
10087 | |
10088 if (XINT (Flength (charset_list)) != 2) | |
10089 error ("There should be just two charsets"); | |
10090 | |
10091 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10092 if (CHARSET_DIMENSION (charset) != 1) | |
10093 error ("Dimension of charset %s is not one", | |
89483 | 10094 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
|
10095 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
|
10096 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
88365 | 10097 |
10098 charset_list = XCDR (charset_list); | |
10099 charset = CHARSET_FROM_ID (XINT (XCAR (charset_list))); | |
10100 if (CHARSET_DIMENSION (charset) != 2) | |
10101 error ("Dimension of charset %s is not two", | |
89483 | 10102 SDATA (SYMBOL_NAME (CHARSET_NAME (charset)))); |
88365 | 10103 |
10104 category = coding_category_big5; | |
10105 Vbig5_coding_system = name; | |
10106 } | |
10107 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
|
10108 { |
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10109 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
|
10110 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
|
10111 } |
88365 | 10112 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
|
10113 { |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10114 Lisp_Object bom; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10115 |
89225
32058afc72e2
(detect_coding_charset): If only ASCII bytes are found, return 0.
Kenichi Handa <handa@m17n.org>
parents:
89221
diff
changeset
|
10116 CODING_ATTR_ASCII_COMPAT (attrs) = Qt; |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10117 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10118 if (nargs < coding_arg_utf8_max) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10119 goto short_args; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10120 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10121 bom = args[coding_arg_utf8_bom]; |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10122 if (! NILP (bom) && ! EQ (bom, Qt)) |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10123 { |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10124 CHECK_CONS (bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10125 val = XCAR (bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10126 CHECK_CODING_SYSTEM (val); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10127 val = XCDR (bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10128 CHECK_CODING_SYSTEM (val); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10129 } |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10130 ASET (attrs, coding_attr_utf_bom, bom); |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10131 |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10132 category = (CONSP (bom) ? coding_category_utf_8_auto |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10133 : NILP (bom) ? coding_category_utf_8_nosig |
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10134 : 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
|
10135 } |
88365 | 10136 else if (EQ (coding_type, Qundecided)) |
10137 category = coding_category_undecided; | |
10138 else | |
10139 error ("Invalid coding system type: %s", | |
89483 | 10140 SDATA (SYMBOL_NAME (coding_type))); |
88365 | 10141 |
10142 CODING_ATTR_CATEGORY (attrs) = make_number (category); | |
89468
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10143 CODING_ATTR_PLIST (attrs) |
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10144 = Fcons (QCcategory, Fcons (AREF (Vcoding_category_table, category), |
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10145 CODING_ATTR_PLIST (attrs))); |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10146 CODING_ATTR_PLIST (attrs) |
93877
62d97ebb13a9
* coding.c (detect_coding_emacs_mule)
Michael Albinus <michael.albinus@gmx.de>
parents:
93595
diff
changeset
|
10147 = Fcons (QCascii_compatible_p, |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10148 Fcons (CODING_ATTR_ASCII_COMPAT (attrs), |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10149 CODING_ATTR_PLIST (attrs))); |
88365 | 10150 |
10151 eol_type = args[coding_arg_eol_type]; | |
10152 if (! NILP (eol_type) | |
10153 && ! EQ (eol_type, Qunix) | |
10154 && ! EQ (eol_type, Qdos) | |
10155 && ! EQ (eol_type, Qmac)) | |
10156 error ("Invalid eol-type"); | |
10157 | |
10158 aliases = Fcons (name, Qnil); | |
10159 | |
10160 if (NILP (eol_type)) | |
10161 { | |
10162 eol_type = make_subsidiaries (name); | |
10163 for (i = 0; i < 3; i++) | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10164 { |
88365 | 10165 Lisp_Object this_spec, this_name, this_aliases, this_eol_type; |
10166 | |
10167 this_name = AREF (eol_type, i); | |
10168 this_aliases = Fcons (this_name, Qnil); | |
10169 this_eol_type = (i == 0 ? Qunix : i == 1 ? Qdos : Qmac); | |
10170 this_spec = Fmake_vector (make_number (3), attrs); | |
10171 ASET (this_spec, 1, this_aliases); | |
10172 ASET (this_spec, 2, this_eol_type); | |
10173 Fputhash (this_name, this_spec, Vcoding_system_hash_table); | |
10174 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
|
10175 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
|
10176 if (NILP (val)) |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10177 Vcoding_system_alist |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10178 = Fcons (Fcons (Fsymbol_name (this_name), Qnil), |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10179 Vcoding_system_alist); |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10180 } |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10181 } |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10182 |
88365 | 10183 spec_vec = Fmake_vector (make_number (3), attrs); |
10184 ASET (spec_vec, 1, aliases); | |
10185 ASET (spec_vec, 2, eol_type); | |
10186 | |
10187 Fputhash (name, spec_vec, Vcoding_system_hash_table); | |
10188 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
|
10189 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
|
10190 if (NILP (val)) |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10191 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
|
10192 Vcoding_system_alist); |
88365 | 10193 |
10194 { | |
10195 int id = coding_categories[category].id; | |
10196 | |
10197 if (id < 0 || EQ (name, CODING_ID_NAME (id))) | |
10198 setup_coding_system (name, &coding_categories[category]); | |
10199 } | |
10200 | |
10201 return Qnil; | |
10202 | |
10203 short_args: | |
10204 return Fsignal (Qwrong_number_of_arguments, | |
10205 Fcons (intern ("define-coding-system-internal"), | |
10206 make_number (nargs))); | |
10207 } | |
10208 | |
89571
242f2cc0134b
(Fdefine_coding_system_alias): Update Vcoding_system_list.
Kenichi Handa <handa@m17n.org>
parents:
89562
diff
changeset
|
10209 |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10210 DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10211 3, 3, 0, |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10212 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
|
10213 (coding_system, prop, val) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10214 Lisp_Object coding_system, prop, val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10215 { |
89924
7d0f6da3ea6e
(detect_coding): Delete unused variables.
Kenichi Handa <handa@m17n.org>
parents:
89917
diff
changeset
|
10216 Lisp_Object spec, attrs; |
89759
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 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10219 attrs = AREF (spec, 0); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10220 if (EQ (prop, QCmnemonic)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10221 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10222 if (! STRINGP (val)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10223 CHECK_CHARACTER (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10224 CODING_ATTR_MNEMONIC (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10225 } |
100303
3e044fa54e4f
* coding.c (QCdefault_char): Rename from QCdefalut_char.
Juanma Barranquero <lekktu@gmail.com>
parents:
100262
diff
changeset
|
10226 else if (EQ (prop, QCdefault_char)) |
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 if (NILP (val)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10229 val = make_number (' '); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10230 else |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10231 CHECK_CHARACTER (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10232 CODING_ATTR_DEFAULT_CHAR (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10233 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10234 else if (EQ (prop, QCdecode_translation_table)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10235 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10236 if (! CHAR_TABLE_P (val) && ! CONSP (val)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10237 CHECK_SYMBOL (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10238 CODING_ATTR_DECODE_TBL (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10239 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10240 else if (EQ (prop, QCencode_translation_table)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10241 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10242 if (! CHAR_TABLE_P (val) && ! CONSP (val)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10243 CHECK_SYMBOL (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10244 CODING_ATTR_ENCODE_TBL (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10245 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10246 else if (EQ (prop, QCpost_read_conversion)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10247 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10248 CHECK_SYMBOL (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10249 CODING_ATTR_POST_READ (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10250 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10251 else if (EQ (prop, QCpre_write_conversion)) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10252 { |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10253 CHECK_SYMBOL (val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10254 CODING_ATTR_PRE_WRITE (attrs) = val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10255 } |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10256 else if (EQ (prop, QCascii_compatible_p)) |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10257 { |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10258 CODING_ATTR_ASCII_COMPAT (attrs) = val; |
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10259 } |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10260 |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10261 CODING_ATTR_PLIST (attrs) |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10262 = Fplist_put (CODING_ATTR_PLIST (attrs), prop, val); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10263 return val; |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10264 } |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10265 |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10266 |
88365 | 10267 DEFUN ("define-coding-system-alias", Fdefine_coding_system_alias, |
10268 Sdefine_coding_system_alias, 2, 2, 0, | |
10269 doc: /* Define ALIAS as an alias for CODING-SYSTEM. */) | |
10270 (alias, coding_system) | |
10271 Lisp_Object alias, coding_system; | |
10272 { | |
90289
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10273 Lisp_Object spec, aliases, eol_type, val; |
88365 | 10274 |
10275 CHECK_SYMBOL (alias); | |
10276 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
10277 aliases = AREF (spec, 1); | |
95088
524350e4961c
(Fcoding_system_p): Rename argument to match docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
94963
diff
changeset
|
10278 /* 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
|
10279 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
|
10280 list. */ |
88365 | 10281 while (!NILP (XCDR (aliases))) |
10282 aliases = XCDR (aliases); | |
89483 | 10283 XSETCDR (aliases, Fcons (alias, Qnil)); |
88365 | 10284 |
10285 eol_type = AREF (spec, 2); | |
10286 if (VECTORP (eol_type)) | |
10287 { | |
10288 Lisp_Object subsidiaries; | |
10289 int i; | |
10290 | |
10291 subsidiaries = make_subsidiaries (alias); | |
10292 for (i = 0; i < 3; i++) | |
10293 Fdefine_coding_system_alias (AREF (subsidiaries, i), | |
10294 AREF (eol_type, i)); | |
10295 } | |
10296 | |
10297 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
|
10298 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
|
10299 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
|
10300 if (NILP (val)) |
72d8a45f6c9f
(Fdefine_coding_system_internal): Avoid a duplicated
Kenichi Handa <handa@m17n.org>
parents:
90272
diff
changeset
|
10301 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
|
10302 Vcoding_system_alist); |
88365 | 10303 |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10304 return Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10305 } |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10306 |
88365 | 10307 DEFUN ("coding-system-base", Fcoding_system_base, Scoding_system_base, |
10308 1, 1, 0, | |
10309 doc: /* Return the base of CODING-SYSTEM. | |
88645 | 10310 Any alias or subsidiary coding system is not a base coding system. */) |
88365 | 10311 (coding_system) |
10312 Lisp_Object coding_system; | |
10313 { | |
10314 Lisp_Object spec, attrs; | |
10315 | |
10316 if (NILP (coding_system)) | |
10317 return (Qno_conversion); | |
10318 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
10319 attrs = AREF (spec, 0); | |
10320 return CODING_ATTR_BASE_NAME (attrs); | |
10321 } | |
10322 | |
10323 DEFUN ("coding-system-plist", Fcoding_system_plist, Scoding_system_plist, | |
10324 1, 1, 0, | |
10325 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
|
10326 (coding_system) |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10327 Lisp_Object coding_system; |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10328 { |
88365 | 10329 Lisp_Object spec, attrs; |
10330 | |
10331 if (NILP (coding_system)) | |
10332 coding_system = Qno_conversion; | |
10333 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
10334 attrs = AREF (spec, 0); | |
10335 return CODING_ATTR_PLIST (attrs); | |
10336 } | |
10337 | |
10338 | |
10339 DEFUN ("coding-system-aliases", Fcoding_system_aliases, Scoding_system_aliases, | |
10340 1, 1, 0, | |
88645 | 10341 doc: /* Return the list of aliases of CODING-SYSTEM. */) |
88365 | 10342 (coding_system) |
10343 Lisp_Object coding_system; | |
10344 { | |
10345 Lisp_Object spec; | |
10346 | |
10347 if (NILP (coding_system)) | |
10348 coding_system = Qno_conversion; | |
10349 CHECK_CODING_SYSTEM_GET_SPEC (coding_system, spec); | |
88645 | 10350 return AREF (spec, 1); |
88365 | 10351 } |
10352 | |
10353 DEFUN ("coding-system-eol-type", Fcoding_system_eol_type, | |
10354 Scoding_system_eol_type, 1, 1, 0, | |
10355 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
|
10356 An eol-type is an integer 0, 1, 2, or a vector of coding systems. |
88365 | 10357 |
10358 Integer values 0, 1, and 2 indicate a format of end-of-line; LF, CRLF, | |
10359 and CR respectively. | |
10360 | |
10361 A vector value indicates that a format of end-of-line should be | |
10362 detected automatically. Nth element of the vector is the subsidiary | |
10363 coding system whose eol-type is N. */) | |
10364 (coding_system) | |
10365 Lisp_Object coding_system; | |
10366 { | |
10367 Lisp_Object spec, eol_type; | |
10368 int n; | |
10369 | |
10370 if (NILP (coding_system)) | |
10371 coding_system = Qno_conversion; | |
10372 if (! CODING_SYSTEM_P (coding_system)) | |
10373 return Qnil; | |
10374 spec = CODING_SYSTEM_SPEC (coding_system); | |
10375 eol_type = AREF (spec, 2); | |
10376 if (VECTORP (eol_type)) | |
10377 return Fcopy_sequence (eol_type); | |
10378 n = EQ (eol_type, Qunix) ? 0 : EQ (eol_type, Qdos) ? 1 : 2; | |
10379 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
|
10380 } |
1ad5bfbb831a
(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa <handa@m17n.org>
parents:
48874
diff
changeset
|
10381 |
17052 | 10382 #endif /* emacs */ |
10383 | |
10384 | |
22874
b133f07a76db
(Qvalid_codes): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22812
diff
changeset
|
10385 /*** 9. Post-amble ***/ |
17052 | 10386 |
21514 | 10387 void |
17052 | 10388 init_coding_once () |
10389 { | |
10390 int i; | |
10391 | |
88365 | 10392 for (i = 0; i < coding_category_max; i++) |
10393 { | |
10394 coding_categories[i].id = -1; | |
10395 coding_priorities[i] = i; | |
10396 } | |
17052 | 10397 |
10398 /* ISO2022 specific initialize routine. */ | |
10399 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
|
10400 iso_code_class[i] = ISO_control_0; |
17052 | 10401 for (i = 0x21; i < 0x7F; i++) |
10402 iso_code_class[i] = ISO_graphic_plane_0; | |
10403 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
|
10404 iso_code_class[i] = ISO_control_1; |
17052 | 10405 for (i = 0xA1; i < 0xFF; i++) |
10406 iso_code_class[i] = ISO_graphic_plane_1; | |
10407 iso_code_class[0x20] = iso_code_class[0x7F] = ISO_0x20_or_0x7F; | |
10408 iso_code_class[0xA0] = iso_code_class[0xFF] = ISO_0xA0_or_0xFF; | |
10409 iso_code_class[ISO_CODE_SO] = ISO_shift_out; | |
10410 iso_code_class[ISO_CODE_SI] = ISO_shift_in; | |
10411 iso_code_class[ISO_CODE_SS2_7] = ISO_single_shift_2_7; | |
10412 iso_code_class[ISO_CODE_ESC] = ISO_escape; | |
10413 iso_code_class[ISO_CODE_SS2] = ISO_single_shift_2; | |
10414 iso_code_class[ISO_CODE_SS3] = ISO_single_shift_3; | |
10415 iso_code_class[ISO_CODE_CSI] = ISO_control_sequence_introducer; | |
10416 | |
88365 | 10417 for (i = 0; i < 256; i++) |
10418 { | |
10419 emacs_mule_bytes[i] = 1; | |
10420 } | |
88876
af9012fdad56
(LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12,
Kenichi Handa <handa@m17n.org>
parents:
88862
diff
changeset
|
10421 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
|
10422 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
|
10423 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
|
10424 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
|
10425 } |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10426 |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10427 #ifdef emacs |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10428 |
21514 | 10429 void |
17119
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10430 syms_of_coding () |
2cfb31c15ced
(create_process, Fopen_network_stream): Typo in indexes
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
10431 { |
88365 | 10432 staticpro (&Vcoding_system_hash_table); |
89483 | 10433 { |
10434 Lisp_Object args[2]; | |
10435 args[0] = QCtest; | |
10436 args[1] = Qeq; | |
10437 Vcoding_system_hash_table = Fmake_hash_table (2, args); | |
10438 } | |
88365 | 10439 |
10440 staticpro (&Vsjis_coding_system); | |
10441 Vsjis_coding_system = Qnil; | |
10442 | |
10443 staticpro (&Vbig5_coding_system); | |
10444 Vbig5_coding_system = Qnil; | |
10445 | |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
10446 staticpro (&Vcode_conversion_reused_workbuf); |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
10447 Vcode_conversion_reused_workbuf = Qnil; |
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
10448 |
58637
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
10449 staticpro (&Vcode_conversion_workbuf_name); |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10450 Vcode_conversion_workbuf_name = make_pure_c_string (" *code-conversion-work*"); |
58637
ff8a37b5299b
(Vcode_conversion_workbuf_name): New variable.
Kenichi Handa <handa@m17n.org>
parents:
58502
diff
changeset
|
10451 |
89665
9010cefe8d29
(enum iso_code_class_type): Delete ISO_carriage_return.
Kenichi Handa <handa@m17n.org>
parents:
89653
diff
changeset
|
10452 reused_workbuf_in_use = 0; |
88365 | 10453 |
10454 DEFSYM (Qcharset, "charset"); | |
10455 DEFSYM (Qtarget_idx, "target-idx"); | |
10456 DEFSYM (Qcoding_system_history, "coding-system-history"); | |
19750
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
10457 Fset (Qcoding_system_history, Qnil); |
95e4e1cba6ac
(Qcoding_system_history): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
19747
diff
changeset
|
10458 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10459 /* 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
|
10460 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
|
10461 /* 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
|
10462 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
|
10463 |
88365 | 10464 DEFSYM (Qcall_process, "call-process"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10465 /* 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
|
10466 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
|
10467 |
88365 | 10468 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
|
10469 /* 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
|
10470 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
|
10471 |
88365 | 10472 DEFSYM (Qstart_process, "start-process"); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10473 /* 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
|
10474 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
|
10475 |
88365 | 10476 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
|
10477 /* 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
|
10478 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
|
10479 |
88365 | 10480 DEFSYM (Qcoding_system, "coding-system"); |
10481 DEFSYM (Qcoding_aliases, "coding-aliases"); | |
10482 | |
10483 DEFSYM (Qeol_type, "eol-type"); | |
10484 DEFSYM (Qunix, "unix"); | |
10485 DEFSYM (Qdos, "dos"); | |
10486 | |
10487 DEFSYM (Qbuffer_file_coding_system, "buffer-file-coding-system"); | |
10488 DEFSYM (Qpost_read_conversion, "post-read-conversion"); | |
10489 DEFSYM (Qpre_write_conversion, "pre-write-conversion"); | |
10490 DEFSYM (Qdefault_char, "default-char"); | |
10491 DEFSYM (Qundecided, "undecided"); | |
10492 DEFSYM (Qno_conversion, "no-conversion"); | |
10493 DEFSYM (Qraw_text, "raw-text"); | |
10494 | |
10495 DEFSYM (Qiso_2022, "iso-2022"); | |
10496 | |
10497 DEFSYM (Qutf_8, "utf-8"); | |
89483 | 10498 DEFSYM (Qutf_8_emacs, "utf-8-emacs"); |
88365 | 10499 |
10500 DEFSYM (Qutf_16, "utf-16"); | |
10501 DEFSYM (Qbig, "big"); | |
10502 DEFSYM (Qlittle, "little"); | |
10503 | |
10504 DEFSYM (Qshift_jis, "shift-jis"); | |
10505 DEFSYM (Qbig5, "big5"); | |
10506 | |
10507 DEFSYM (Qcoding_system_p, "coding-system-p"); | |
10508 | |
10509 DEFSYM (Qcoding_system_error, "coding-system-error"); | |
17052 | 10510 Fput (Qcoding_system_error, Qerror_conditions, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10511 pure_cons (Qcoding_system_error, pure_cons (Qerror, Qnil))); |
17052 | 10512 Fput (Qcoding_system_error, Qerror_message, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10513 make_pure_c_string ("Invalid coding system")); |
17052 | 10514 |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
10515 /* 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
|
10516 Setting this variable twice is harmless. |
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
10517 But don't staticpro it here--that is done in alloc.c. */ |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10518 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots"); |
88365 | 10519 |
10520 DEFSYM (Qtranslation_table, "translation-table"); | |
89856
18b52da60a76
(get_translation): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89852
diff
changeset
|
10521 Fput (Qtranslation_table, Qchar_table_extra_slots, make_number (2)); |
88365 | 10522 DEFSYM (Qtranslation_table_id, "translation-table-id"); |
10523 DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode"); | |
10524 DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode"); | |
10525 | |
10526 DEFSYM (Qvalid_codes, "valid-codes"); | |
10527 | |
10528 DEFSYM (Qemacs_mule, "emacs-mule"); | |
10529 | |
89468
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10530 DEFSYM (QCcategory, ":category"); |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10531 DEFSYM (QCmnemonic, ":mnemonic"); |
100303
3e044fa54e4f
* coding.c (QCdefault_char): Rename from QCdefalut_char.
Juanma Barranquero <lekktu@gmail.com>
parents:
100262
diff
changeset
|
10532 DEFSYM (QCdefault_char, ":default-char"); |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10533 DEFSYM (QCdecode_translation_table, ":decode-translation-table"); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10534 DEFSYM (QCencode_translation_table, ":encode-translation-table"); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10535 DEFSYM (QCpost_read_conversion, ":post-read-conversion"); |
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10536 DEFSYM (QCpre_write_conversion, ":pre-write-conversion"); |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10537 DEFSYM (QCascii_compatible_p, ":ascii-compatible-p"); |
89468
7dbbe692f70c
* coding.c (QCcategory): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89467
diff
changeset
|
10538 |
88365 | 10539 Vcoding_category_table |
10540 = Fmake_vector (make_number (coding_category_max), Qnil); | |
10541 staticpro (&Vcoding_category_table); | |
10542 /* Followings are target of code detection. */ | |
10543 ASET (Vcoding_category_table, coding_category_iso_7, | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10544 intern_c_string ("coding-category-iso-7")); |
88365 | 10545 ASET (Vcoding_category_table, coding_category_iso_7_tight, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10546 intern_c_string ("coding-category-iso-7-tight")); |
88365 | 10547 ASET (Vcoding_category_table, coding_category_iso_8_1, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10548 intern_c_string ("coding-category-iso-8-1")); |
88365 | 10549 ASET (Vcoding_category_table, coding_category_iso_8_2, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10550 intern_c_string ("coding-category-iso-8-2")); |
88365 | 10551 ASET (Vcoding_category_table, coding_category_iso_7_else, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10552 intern_c_string ("coding-category-iso-7-else")); |
88365 | 10553 ASET (Vcoding_category_table, coding_category_iso_8_else, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10554 intern_c_string ("coding-category-iso-8-else")); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10555 ASET (Vcoding_category_table, coding_category_utf_8_auto, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10556 intern_c_string ("coding-category-utf-8-auto")); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10557 ASET (Vcoding_category_table, coding_category_utf_8_nosig, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10558 intern_c_string ("coding-category-utf-8")); |
95397
c99f0a16c077
(CODING_UTF_8_BOM): New macro.
Kenichi Handa <handa@m17n.org>
parents:
95356
diff
changeset
|
10559 ASET (Vcoding_category_table, coding_category_utf_8_sig, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10560 intern_c_string ("coding-category-utf-8-sig")); |
88365 | 10561 ASET (Vcoding_category_table, coding_category_utf_16_be, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10562 intern_c_string ("coding-category-utf-16-be")); |
89467
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10563 ASET (Vcoding_category_table, coding_category_utf_16_auto, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10564 intern_c_string ("coding-category-utf-16-auto")); |
88365 | 10565 ASET (Vcoding_category_table, coding_category_utf_16_le, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10566 intern_c_string ("coding-category-utf-16-le")); |
88365 | 10567 ASET (Vcoding_category_table, coding_category_utf_16_be_nosig, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10568 intern_c_string ("coding-category-utf-16-be-nosig")); |
88365 | 10569 ASET (Vcoding_category_table, coding_category_utf_16_le_nosig, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10570 intern_c_string ("coding-category-utf-16-le-nosig")); |
88365 | 10571 ASET (Vcoding_category_table, coding_category_charset, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10572 intern_c_string ("coding-category-charset")); |
88365 | 10573 ASET (Vcoding_category_table, coding_category_sjis, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10574 intern_c_string ("coding-category-sjis")); |
88365 | 10575 ASET (Vcoding_category_table, coding_category_big5, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10576 intern_c_string ("coding-category-big5")); |
88365 | 10577 ASET (Vcoding_category_table, coding_category_ccl, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10578 intern_c_string ("coding-category-ccl")); |
88365 | 10579 ASET (Vcoding_category_table, coding_category_emacs_mule, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10580 intern_c_string ("coding-category-emacs-mule")); |
88365 | 10581 /* Followings are NOT target of code detection. */ |
10582 ASET (Vcoding_category_table, coding_category_raw_text, | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10583 intern_c_string ("coding-category-raw-text")); |
88365 | 10584 ASET (Vcoding_category_table, coding_category_undecided, |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10585 intern_c_string ("coding-category-undecided")); |
88365 | 10586 |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10587 DEFSYM (Qinsufficient_source, "insufficient-source"); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10588 DEFSYM (Qinconsistent_eol, "inconsistent-eol"); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10589 DEFSYM (Qinvalid_source, "invalid-source"); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10590 DEFSYM (Qinterrupted, "interrupted"); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10591 DEFSYM (Qinsufficient_memory, "insufficient-memory"); |
90272
f1df126ec7de
Sync to HEAD for handling autoload-coding-system.
Kenichi Handa <handa@m17n.org>
parents:
90263
diff
changeset
|
10592 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
|
10593 |
17052 | 10594 defsubr (&Scoding_system_p); |
10595 defsubr (&Sread_coding_system); | |
10596 defsubr (&Sread_non_nil_coding_system); | |
10597 defsubr (&Scheck_coding_system); | |
10598 defsubr (&Sdetect_coding_region); | |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10599 defsubr (&Sdetect_coding_string); |
30487
6165da9c89c6
(Qsafe_charsets): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
30384
diff
changeset
|
10600 defsubr (&Sfind_coding_systems_region_internal); |
46859
a26dd8891732
(unencodable_char_position): New function.
Kenichi Handa <handa@m17n.org>
parents:
46839
diff
changeset
|
10601 defsubr (&Sunencodable_char_position); |
88365 | 10602 defsubr (&Scheck_coding_systems_region); |
17052 | 10603 defsubr (&Sdecode_coding_region); |
10604 defsubr (&Sencode_coding_region); | |
10605 defsubr (&Sdecode_coding_string); | |
10606 defsubr (&Sencode_coding_string); | |
10607 defsubr (&Sdecode_sjis_char); | |
10608 defsubr (&Sencode_sjis_char); | |
10609 defsubr (&Sdecode_big5_char); | |
10610 defsubr (&Sencode_big5_char); | |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
10611 defsubr (&Sset_terminal_coding_system_internal); |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
10612 defsubr (&Sset_safe_terminal_coding_system_internal); |
17052 | 10613 defsubr (&Sterminal_coding_system); |
18002
a14261786239
(encode_invocation_designation): Use macro
Kenichi Handa <handa@m17n.org>
parents:
17835
diff
changeset
|
10614 defsubr (&Sset_keyboard_coding_system_internal); |
17052 | 10615 defsubr (&Skeyboard_coding_system); |
18536
69c0e220b626
(Vstandard_character_unification_table_for_decode):
Kenichi Handa <handa@m17n.org>
parents:
18523
diff
changeset
|
10616 defsubr (&Sfind_operation_coding_system); |
88365 | 10617 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
|
10618 defsubr (&Sdefine_coding_system_internal); |
88365 | 10619 defsubr (&Sdefine_coding_system_alias); |
89759
d11866e9fbf4
(QCmnemonic, QCdefalut_char)
Kenichi Handa <handa@m17n.org>
parents:
89740
diff
changeset
|
10620 defsubr (&Scoding_system_put); |
88365 | 10621 defsubr (&Scoding_system_base); |
10622 defsubr (&Scoding_system_plist); | |
10623 defsubr (&Scoding_system_aliases); | |
10624 defsubr (&Scoding_system_eol_type); | |
10625 defsubr (&Scoding_system_priority_list); | |
17052 | 10626 |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10627 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
|
10628 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
|
10629 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10630 Do not alter the value of this variable manually. This variable should be |
88365 | 10631 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
|
10632 `define-coding-system-alias'. */); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10633 Vcoding_system_list = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10634 |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10635 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
|
10636 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
|
10637 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
|
10638 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
|
10639 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10640 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
|
10641 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
|
10642 `define-coding-system-alias'. */); |
20105
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10643 Vcoding_system_alist = Qnil; |
c017642863c2
(Qcoding_system_spec): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
19824
diff
changeset
|
10644 |
17052 | 10645 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
|
10646 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
|
10647 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10648 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
|
10649 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
|
10650 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
|
10651 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
|
10652 |
61166
e3a6dd630fdf
(Vcoding_category_list): Docstring fix.
Kenichi Handa <handa@m17n.org>
parents:
60907
diff
changeset
|
10653 Don't modify this variable directly, but use `set-coding-priority'. */); |
17052 | 10654 { |
10655 int i; | |
10656 | |
10657 Vcoding_category_list = Qnil; | |
88365 | 10658 for (i = coding_category_max - 1; i >= 0; i--) |
17052 | 10659 Vcoding_category_list |
20718
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10660 = Fcons (XVECTOR (Vcoding_category_table)->contents[i], |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10661 Vcoding_category_list); |
17052 | 10662 } |
10663 | |
10664 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
|
10665 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
|
10666 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
|
10667 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
|
10668 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
|
10669 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
|
10670 `process-coding-system-alist', and `network-coding-system-alist'. */); |
17052 | 10671 Vcoding_system_for_read = Qnil; |
10672 | |
10673 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
|
10674 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
|
10675 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
|
10676 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
|
10677 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
|
10678 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10679 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
|
10680 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
|
10681 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
|
10682 `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
|
10683 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
|
10684 the value of `buffer-file-coding-system' is used. */); |
17052 | 10685 Vcoding_system_for_write = Qnil; |
10686 | |
10687 DEFVAR_LISP ("last-coding-system-used", &Vlast_coding_system_used, | |
88365 | 10688 doc: /* |
10689 Coding system used in the latest file or process I/O. */); | |
17052 | 10690 Vlast_coding_system_used = Qnil; |
10691 | |
89686
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10692 DEFVAR_LISP ("last-code-conversion-error", &Vlast_code_conversion_error, |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10693 doc: /* |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10694 Error status of the last code conversion. |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10695 |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10696 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
|
10697 is set to one of the following symbols. |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10698 `insufficient-source' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10699 `inconsistent-eol' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10700 `invalid-source' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10701 `interrupted' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10702 `insufficient-memory' |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10703 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
|
10704 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
|
10705 explicitly set this variable to nil before performing code |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10706 conversion. */); |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10707 Vlast_code_conversion_error = Qnil; |
9bfefb13fe83
(Qinsufficient_source, Qinconsistent_eol)
Kenichi Handa <handa@m17n.org>
parents:
89676
diff
changeset
|
10708 |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10709 DEFVAR_BOOL ("inhibit-eol-conversion", &inhibit_eol_conversion, |
88365 | 10710 doc: /* |
10711 *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
|
10712 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
|
10713 such conversion. */); |
18650
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10714 inhibit_eol_conversion = 0; |
aa3f2820e2ac
(Qemacs_mule, inhibit_eol_conversion): New variables.
Kenichi Handa <handa@m17n.org>
parents:
18613
diff
changeset
|
10715 |
21574
30394e3ae7f8
(syms_of_coding): Declare and define inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21520
diff
changeset
|
10716 DEFVAR_BOOL ("inherit-process-coding-system", &inherit_process_coding_system, |
88365 | 10717 doc: /* |
10718 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
|
10719 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
|
10720 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
|
10721 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
|
10722 |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10723 DEFVAR_LISP ("file-coding-system-alist", &Vfile_coding_system_alist, |
88365 | 10724 doc: /* |
10725 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
|
10726 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
|
10727 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
|
10728 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
|
10729 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
|
10730 the file contents. |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10731 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
|
10732 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
|
10733 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
|
10734 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
|
10735 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
|
10736 `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
|
10737 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
|
10738 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
|
10739 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10740 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
|
10741 and the variable `auto-coding-alist'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10742 Vfile_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10743 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10744 DEFVAR_LISP ("process-coding-system-alist", &Vprocess_coding_system_alist, |
88365 | 10745 doc: /* |
10746 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
|
10747 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
|
10748 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
|
10749 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
|
10750 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
|
10751 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
|
10752 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
|
10753 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
|
10754 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
|
10755 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
|
10756 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10757 See also the function `find-operation-coding-system'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10758 Vprocess_coding_system_alist = Qnil; |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10759 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10760 DEFVAR_LISP ("network-coding-system-alist", &Vnetwork_coding_system_alist, |
88365 | 10761 doc: /* |
10762 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
|
10763 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
|
10764 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
|
10765 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
|
10766 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
|
10767 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
|
10768 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
|
10769 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
|
10770 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
|
10771 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
|
10772 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
|
10773 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10774 See also the function `find-operation-coding-system'. */); |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10775 Vnetwork_coding_system_alist = Qnil; |
17052 | 10776 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10777 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
|
10778 doc: /* Coding system to use with system messages. |
6f20449b7e12
(syms_of_coding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41006
diff
changeset
|
10779 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
|
10780 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
|
10781 |
29182
1d1c27067af4
(encode_eol): Add null statement after label.
Dave Love <fx@gnu.org>
parents:
29172
diff
changeset
|
10782 /* 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
|
10783 DEFVAR_LISP ("eol-mnemonic-unix", &eol_mnemonic_unix, |
88365 | 10784 doc: /* |
10785 *String displayed in mode line for UNIX-like (LF) end-of-line format. */); | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10786 eol_mnemonic_unix = make_pure_c_string (":"); |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10787 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10788 DEFVAR_LISP ("eol-mnemonic-dos", &eol_mnemonic_dos, |
88365 | 10789 doc: /* |
10790 *String displayed in mode line for DOS-like (CRLF) end-of-line format. */); | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10791 eol_mnemonic_dos = make_pure_c_string ("\\"); |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10792 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10793 DEFVAR_LISP ("eol-mnemonic-mac", &eol_mnemonic_mac, |
88365 | 10794 doc: /* |
10795 *String displayed in mode line for MAC-like (CR) end-of-line format. */); | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10796 eol_mnemonic_mac = make_pure_c_string ("/"); |
24200
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10797 |
b9d9fccad516
(syms_of_coding): eol-mnemonic-* variables are now
Eli Zaretskii <eliz@gnu.org>
parents:
24178
diff
changeset
|
10798 DEFVAR_LISP ("eol-mnemonic-undecided", &eol_mnemonic_undecided, |
88365 | 10799 doc: /* |
10800 *String displayed in mode line when end-of-line format is not yet determined. */); | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10801 eol_mnemonic_undecided = make_pure_c_string (":"); |
17052 | 10802 |
22119
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
10803 DEFVAR_LISP ("enable-character-translation", &Venable_character_translation, |
88365 | 10804 doc: /* |
10805 *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
|
10806 Venable_character_translation = Qt; |
592bb8b9bcfd
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
22020
diff
changeset
|
10807 |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
10808 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
|
10809 &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
|
10810 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
|
10811 Vstandard_translation_table_for_decode = Qnil; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
10812 |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22166
diff
changeset
|
10813 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
|
10814 &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
|
10815 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
|
10816 Vstandard_translation_table_for_encode = Qnil; |
17052 | 10817 |
88365 | 10818 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
|
10819 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
|
10820 While encoding, if a charset (car part of an element) is found, |
88365 | 10821 designate it with the escape sequence identifying revision (cdr part |
10822 of the element). */); | |
10823 Vcharset_revision_table = Qnil; | |
18180
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10824 |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10825 DEFVAR_LISP ("default-process-coding-system", |
5f4c4da24e75
(Vcoding_system_alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
18002
diff
changeset
|
10826 &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
|
10827 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
|
10828 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
|
10829 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
|
10830 Vdefault_process_coding_system = Qnil; |
19280
e755044718ee
(ENCODE_ISO_CHARACTER_DIMENSION1): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
19193
diff
changeset
|
10831 |
19365
d9374f5ebd3a
(CODING_FLAG_ISO_LATIN_EXTRA): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19285
diff
changeset
|
10832 DEFVAR_LISP ("latin-extra-code-table", &Vlatin_extra_code_table, |
88365 | 10833 doc: /* |
10834 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
|
10835 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
|
10836 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
|
10837 \(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
|
10838 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
|
10839 `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
|
10840 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
|
10841 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
|
10842 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
|
10843 |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10844 DEFVAR_LISP ("select-safe-coding-system-function", |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10845 &Vselect_safe_coding_system_function, |
88365 | 10846 doc: /* |
10847 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
|
10848 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10849 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
|
10850 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
|
10851 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
|
10852 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
|
10853 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
|
10854 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10855 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
|
10856 Vselect_safe_coding_system_function = Qnil; |
c600dea3b06b
Vselect_safe_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20708
diff
changeset
|
10857 |
48874
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10858 DEFVAR_BOOL ("coding-system-require-warning", |
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10859 &coding_system_require_warning, |
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10860 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
|
10861 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
|
10862 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
|
10863 `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
|
10864 coding_system_require_warning = 0; |
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10865 |
3002a87cc629
(coding_system_require_warning): New variable.
Kenichi Handa <handa@m17n.org>
parents:
48829
diff
changeset
|
10866 |
30292
14a9937df1f5
(syms_of_coding): Fix typo in spelling of variable
Gerd Moellmann <gerd@gnu.org>
parents:
30263
diff
changeset
|
10867 DEFVAR_BOOL ("inhibit-iso-escape-detection", |
30204
35aec8514228
(inhibit_iso_escape_detection): New variable.
Kenichi Handa <handa@m17n.org>
parents:
29985
diff
changeset
|
10868 &inhibit_iso_escape_detection, |
88365 | 10869 doc: /* |
101040 | 10870 If non-nil, Emacs ignores ISO-2022 escape sequences during code detection. |
10871 | |
10872 When Emacs reads text, it tries to detect how the text is encoded. | |
10873 This code detection is sensitive to escape sequences. If Emacs sees | |
10874 a valid ISO-2022 escape sequence, it assumes the text is encoded in one | |
10875 of the ISO2022 encodings, and decodes text by the corresponding coding | |
10876 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
|
10877 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10878 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
|
10879 a file as is. In such a case, you can set this variable to non-nil. |
101040 | 10880 Then the code detection will ignore any escape sequences, and no text is |
10881 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
|
10882 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
|
10883 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10884 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
|
10885 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
|
10886 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
|
10887 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
|
10888 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
|
10889 |
42351475da08
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
10890 The other way to read escape sequences in a file without decoding is |
101040 | 10891 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
|
10892 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
|
10893 inhibit_iso_escape_detection = 0; |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
10894 |
101040 | 10895 DEFVAR_BOOL ("inhibit-null-byte-detection", |
10896 &inhibit_null_byte_detection, | |
10897 doc: /* If non-nil, Emacs ignores null bytes on code detection. | |
10898 By default, Emacs treats it as binary data, and does not attempt to | |
10899 decode it. The effect is as if you specified `no-conversion' for | |
10900 reading that text. | |
10901 | |
10902 Set this to non-nil when a regular text happens to include null bytes. | |
10903 Examples are Index nodes of Info files and null-byte delimited output | |
10904 from GNU Find and GNU Grep. Emacs will then ignore the null bytes and | |
10905 decode text as usual. */); | |
10906 inhibit_null_byte_detection = 0; | |
10907 | |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
10908 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
|
10909 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
|
10910 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
|
10911 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
|
10912 |
7e576fc18303
(syms_of_coding) <translation-table-for-input>: Modify doc string to
Eli Zaretskii <eliz@gnu.org>
parents:
101776
diff
changeset
|
10913 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
|
10914 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
|
10915 internal character representation. */); |
48182
9474e269efd1
Reformat some DEFUNs so that etags works.
Dave Love <fx@gnu.org>
parents:
48125
diff
changeset
|
10916 Vtranslation_table_for_input = Qnil; |
89483 | 10917 |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10918 { |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10919 Lisp_Object args[coding_arg_max]; |
89483 | 10920 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
|
10921 int i; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10922 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10923 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
|
10924 args[i] = Qnil; |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10925 |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10926 plist[0] = intern_c_string (":name"); |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10927 plist[1] = args[coding_arg_name] = Qno_conversion; |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10928 plist[2] = intern_c_string (":mnemonic"); |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10929 plist[3] = args[coding_arg_mnemonic] = make_number ('='); |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10930 plist[4] = intern_c_string (":coding-type"); |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10931 plist[5] = args[coding_arg_coding_type] = Qraw_text; |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10932 plist[6] = intern_c_string (":ascii-compatible-p"); |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10933 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10934 plist[8] = intern_c_string (":default-char"); |
88456
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10935 plist[9] = args[coding_arg_default_char] = make_number (0); |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10936 plist[10] = intern_c_string (":for-unibyte"); |
89483 | 10937 plist[11] = args[coding_arg_for_unibyte] = Qt; |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10938 plist[12] = intern_c_string (":docstring"); |
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10939 plist[13] = make_pure_c_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
|
10940 \n\ |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10941 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
|
10942 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
|
10943 character."); |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10944 plist[14] = intern_c_string (":eol-type"); |
89483 | 10945 plist[15] = args[coding_arg_eol_type] = Qunix; |
10946 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
|
10947 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
|
10948 |
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10949 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
|
10950 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
|
10951 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
|
10952 /* This is already set. |
90214
460ee00505d5
(QCascii_compatible_p): New variable.
Kenichi Handa <handa@m17n.org>
parents:
90201
diff
changeset
|
10953 plist[7] = args[coding_arg_ascii_compatible_p] = Qt; */ |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10954 plist[8] = intern_c_string (":charset-list"); |
90011
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10955 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
|
10956 plist[11] = args[coding_arg_for_unibyte] = Qnil; |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
10957 plist[13] = make_pure_c_string ("No conversion on encoding, automatic conversion on decoding."); |
90011
26cef35a1562
(setup_coding_system): If coding_system is nil, use
Kenichi Handa <handa@m17n.org>
parents:
89976
diff
changeset
|
10958 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
|
10959 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
|
10960 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
|
10961 } |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10962 |
a7b309f72920
(coding_alloc_by_making_gap): Check the case that the
Kenichi Handa <handa@m17n.org>
parents:
88443
diff
changeset
|
10963 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
|
10964 |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10965 { |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10966 int i; |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10967 |
e911ca706166
(Fset_coding_system_priority): Doc fix. Update values
Kenichi Handa <handa@m17n.org>
parents:
89462
diff
changeset
|
10968 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
|
10969 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
|
10970 } |
90394
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10971 #if defined (MSDOS) || defined (WINDOWSNT) |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10972 system_eol_type = Qdos; |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10973 #else |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10974 system_eol_type = Qunix; |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10975 #endif |
263867fe7b55
(system_eol_type): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90380
diff
changeset
|
10976 staticpro (&system_eol_type); |
17052 | 10977 } |
10978 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10979 char * |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10980 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
|
10981 int error_number; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10982 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10983 char *str; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10984 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26240
diff
changeset
|
10985 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
|
10986 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
|
10987 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10988 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
|
10989 { |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10990 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
|
10991 Vlocale_coding_system, |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10992 0); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
10993 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
|
10994 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10995 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10996 return str; |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10997 } |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
26067
diff
changeset
|
10998 |
17052 | 10999 #endif /* emacs */ |
29184 | 11000 |
52401 | 11001 /* arch-tag: 3a3a2b01-5ff6-4071-9afe-f5b808d9229d |
11002 (do not change this comment) */ |