Mercurial > emacs
annotate src/coding.h @ 76673:a82fc200152b
Restore file with clarified legal status.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 23 Mar 2007 02:38:05 +0000 |
parents | a0b90c38e931 |
children | 2b9404c2f01f b8d9a391daf3 95d0cdf160ea |
rev | line source |
---|---|
17052 | 1 /* Header for coding system handler. |
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
74605
diff
changeset
|
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, |
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
74605
diff
changeset
|
3 2006, 2007 Free Software Foundation, Inc. |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
70783
diff
changeset
|
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
75364 | 5 2005, 2006, 2007 |
67658 | 6 National Institute of Advanced Industrial Science and Technology (AIST) |
7 Registration Number H14PRO021 | |
17052 | 8 |
17071 | 9 This file is part of GNU Emacs. |
10 | |
11 GNU Emacs is free software; you can redistribute it and/or modify | |
12 it under the terms of the GNU General Public License as published by | |
13 the Free Software Foundation; either version 2, or (at your option) | |
14 any later version. | |
17052 | 15 |
17071 | 16 GNU Emacs is distributed in the hope that it will be useful, |
17 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 GNU General Public License for more details. | |
17052 | 20 |
17071 | 21 You should have received a copy of the GNU General Public License |
22 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 23 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 Boston, MA 02110-1301, USA. */ | |
17052 | 25 |
29571
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
26 #ifndef EMACS_CODING_H |
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
27 #define EMACS_CODING_H |
17052 | 28 |
25378
2d5cc3c9d8dc
Include "ccl.h" instead of "../src/ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
24201
diff
changeset
|
29 #include "ccl.h" |
17052 | 30 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
31 /*** EMACS' INTERNAL FORMAT (emacs-mule) section ***/ |
17052 | 32 |
33 /* All code (1-byte) of Emacs' internal format is classified into one | |
34 of the followings. See also `charset.h'. */ | |
35 enum emacs_code_class_type | |
36 { | |
37 EMACS_control_code, /* Control codes in the range | |
38 0x00..0x1F and 0x7F except for the | |
39 following two codes. */ | |
40 EMACS_linefeed_code, /* 0x0A (linefeed) to denote | |
41 end-of-line. */ | |
42 EMACS_carriage_return_code, /* 0x0D (carriage-return) to be used | |
43 in selective display mode. */ | |
44 EMACS_ascii_code, /* ASCII characters. */ | |
45 EMACS_leading_code_2, /* Base leading code of official | |
46 TYPE9N character. */ | |
47 EMACS_leading_code_3, /* Base leading code of private TYPE9N | |
48 or official TYPE9Nx9N character. */ | |
49 EMACS_leading_code_4, /* Base leading code of private | |
50 TYPE9Nx9N character. */ | |
51 EMACS_invalid_code /* Invalid code, i.e. a base leading | |
52 code not yet assigned to any | |
53 charset, or a code of the range | |
54 0xA0..0xFF. */ | |
55 }; | |
56 | |
57 extern enum emacs_code_class_type emacs_code_class[256]; | |
58 | |
59 /*** ISO2022 section ***/ | |
60 | |
61 /* Macros to define code of control characters for ISO2022's functions. */ | |
62 /* code */ /* function */ | |
63 #define ISO_CODE_LF 0x0A /* line-feed */ | |
64 #define ISO_CODE_CR 0x0D /* carriage-return */ | |
65 #define ISO_CODE_SO 0x0E /* shift-out */ | |
66 #define ISO_CODE_SI 0x0F /* shift-in */ | |
67 #define ISO_CODE_SS2_7 0x19 /* single-shift-2 for 7-bit code */ | |
68 #define ISO_CODE_ESC 0x1B /* escape */ | |
69 #define ISO_CODE_SS2 0x8E /* single-shift-2 */ | |
70 #define ISO_CODE_SS3 0x8F /* single-shift-3 */ | |
71 #define ISO_CODE_CSI 0x9B /* control-sequence-introduce */ | |
72 | |
73 /* All code (1-byte) of ISO2022 is classified into one of the | |
74 followings. */ | |
75 enum iso_code_class_type | |
76 { | |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
77 ISO_control_0, /* Control codes in the range |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
78 0x00..0x1F and 0x7F, except for the |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
79 following 5 codes. */ |
17052 | 80 ISO_carriage_return, /* ISO_CODE_CR (0x0D) */ |
81 ISO_shift_out, /* ISO_CODE_SO (0x0E) */ | |
82 ISO_shift_in, /* ISO_CODE_SI (0x0F) */ | |
83 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */ | |
84 ISO_escape, /* ISO_CODE_SO (0x1B) */ | |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
85 ISO_control_1, /* Control codes in the range |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
86 0x80..0x9F, except for the |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
87 following 3 codes. */ |
17052 | 88 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */ |
89 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */ | |
90 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */ | |
91 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */ | |
92 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */ | |
93 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */ | |
94 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */ | |
95 }; | |
96 | |
97 /** The macros CODING_FLAG_ISO_XXX defines a flag bit of the `flags' | |
98 element in the structure `coding_system'. This information is used | |
99 while encoding a text to ISO2022. **/ | |
100 | |
101 /* If set, produce short-form designation sequence (e.g. ESC $ A) | |
102 instead of long-form sequence (e.g. ESC $ ( A). */ | |
103 #define CODING_FLAG_ISO_SHORT_FORM 0x0001 | |
104 | |
105 /* If set, reset graphic planes and registers at end-of-line to the | |
106 initial state. */ | |
107 #define CODING_FLAG_ISO_RESET_AT_EOL 0x0002 | |
108 | |
109 /* If set, reset graphic planes and registers before any control | |
110 characters to the initial state. */ | |
111 #define CODING_FLAG_ISO_RESET_AT_CNTL 0x0004 | |
112 | |
113 /* If set, encode by 7-bit environment. */ | |
114 #define CODING_FLAG_ISO_SEVEN_BITS 0x0008 | |
115 | |
116 /* If set, use locking-shift function. */ | |
117 #define CODING_FLAG_ISO_LOCKING_SHIFT 0x0010 | |
118 | |
119 /* If set, use single-shift function. Overwrite | |
120 CODING_FLAG_ISO_LOCKING_SHIFT. */ | |
121 #define CODING_FLAG_ISO_SINGLE_SHIFT 0x0020 | |
122 | |
123 /* If set, designate JISX0201-Roman instead of ASCII. */ | |
124 #define CODING_FLAG_ISO_USE_ROMAN 0x0040 | |
125 | |
126 /* If set, designate JISX0208-1978 instead of JISX0208-1983. */ | |
127 #define CODING_FLAG_ISO_USE_OLDJIS 0x0080 | |
128 | |
129 /* If set, do not produce ISO6429's direction specifying sequence. */ | |
130 #define CODING_FLAG_ISO_NO_DIRECTION 0x0100 | |
131 | |
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
132 /* If set, assume designation states are reset at beginning of line on |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
133 output. */ |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
134 #define CODING_FLAG_ISO_INIT_AT_BOL 0x0200 |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
135 |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
136 /* If set, designation sequence should be placed at beginning of line |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
137 on output. */ |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
138 #define CODING_FLAG_ISO_DESIGNATE_AT_BOL 0x0400 |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
139 |
36088 | 140 /* If set, do not encode unsafe characters on output. */ |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
141 #define CODING_FLAG_ISO_SAFE 0x0800 |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
142 |
19364
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
143 /* If set, extra latin codes (128..159) are accepted as a valid code |
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
144 on input. */ |
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
145 #define CODING_FLAG_ISO_LATIN_EXTRA 0x1000 |
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
146 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
147 /* If set, use designation escape sequence. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
148 #define CODING_FLAG_ISO_DESIGNATION 0x10000 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
149 |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
150 /* A character to be produced on output if encoding of the original |
51139
3d3ffeef8c92
(CODING_REPLACEMENT_CHARACTER): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
48875
diff
changeset
|
151 character is inhibitted by CODING_MODE_INHIBIT_UNENCODABLE_CHAR. |
3d3ffeef8c92
(CODING_REPLACEMENT_CHARACTER): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
48875
diff
changeset
|
152 It must be an ASCII character. */ |
3d3ffeef8c92
(CODING_REPLACEMENT_CHARACTER): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
48875
diff
changeset
|
153 #define CODING_REPLACEMENT_CHARACTER '?' |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
154 |
17052 | 155 /* Structure of the field `spec.iso2022' in the structure `coding_system'. */ |
156 struct iso2022_spec | |
157 { | |
158 /* The current graphic register invoked to each graphic plane. */ | |
159 int current_invocation[2]; | |
160 | |
161 /* The current charset designated to each graphic register. */ | |
162 int current_designation[4]; | |
163 | |
164 /* A charset initially designated to each graphic register. */ | |
165 int initial_designation[4]; | |
166 | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
167 /* If not -1, it is a graphic register specified in an invalid |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
168 designation sequence. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
169 int last_invalid_designation_register; |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
170 |
17052 | 171 /* A graphic register to which each charset should be designated. */ |
18001
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
172 unsigned char requested_designation[MAX_CHARSET + 1]; |
17052 | 173 |
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
174 /* A revision number to be specified for each charset on encoding. |
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
175 The value 255 means no revision number for the corresponding |
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
176 charset. */ |
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
177 unsigned char charset_revision_number[MAX_CHARSET + 1]; |
19284
dd1d7096f59d
(struct iso2022_spec): New member expected_charsets.
Kenichi Handa <handa@m17n.org>
parents:
19279
diff
changeset
|
178 |
17052 | 179 /* Set to 1 temporarily only when graphic register 2 or 3 is invoked |
180 by single-shift while encoding. */ | |
181 int single_shifting; | |
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
182 |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
183 /* Set to 1 temporarily only when processing at beginning of line. */ |
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
184 int bol; |
17052 | 185 }; |
186 | |
187 /* Macros to access each field in the structure `spec.iso2022'. */ | |
188 #define CODING_SPEC_ISO_INVOCATION(coding, plane) \ | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
189 (coding)->spec.iso2022.current_invocation[plane] |
17052 | 190 #define CODING_SPEC_ISO_DESIGNATION(coding, reg) \ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
191 (coding)->spec.iso2022.current_designation[reg] |
17052 | 192 #define CODING_SPEC_ISO_INITIAL_DESIGNATION(coding, reg) \ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
193 (coding)->spec.iso2022.initial_designation[reg] |
17052 | 194 #define CODING_SPEC_ISO_REQUESTED_DESIGNATION(coding, charset) \ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
195 (coding)->spec.iso2022.requested_designation[charset] |
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
196 #define CODING_SPEC_ISO_REVISION_NUMBER(coding, charset) \ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
197 (coding)->spec.iso2022.charset_revision_number[charset] |
17052 | 198 #define CODING_SPEC_ISO_SINGLE_SHIFTING(coding) \ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
199 (coding)->spec.iso2022.single_shifting |
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
200 #define CODING_SPEC_ISO_BOL(coding) \ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
201 (coding)->spec.iso2022.bol |
17052 | 202 |
18001
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
203 /* A value which may appear in |
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
204 coding->spec.iso2022.requested_designation indicating that the |
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
205 corresponding charset does not request any graphic register to be |
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
206 designated. */ |
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
207 #define CODING_SPEC_ISO_NO_REQUESTED_DESIGNATION 4 |
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
208 |
17052 | 209 /* Return a charset which is currently designated to the graphic plane |
210 PLANE in the coding-system CODING. */ | |
17724
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
211 #define CODING_SPEC_ISO_PLANE_CHARSET(coding, plane) \ |
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
212 ((CODING_SPEC_ISO_INVOCATION (coding, plane) < 0) \ |
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
213 ? -1 \ |
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
214 : CODING_SPEC_ISO_DESIGNATION (coding, \ |
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
215 CODING_SPEC_ISO_INVOCATION (coding, plane))) |
17052 | 216 |
217 /*** BIG5 section ***/ | |
218 | |
219 /* Macros to denote each type of BIG5 coding system. */ | |
220 #define CODING_FLAG_BIG5_HKU 0x00 /* BIG5-HKU is one of variants of | |
221 BIG5 developed by Hong Kong | |
222 University. */ | |
223 #define CODING_FLAG_BIG5_ETEN 0x01 /* BIG5_ETen is one of variants | |
224 of BIG5 developed by the | |
225 company ETen in Taiwan. */ | |
226 | |
227 /*** GENERAL section ***/ | |
228 | |
229 /* Types of coding system. */ | |
230 enum coding_type | |
231 { | |
232 coding_type_no_conversion, /* A coding system which requires no | |
233 conversion for reading and writing | |
234 including end-of-line format. */ | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
235 coding_type_emacs_mule, /* A coding system used in Emacs' |
17052 | 236 buffer and string. Requires no |
237 conversion for reading and writing | |
238 except for end-of-line format. */ | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
239 coding_type_undecided, /* A coding system which requires |
17052 | 240 automatic detection of a real |
241 coding system. */ | |
242 coding_type_sjis, /* SJIS coding system for Japanese. */ | |
243 coding_type_iso2022, /* Any coding system of ISO2022 | |
244 variants. */ | |
245 coding_type_big5, /* BIG5 coding system for Chinese. */ | |
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
246 coding_type_ccl, /* The coding system of which decoder |
17052 | 247 and encoder are written in CCL. */ |
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
248 coding_type_raw_text /* A coding system for a text |
36088 | 249 containing random 8-bit code which |
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
250 does not require code conversion |
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
251 except for end-of-line format. */ |
17052 | 252 }; |
253 | |
254 /* Formats of end-of-line. */ | |
255 #define CODING_EOL_LF 0 /* Line-feed only, same as Emacs' | |
256 internal format. */ | |
257 #define CODING_EOL_CRLF 1 /* Sequence of carriage-return and | |
258 line-feed. */ | |
259 #define CODING_EOL_CR 2 /* Carriage-return only. */ | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
260 #define CODING_EOL_UNDECIDED 3 /* This value is used to denote the |
17052 | 261 eol-type is not yet decided. */ |
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
262 #define CODING_EOL_INCONSISTENT 4 /* This value is used to denote the |
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
263 eol-type is not consistent |
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
264 through the file. */ |
17052 | 265 |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
266 /* 1 iff composing. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
267 #define COMPOSING_P(coding) ((int) coding->composing > (int) COMPOSITION_NO) |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
268 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
269 #define COMPOSITION_DATA_SIZE 4080 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
270 #define COMPOSITION_DATA_MAX_BUNCH_LENGTH (4 + MAX_COMPOSITION_COMPONENTS*2) |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
271 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
272 /* Data structure to hold information about compositions of text that |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
273 is being decoded or encode. ISO 2022 base code conversion routines |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
274 handle special ESC sequences for composition specification. But, |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
275 they can't get/put such information directly from/to a buffer in |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
276 the deepest place. So, they store or retrieve the information |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
277 through this structure. |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
278 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
279 The encoder stores the information in this structure when it meets |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
280 ESC sequences for composition while encoding codes, then, after all |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
281 text codes are encoded, puts `composition' properties on the text |
36088 | 282 by referring to the structure. |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
283 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
284 The decoder at first stores the information of a text to be |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
285 decoded, then, while decoding codes, generates ESC sequences for |
36088 | 286 composition at proper places by referring to the structure. */ |
17052 | 287 |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
288 struct composition_data |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
289 { |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
290 /* The character position of the first character to be encoded or |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
291 decoded. START and END (see below) are relative to this |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
292 position. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
293 int char_offset; |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
294 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
295 /* The composition data. These elements are repeated for each |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
296 composition: |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
297 LENGTH START END METHOD [ COMPONENT ... ] |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
298 where, |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
299 LENGTH is the number of elements for this composition. |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
300 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
301 START and END are starting and ending character positions of |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
302 the composition relative to `char_offset'. |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
303 |
36088 | 304 METHOD is one of `enum composing_status' specifying the way of |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
305 composition. |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
306 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
307 COMPONENT is a character or an encoded composition rule. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
308 int data[COMPOSITION_DATA_SIZE]; |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
309 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
310 /* The number of elements in `data' currently used. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
311 int used; |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
312 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
313 /* Pointers to the previous and next structures. When `data' is |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
314 filled up, another structure is allocated and linked in `next'. |
36088 | 315 The new structure has backward link to this structure in `prev'. |
316 The number of chained structures depends on how many compositions | |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
317 the text being encoded or decoded contains. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
318 struct composition_data *prev, *next; |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
319 }; |
17052 | 320 |
30832
b0b1acff966b
(conversion_buffer_size, conversion_buffer)
Kenichi Handa <handa@m17n.org>
parents:
30680
diff
changeset
|
321 /* Macros used for the member `result' of the struct |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
322 coding_system. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
323 #define CODING_FINISH_NORMAL 0 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
324 #define CODING_FINISH_INSUFFICIENT_SRC 1 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
325 #define CODING_FINISH_INSUFFICIENT_DST 2 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
326 #define CODING_FINISH_INCONSISTENT_EOL 3 |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
327 #define CODING_FINISH_INSUFFICIENT_CMP 4 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
328 #define CODING_FINISH_INTERRUPT 5 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
329 |
21031 | 330 /* Macros used for the member `mode' of the struct coding_system. */ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
331 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
332 /* If set, recover the original CR or LF of the already decoded text |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
333 when the decoding routine encounters an inconsistent eol format. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
334 #define CODING_MODE_INHIBIT_INCONSISTENT_EOL 0x01 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
335 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
336 /* If set, the decoding/encoding routines treat the current data as |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
337 the last block of the whole text to be converted, and do |
36088 | 338 appropriate finishing job. */ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
339 #define CODING_MODE_LAST_BLOCK 0x02 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
340 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
341 /* If set, it means that the current source text is in a buffer which |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
342 enables selective display. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
343 #define CODING_MODE_SELECTIVE_DISPLAY 0x04 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
344 |
51139
3d3ffeef8c92
(CODING_REPLACEMENT_CHARACTER): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
48875
diff
changeset
|
345 /* If set, replace unencodabae characters by `?' on encoding. */ |
3d3ffeef8c92
(CODING_REPLACEMENT_CHARACTER): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
48875
diff
changeset
|
346 #define CODING_MODE_INHIBIT_UNENCODABLE_CHAR 0x08 |
3d3ffeef8c92
(CODING_REPLACEMENT_CHARACTER): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
48875
diff
changeset
|
347 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
348 /* This flag is used by the decoding/encoding routines on the fly. If |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
349 set, it means that right-to-left text is being processed. */ |
51139
3d3ffeef8c92
(CODING_REPLACEMENT_CHARACTER): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
48875
diff
changeset
|
350 #define CODING_MODE_DIRECTION 0x10 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
351 |
17052 | 352 struct coding_system |
353 { | |
354 /* Type of the coding system. */ | |
355 enum coding_type type; | |
356 | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
357 /* Type of end-of-line format (LF, CRLF, or CR) of the coding system. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
358 int eol_type; |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
359 |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
360 /* Flag bits of the coding system. The meaning of each bit is common |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
361 to all types of coding systems. */ |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
362 unsigned int common_flags; |
17052 | 363 |
364 /* Flag bits of the coding system. The meaning of each bit depends | |
365 on the type of the coding system. */ | |
366 unsigned int flags; | |
367 | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
368 /* Mode bits of the coding system. See the comments of the macros |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
369 CODING_MODE_XXX. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
370 unsigned int mode; |
17052 | 371 |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
372 /* The current status of composition handling. */ |
17052 | 373 int composing; |
374 | |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
375 /* 1 iff the next character is a composition rule. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
376 int composition_rule_follows; |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
377 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
378 /* Information of compositions are stored here on decoding and set |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
379 in advance on encoding. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
380 struct composition_data *cmp_data; |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
381 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
382 /* Index to cmp_data->data for the first element for the current |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
383 composition. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
384 int cmp_data_start; |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
385 |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
386 /* Index to cmp_data->data for the current element for the current |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
387 composition. */ |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
388 int cmp_data_index; |
23324
4c5f12c6041c
(struct coding_system): New member composed_chars.
Kenichi Handa <handa@m17n.org>
parents:
23278
diff
changeset
|
389 |
17052 | 390 /* Detailed information specific to each type of coding system. */ |
391 union spec | |
392 { | |
393 struct iso2022_spec iso2022; | |
394 struct ccl_spec ccl; /* Defined in ccl.h. */ | |
395 } spec; | |
396 | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
397 /* Index number of coding category of the coding system. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
398 int category_idx; |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
399 |
29106
a0dc7fa92f5d
(struct coding_system): Add a comment for src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
29006
diff
changeset
|
400 /* The following two members specify how characters 128..159 are |
a0dc7fa92f5d
(struct coding_system): Add a comment for src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
29006
diff
changeset
|
401 represented in source and destination text respectively. 1 means |
a0dc7fa92f5d
(struct coding_system): Add a comment for src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
29006
diff
changeset
|
402 they are represented by 2-byte sequence, 0 means they are |
a0dc7fa92f5d
(struct coding_system): Add a comment for src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
29006
diff
changeset
|
403 represented by 1-byte as is (see the comment in charset.h). */ |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
404 unsigned src_multibyte : 1; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
405 unsigned dst_multibyte : 1; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
406 |
21320
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
407 /* How may heading bytes we can skip for decoding. This is set to |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
408 -1 in setup_coding_system, and updated by detect_coding. So, |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
409 when this is equal to the byte length of the text being |
278c256defc6
(struct coding_system): Comment for the member
Kenichi Handa <handa@m17n.org>
parents:
21051
diff
changeset
|
410 converted, we can skip the actual conversion process. */ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
411 int heading_ascii; |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
412 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
413 /* The following members are set by encoding/decoding routine. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
414 int produced, produced_char, consumed, consumed_char; |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
415 |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
416 /* Number of error source data found in a decoding routine. */ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
417 int errors; |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
418 |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
419 /* Finish status of code conversion. It should be one of macros |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
420 CODING_FINISH_XXXX. */ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
421 int result; |
20930
1331679fe704
(struct coding_system): New member fake_multibyte.
Kenichi Handa <handa@m17n.org>
parents:
20717
diff
changeset
|
422 |
35530
cb627d09f8c3
(struct coding_system): New member suppress_error.
Kenichi Handa <handa@m17n.org>
parents:
34152
diff
changeset
|
423 /* If nonzero, suppress error notification. */ |
cb627d09f8c3
(struct coding_system): New member suppress_error.
Kenichi Handa <handa@m17n.org>
parents:
34152
diff
changeset
|
424 int suppress_error; |
cb627d09f8c3
(struct coding_system): New member suppress_error.
Kenichi Handa <handa@m17n.org>
parents:
34152
diff
changeset
|
425 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
426 /* The following members are all Lisp symbols. We don't have to |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
427 protect them from GC because the current garbage collection |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
428 doesn't relocate Lisp symbols. But, when it is changed, we must |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
429 find a way to protect them. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
430 |
17052 | 431 /* Backward pointer to the Lisp symbol of the coding system. */ |
432 Lisp_Object symbol; | |
433 | |
434 /* Lisp function (symbol) to be called after decoding to do | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
435 additional conversion, or nil. */ |
17052 | 436 Lisp_Object post_read_conversion; |
437 | |
438 /* Lisp function (symbol) to be called before encoding to do | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
439 additional conversion, or nil. */ |
17052 | 440 Lisp_Object pre_write_conversion; |
441 | |
22118
42e2ffa98618
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21901
diff
changeset
|
442 /* Character translation tables to look up, or nil. */ |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
443 Lisp_Object translation_table_for_decode; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
444 Lisp_Object translation_table_for_encode; |
17052 | 445 }; |
446 | |
70703
85b353760b1c
(CODING_ASCII_INCOMPATIBLE_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
70519
diff
changeset
|
447 /* Mask bits for (struct coding_system *)->common_flags. */ |
85b353760b1c
(CODING_ASCII_INCOMPATIBLE_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
70519
diff
changeset
|
448 #define CODING_REQUIRE_FLUSHING_MASK 0x01 |
85b353760b1c
(CODING_ASCII_INCOMPATIBLE_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
70519
diff
changeset
|
449 #define CODING_REQUIRE_DECODING_MASK 0x02 |
85b353760b1c
(CODING_ASCII_INCOMPATIBLE_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
70519
diff
changeset
|
450 #define CODING_REQUIRE_ENCODING_MASK 0x04 |
85b353760b1c
(CODING_ASCII_INCOMPATIBLE_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
70519
diff
changeset
|
451 #define CODING_REQUIRE_DETECTION_MASK 0x08 |
85b353760b1c
(CODING_ASCII_INCOMPATIBLE_MASK): New macro.
Kenichi Handa <handa@m17n.org>
parents:
70519
diff
changeset
|
452 #define CODING_ASCII_INCOMPATIBLE_MASK 0x10 |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
453 |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
454 /* Return 1 if the coding system CODING requires specific code to be |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
455 attached at the tail of converted text. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
456 #define CODING_REQUIRE_FLUSHING(coding) \ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
457 ((coding)->common_flags & CODING_REQUIRE_FLUSHING_MASK) |
17052 | 458 |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
459 /* Return 1 if the coding system CODING requires code conversion on |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
460 decoding. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
461 #define CODING_REQUIRE_DECODING(coding) \ |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
462 ((coding)->dst_multibyte \ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
463 || (coding)->common_flags & CODING_REQUIRE_DECODING_MASK) |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
464 |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
465 /* Return 1 if the coding system CODING requires code conversion on |
70783
216c04e10ca3
(CODING_REQUIRE_ENCODING): Elaborate the comment.
Eli Zaretskii <eliz@gnu.org>
parents:
70703
diff
changeset
|
466 encoding. |
216c04e10ca3
(CODING_REQUIRE_ENCODING): Elaborate the comment.
Eli Zaretskii <eliz@gnu.org>
parents:
70703
diff
changeset
|
467 The non-multibyte part of the condition is to support encoding of |
216c04e10ca3
(CODING_REQUIRE_ENCODING): Elaborate the comment.
Eli Zaretskii <eliz@gnu.org>
parents:
70703
diff
changeset
|
468 unibyte strings/buffers generated by string-as-unibyte or |
216c04e10ca3
(CODING_REQUIRE_ENCODING): Elaborate the comment.
Eli Zaretskii <eliz@gnu.org>
parents:
70703
diff
changeset
|
469 (set-buffer-multibyte nil) from multibyte strings/buffers. */ |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
470 #define CODING_REQUIRE_ENCODING(coding) \ |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
471 ((coding)->src_multibyte \ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
472 || (coding)->common_flags & CODING_REQUIRE_ENCODING_MASK) |
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
473 |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
474 /* Return 1 if the coding system CODING requires some kind of code |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
475 detection. */ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
476 #define CODING_REQUIRE_DETECTION(coding) \ |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
477 ((coding)->common_flags & CODING_REQUIRE_DETECTION_MASK) |
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
478 |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
479 /* Return 1 if the coding system CODING requires code conversion on |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
480 decoding or some kind of code detection. */ |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
481 #define CODING_MAY_REQUIRE_DECODING(coding) \ |
29006
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
482 (CODING_REQUIRE_DECODING (coding) \ |
bf92db6e609a
(enum iso_code_class_type): Member ISO_control_code is
Kenichi Handa <handa@m17n.org>
parents:
28512
diff
changeset
|
483 || CODING_REQUIRE_DETECTION (coding)) |
17052 | 484 |
485 /* Index for each coding category in `coding_category_table' */ | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
486 #define CODING_CATEGORY_IDX_EMACS_MULE 0 |
17052 | 487 #define CODING_CATEGORY_IDX_SJIS 1 |
488 #define CODING_CATEGORY_IDX_ISO_7 2 | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
489 #define CODING_CATEGORY_IDX_ISO_7_TIGHT 3 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
490 #define CODING_CATEGORY_IDX_ISO_8_1 4 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
491 #define CODING_CATEGORY_IDX_ISO_8_2 5 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
492 #define CODING_CATEGORY_IDX_ISO_7_ELSE 6 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
493 #define CODING_CATEGORY_IDX_ISO_8_ELSE 7 |
22873
79b98ccffdfc
(CODING_CATEGORY_IDX_CCL): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22620
diff
changeset
|
494 #define CODING_CATEGORY_IDX_CCL 8 |
79b98ccffdfc
(CODING_CATEGORY_IDX_CCL): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22620
diff
changeset
|
495 #define CODING_CATEGORY_IDX_BIG5 9 |
28021
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
496 #define CODING_CATEGORY_IDX_UTF_8 10 |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
497 #define CODING_CATEGORY_IDX_UTF_16_BE 11 |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
498 #define CODING_CATEGORY_IDX_UTF_16_LE 12 |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
499 #define CODING_CATEGORY_IDX_RAW_TEXT 13 |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
500 #define CODING_CATEGORY_IDX_BINARY 14 |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
501 #define CODING_CATEGORY_IDX_MAX 15 |
17052 | 502 |
503 /* Definitions of flag bits returned by the function | |
504 detect_coding_mask (). */ | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
505 #define CODING_CATEGORY_MASK_EMACS_MULE (1 << CODING_CATEGORY_IDX_EMACS_MULE) |
17052 | 506 #define CODING_CATEGORY_MASK_SJIS (1 << CODING_CATEGORY_IDX_SJIS) |
507 #define CODING_CATEGORY_MASK_ISO_7 (1 << CODING_CATEGORY_IDX_ISO_7) | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
508 #define CODING_CATEGORY_MASK_ISO_7_TIGHT (1 << CODING_CATEGORY_IDX_ISO_7_TIGHT) |
17052 | 509 #define CODING_CATEGORY_MASK_ISO_8_1 (1 << CODING_CATEGORY_IDX_ISO_8_1) |
510 #define CODING_CATEGORY_MASK_ISO_8_2 (1 << CODING_CATEGORY_IDX_ISO_8_2) | |
18786
e44570b2a6a0
(CODING_CATEGORY_IDX_ISO_7_ELSE): This macro is deleted
Kenichi Handa <handa@m17n.org>
parents:
18649
diff
changeset
|
511 #define CODING_CATEGORY_MASK_ISO_7_ELSE (1 << CODING_CATEGORY_IDX_ISO_7_ELSE) |
e44570b2a6a0
(CODING_CATEGORY_IDX_ISO_7_ELSE): This macro is deleted
Kenichi Handa <handa@m17n.org>
parents:
18649
diff
changeset
|
512 #define CODING_CATEGORY_MASK_ISO_8_ELSE (1 << CODING_CATEGORY_IDX_ISO_8_ELSE) |
22873
79b98ccffdfc
(CODING_CATEGORY_IDX_CCL): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22620
diff
changeset
|
513 #define CODING_CATEGORY_MASK_CCL (1 << CODING_CATEGORY_IDX_CCL) |
19689
08b92fab92af
Minor reordering of macros.
Richard M. Stallman <rms@gnu.org>
parents:
19611
diff
changeset
|
514 #define CODING_CATEGORY_MASK_BIG5 (1 << CODING_CATEGORY_IDX_BIG5) |
28021
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
515 #define CODING_CATEGORY_MASK_UTF_8 (1 << CODING_CATEGORY_IDX_UTF_8) |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
516 #define CODING_CATEGORY_MASK_UTF_16_BE (1 << CODING_CATEGORY_IDX_UTF_16_BE) |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
517 #define CODING_CATEGORY_MASK_UTF_16_LE (1 << CODING_CATEGORY_IDX_UTF_16_LE) |
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
518 #define CODING_CATEGORY_MASK_RAW_TEXT (1 << CODING_CATEGORY_IDX_RAW_TEXT) |
19096
0724276f0e01
(CODING_CATEGORY_MASK_BINARY): New macro.
Kenichi Handa <handa@m17n.org>
parents:
18975
diff
changeset
|
519 #define CODING_CATEGORY_MASK_BINARY (1 << CODING_CATEGORY_IDX_BINARY) |
17052 | 520 |
521 /* This value is returned if detect_coding_mask () find nothing other | |
522 than ASCII characters. */ | |
523 #define CODING_CATEGORY_MASK_ANY \ | |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
524 ( CODING_CATEGORY_MASK_EMACS_MULE \ |
17052 | 525 | CODING_CATEGORY_MASK_SJIS \ |
526 | CODING_CATEGORY_MASK_ISO_7 \ | |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
527 | CODING_CATEGORY_MASK_ISO_7_TIGHT \ |
17052 | 528 | CODING_CATEGORY_MASK_ISO_8_1 \ |
529 | CODING_CATEGORY_MASK_ISO_8_2 \ | |
18786
e44570b2a6a0
(CODING_CATEGORY_IDX_ISO_7_ELSE): This macro is deleted
Kenichi Handa <handa@m17n.org>
parents:
18649
diff
changeset
|
530 | CODING_CATEGORY_MASK_ISO_7_ELSE \ |
e44570b2a6a0
(CODING_CATEGORY_IDX_ISO_7_ELSE): This macro is deleted
Kenichi Handa <handa@m17n.org>
parents:
18649
diff
changeset
|
531 | CODING_CATEGORY_MASK_ISO_8_ELSE \ |
22873
79b98ccffdfc
(CODING_CATEGORY_IDX_CCL): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22620
diff
changeset
|
532 | CODING_CATEGORY_MASK_CCL \ |
28021
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
533 | CODING_CATEGORY_MASK_BIG5 \ |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
534 | CODING_CATEGORY_MASK_UTF_8 \ |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
535 | CODING_CATEGORY_MASK_UTF_16_BE \ |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
536 | CODING_CATEGORY_MASK_UTF_16_LE) |
17052 | 537 |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
538 #define CODING_CATEGORY_MASK_ISO_7BIT \ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
539 (CODING_CATEGORY_MASK_ISO_7 | CODING_CATEGORY_MASK_ISO_7_TIGHT) |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
540 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
541 #define CODING_CATEGORY_MASK_ISO_8BIT \ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
542 (CODING_CATEGORY_MASK_ISO_8_1 | CODING_CATEGORY_MASK_ISO_8_2) |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
543 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
544 #define CODING_CATEGORY_MASK_ISO_SHIFT \ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
545 (CODING_CATEGORY_MASK_ISO_7_ELSE | CODING_CATEGORY_MASK_ISO_8_ELSE) |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
546 |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
547 #define CODING_CATEGORY_MASK_ISO \ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
548 ( CODING_CATEGORY_MASK_ISO_7BIT \ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
549 | CODING_CATEGORY_MASK_ISO_SHIFT \ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
550 | CODING_CATEGORY_MASK_ISO_8BIT) |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
551 |
28021
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
552 #define CODING_CATEGORY_MASK_UTF_16_BE_LE \ |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
553 (CODING_CATEGORY_MASK_UTF_16_BE | CODING_CATEGORY_MASK_UTF_16_LE) |
e34a172ee77e
(CODING_CATEGORY_IDX_UTF_8)
Kenichi Handa <handa@m17n.org>
parents:
26846
diff
changeset
|
554 |
17052 | 555 /* Macros to decode or encode a character of JISX0208 in SJIS. S1 and |
556 S2 are the 1st and 2nd position-codes of JISX0208 in SJIS coding | |
557 system. C1 and C2 are the 1st and 2nd position codes of Emacs' | |
558 internal format. */ | |
559 | |
560 #define DECODE_SJIS(s1, s2, c1, c2) \ | |
561 do { \ | |
562 if (s2 >= 0x9F) \ | |
563 c1 = s1 * 2 - (s1 >= 0xE0 ? 0x160 : 0xE0), \ | |
564 c2 = s2 - 0x7E; \ | |
565 else \ | |
566 c1 = s1 * 2 - ((s1 >= 0xE0) ? 0x161 : 0xE1), \ | |
567 c2 = s2 - ((s2 >= 0x7F) ? 0x20 : 0x1F); \ | |
568 } while (0) | |
569 | |
570 #define ENCODE_SJIS(c1, c2, s1, s2) \ | |
571 do { \ | |
572 if (c1 & 1) \ | |
573 s1 = c1 / 2 + ((c1 < 0x5F) ? 0x71 : 0xB1), \ | |
574 s2 = c2 + ((c2 >= 0x60) ? 0x20 : 0x1F); \ | |
575 else \ | |
576 s1 = c1 / 2 + ((c1 < 0x5F) ? 0x70 : 0xB0), \ | |
577 s2 = c2 + 0x7E; \ | |
578 } while (0) | |
579 | |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
580 /* Encode the file name NAME using the specified coding system |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
581 for file names, if any. */ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
582 #define ENCODE_FILE(name) \ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
583 (! NILP (Vfile_name_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
584 && !EQ (Vfile_name_coding_system, make_number (0)) \ |
22342 | 585 ? code_convert_string_norecord (name, Vfile_name_coding_system, 1) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
586 : (! NILP (Vdefault_file_name_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
587 && !EQ (Vdefault_file_name_coding_system, make_number (0)) \ |
22342 | 588 ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 1) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
589 : name)) |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
590 |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
591 /* Decode the file name NAME using the specified coding system |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
592 for file names, if any. */ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
593 #define DECODE_FILE(name) \ |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
594 (! NILP (Vfile_name_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
595 && !EQ (Vfile_name_coding_system, make_number (0)) \ |
22342 | 596 ? code_convert_string_norecord (name, Vfile_name_coding_system, 0) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
597 : (! NILP (Vdefault_file_name_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
598 && !EQ (Vdefault_file_name_coding_system, make_number (0)) \ |
22342 | 599 ? code_convert_string_norecord (name, Vdefault_file_name_coding_system, 0) \ |
21051
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
600 : name)) |
b5844e2bf088
(ENCODE_FILE): Moved from fileio.c. Use
Kenichi Handa <handa@m17n.org>
parents:
21031
diff
changeset
|
601 |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
602 /* Encode the string STR using the specified coding system |
60657
aa6d20307ac6
(ENCODE_SYSTEM, DECODE_SYSTEM) [!WINDOWSNT]: Use the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58636
diff
changeset
|
603 for system functions, if any. */ |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
604 #define ENCODE_SYSTEM(str) \ |
41323
084520255528
(Vw32_system_coding_system) [WINDOWSNT]: Remove.
Jason Rumney <jasonr@gnu.org>
parents:
39574
diff
changeset
|
605 (! NILP (Vlocale_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
606 && !EQ (Vlocale_coding_system, make_number (0)) \ |
41323
084520255528
(Vw32_system_coding_system) [WINDOWSNT]: Remove.
Jason Rumney <jasonr@gnu.org>
parents:
39574
diff
changeset
|
607 ? code_convert_string_norecord (str, Vlocale_coding_system, 1) \ |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
608 : str) |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
609 |
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
610 /* Decode the string STR using the specified coding system |
60657
aa6d20307ac6
(ENCODE_SYSTEM, DECODE_SYSTEM) [!WINDOWSNT]: Use the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58636
diff
changeset
|
611 for system functions, if any. */ |
66463
e791e75479c9
(DECODE_SYSTEM): Fix argument name; name->str.
Kenichi Handa <handa@m17n.org>
parents:
64770
diff
changeset
|
612 #define DECODE_SYSTEM(str) \ |
41323
084520255528
(Vw32_system_coding_system) [WINDOWSNT]: Remove.
Jason Rumney <jasonr@gnu.org>
parents:
39574
diff
changeset
|
613 (! NILP (Vlocale_coding_system) \ |
58453
04580c50dd1c
(ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
614 && !EQ (Vlocale_coding_system, make_number (0)) \ |
41323
084520255528
(Vw32_system_coding_system) [WINDOWSNT]: Remove.
Jason Rumney <jasonr@gnu.org>
parents:
39574
diff
changeset
|
615 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \ |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
616 : str) |
39574
bdd381bc9eb0
(ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
Gerd Moellmann <gerd@gnu.org>
parents:
36088
diff
changeset
|
617 |
51407 | 618 #define ENCODE_UTF_8(str) code_convert_string_norecord (str, Qutf_8, 1) |
619 | |
17052 | 620 /* Extern declarations. */ |
46549
f0ddb5c7cf46
(decode_coding, encode_coding, detect_coding,
Ken Raeburn <raeburn@raeburn.org>
parents:
43486
diff
changeset
|
621 extern int decode_coding P_ ((struct coding_system *, const unsigned char *, |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
622 unsigned char *, int, int)); |
46549
f0ddb5c7cf46
(decode_coding, encode_coding, detect_coding,
Ken Raeburn <raeburn@raeburn.org>
parents:
43486
diff
changeset
|
623 extern int encode_coding P_ ((struct coding_system *, const unsigned char *, |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
624 unsigned char *, int, int)); |
26846
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
625 extern void coding_save_composition P_ ((struct coding_system *, int, int, |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
626 Lisp_Object)); |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
627 extern void coding_free_composition_data P_ ((struct coding_system *)); |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
628 extern void coding_adjust_composition_offset P_ ((struct coding_system *, |
1a0f5960e65e
(emacs_code_class_type): Delete the member
Kenichi Handa <handa@m17n.org>
parents:
26088
diff
changeset
|
629 int)); |
29274
05e83ef9e129
(coding_allocate_composition_data): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
29106
diff
changeset
|
630 extern void coding_allocate_composition_data P_ ((struct coding_system *, |
05e83ef9e129
(coding_allocate_composition_data): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
29106
diff
changeset
|
631 int)); |
05e83ef9e129
(coding_allocate_composition_data): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
29106
diff
changeset
|
632 extern void coding_restore_composition P_ ((struct coding_system *, |
05e83ef9e129
(coding_allocate_composition_data): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
29106
diff
changeset
|
633 Lisp_Object)); |
21515 | 634 extern int code_convert_region P_ ((int, int, int, int, struct coding_system *, |
635 int, int)); | |
43486
72a36dc37ced
(run_pre_post_conversion_on_str): Add prototype.
Eli Zaretskii <eliz@gnu.org>
parents:
41323
diff
changeset
|
636 extern Lisp_Object run_pre_post_conversion_on_str P_ ((Lisp_Object, |
72a36dc37ced
(run_pre_post_conversion_on_str): Add prototype.
Eli Zaretskii <eliz@gnu.org>
parents:
41323
diff
changeset
|
637 struct coding_system *, |
72a36dc37ced
(run_pre_post_conversion_on_str): Add prototype.
Eli Zaretskii <eliz@gnu.org>
parents:
41323
diff
changeset
|
638 int)); |
64251
3de1b955c31a
* coding.c (Qprocess_argument):
Kim F. Storm <storm@cua.dk>
parents:
64084
diff
changeset
|
639 extern void run_pre_write_conversin_on_c_str P_ ((unsigned char **, int *, |
58636
44a9e60f1d12
(run_pre_write_conversin_on_c_str): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
58453
diff
changeset
|
640 int, int, |
44a9e60f1d12
(run_pre_write_conversin_on_c_str): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
58453
diff
changeset
|
641 struct coding_system *)); |
44a9e60f1d12
(run_pre_write_conversin_on_c_str): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
58453
diff
changeset
|
642 |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
643 extern int decoding_buffer_size P_ ((struct coding_system *, int)); |
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
644 extern int encoding_buffer_size P_ ((struct coding_system *, int)); |
46549
f0ddb5c7cf46
(decode_coding, encode_coding, detect_coding,
Ken Raeburn <raeburn@raeburn.org>
parents:
43486
diff
changeset
|
645 extern void detect_coding P_ ((struct coding_system *, const unsigned char *, |
f0ddb5c7cf46
(decode_coding, encode_coding, detect_coding,
Ken Raeburn <raeburn@raeburn.org>
parents:
43486
diff
changeset
|
646 int)); |
f0ddb5c7cf46
(decode_coding, encode_coding, detect_coding,
Ken Raeburn <raeburn@raeburn.org>
parents:
43486
diff
changeset
|
647 extern void detect_eol P_ ((struct coding_system *, const unsigned char *, |
f0ddb5c7cf46
(decode_coding, encode_coding, detect_coding,
Ken Raeburn <raeburn@raeburn.org>
parents:
43486
diff
changeset
|
648 int)); |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
649 extern int setup_coding_system P_ ((Lisp_Object, struct coding_system *)); |
28512
01292435daaf
* coding.h (code_convert_string): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
28021
diff
changeset
|
650 extern Lisp_Object code_convert_string P_ ((Lisp_Object, |
01292435daaf
* coding.h (code_convert_string): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
28021
diff
changeset
|
651 struct coding_system *, int, int)); |
34152
cb678a191215
(code_convert_string1): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
34107
diff
changeset
|
652 extern Lisp_Object code_convert_string1 P_ ((Lisp_Object, Lisp_Object, |
cb678a191215
(code_convert_string1): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
34107
diff
changeset
|
653 Lisp_Object, int)); |
29438
8c825a8566f5
Declare code_convert_string_norecord.
Dave Love <fx@gnu.org>
parents:
29310
diff
changeset
|
654 extern Lisp_Object code_convert_string_norecord P_ ((Lisp_Object, Lisp_Object, |
8c825a8566f5
Declare code_convert_string_norecord.
Dave Love <fx@gnu.org>
parents:
29310
diff
changeset
|
655 int)); |
22615
bad8b17b0524
(setup_raw_text_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22342
diff
changeset
|
656 extern void setup_raw_text_coding_system P_ ((struct coding_system *)); |
29717
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29571
diff
changeset
|
657 extern Lisp_Object encode_coding_string P_ ((Lisp_Object, |
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
29571
diff
changeset
|
658 struct coding_system *, int)); |
30680
b37713f3c4a9
(decode_coding_string): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
30486
diff
changeset
|
659 extern Lisp_Object decode_coding_string P_ ((Lisp_Object, |
b37713f3c4a9
(decode_coding_string): Declare.
Ken Raeburn <raeburn@raeburn.org>
parents:
30486
diff
changeset
|
660 struct coding_system *, int)); |
17052 | 661 extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; |
22620 | 662 extern Lisp_Object Qraw_text, Qemacs_mule; |
17052 | 663 extern Lisp_Object Qbuffer_file_coding_system; |
664 extern Lisp_Object Vcoding_category_list; | |
51407 | 665 extern Lisp_Object Qutf_8; |
17052 | 666 |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
667 extern Lisp_Object Qtranslation_table; |
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22118
diff
changeset
|
668 extern Lisp_Object Qtranslation_table_id; |
22118
42e2ffa98618
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21901
diff
changeset
|
669 |
24201
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
670 /* Mnemonic strings to indicate each type of end-of-line. */ |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
671 extern Lisp_Object eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
672 /* Mnemonic string to indicate type of end-of-line is not yet decided. */ |
d324ba7d0e40
eol-mnemonic-* variables are now strings, not characters.
Eli Zaretskii <eliz@gnu.org>
parents:
23324
diff
changeset
|
673 extern Lisp_Object eol_mnemonic_undecided; |
17052 | 674 |
70519
3731408d78da
(system_eol_type): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
68651
diff
changeset
|
675 /* Format of end-of-line decided by system. */ |
3731408d78da
(system_eol_type): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
68651
diff
changeset
|
676 extern int system_eol_type; |
3731408d78da
(system_eol_type): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
68651
diff
changeset
|
677 |
17052 | 678 #ifdef emacs |
679 extern Lisp_Object Qfile_coding_system; | |
64251
3de1b955c31a
* coding.c (Qprocess_argument):
Kim F. Storm <storm@cua.dk>
parents:
64084
diff
changeset
|
680 extern Lisp_Object Qcall_process, Qcall_process_region; |
17052 | 681 extern Lisp_Object Qstart_process, Qopen_network_stream; |
34107
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
682 extern Lisp_Object Qwrite_region; |
17052 | 683 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
684 extern char *emacs_strerror P_ ((int)); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
685 |
17052 | 686 /* Coding-system for reading files and receiving data from process. */ |
687 extern Lisp_Object Vcoding_system_for_read; | |
688 /* Coding-system for writing files and sending data to process. */ | |
689 extern Lisp_Object Vcoding_system_for_write; | |
690 /* Coding-system actually used in the latest I/O. */ | |
691 extern Lisp_Object Vlast_coding_system_used; | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
692 /* Coding-system to use with system messages (e.g. strerror). */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25378
diff
changeset
|
693 extern Lisp_Object Vlocale_coding_system; |
17052 | 694 |
21573
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
695 /* If non-zero, process buffer inherits the coding system used to decode |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
696 the subprocess output. */ |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
697 extern int inherit_process_coding_system; |
92b33933ceeb
Declare inherit-process-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
21515
diff
changeset
|
698 |
17052 | 699 /* Coding-system to be used for encoding terminal output. This |
700 structure contains information of a coding-system specified by the | |
701 function `set-terminal-coding-system'. */ | |
702 extern struct coding_system terminal_coding; | |
703 | |
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
704 /* Coding system to be used to encode text for terminal display when |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
705 terminal coding system is nil. */ |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
706 extern struct coding_system safe_terminal_coding; |
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
707 |
17052 | 708 /* Coding-system of what is sent from terminal keyboard. This |
709 structure contains information of a coding-system specified by the | |
710 function `set-keyboard-coding-system'. */ | |
711 extern struct coding_system keyboard_coding; | |
712 | |
22978
6535413fa872
(default_buffer_file_coding): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22873
diff
changeset
|
713 /* Default coding system to be used to write a file. */ |
6535413fa872
(default_buffer_file_coding): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22873
diff
changeset
|
714 extern struct coding_system default_buffer_file_coding; |
6535413fa872
(default_buffer_file_coding): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22873
diff
changeset
|
715 |
18181
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
716 /* Default coding systems used for process I/O. */ |
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
717 extern Lisp_Object Vdefault_process_coding_system; |
17052 | 718 |
36088 | 719 /* Function to call to force a user to force select a proper coding |
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
720 system. */ |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
721 extern Lisp_Object Vselect_safe_coding_system_function; |
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
722 |
48875
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
723 /* If nonzero, on writing a file, Vselect_safe_coding_system_function |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
724 is called even if Vcoding_system_for_write is non-nil. */ |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
725 extern int coding_system_require_warning; |
e79464fe61d7
(coding_system_require_warning): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
46549
diff
changeset
|
726 |
21901
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
727 /* Coding system for file names, or nil if none. */ |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
728 extern Lisp_Object Vfile_name_coding_system; |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
729 |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
730 /* Coding system for file names used only when |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
731 Vfile_name_coding_system is nil. */ |
1b46a79d86e3
(Vfile_name_coding_system)
Richard M. Stallman <rms@gnu.org>
parents:
21573
diff
changeset
|
732 extern Lisp_Object Vdefault_file_name_coding_system; |
29310
2ffc1fff111a
(ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
Jason Rumney <jasonr@gnu.org>
parents:
29274
diff
changeset
|
733 |
17052 | 734 #endif |
735 | |
34107
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
736 /* Error signaled when there's a problem with detecting coding system */ |
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
737 extern Lisp_Object Qcoding_system_error; |
46e0ec24a961
(Qwrite_region, Qcoding_system_error): Declare extern.
Gerd Moellmann <gerd@gnu.org>
parents:
30832
diff
changeset
|
738 |
29571
951ead33c624
(EMASC_CODING_H): Renamed from _CODING_H.
Kenichi Handa <handa@m17n.org>
parents:
29438
diff
changeset
|
739 #endif /* EMACS_CODING_H */ |
52401 | 740 |
741 /* arch-tag: 2bc3b4fa-6870-4f64-8135-b962b2d290e4 | |
742 (do not change this comment) */ |