Mercurial > emacs
annotate src/coding.h @ 20850:ffbaaba0bf76
(Fdescribe_bindings_internal):
Renamed from Fdescribe_bindings. New arg NOMENU.
(syms_of_keymap): Corresponding changes.
(describe_buffer_bindings): Get NOMENU out of the arg list.
Pass it along to describe_map_tree.
Improve text of `alternate_heading'.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Thu, 05 Feb 1998 03:31:41 +0000 |
| parents | 19463997fbc6 |
| children | 1331679fe704 |
| rev | line source |
|---|---|
| 17052 | 1 /* Header for coding system handler. |
|
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18181
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
|
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18181
diff
changeset
|
3 Licensed to the Free Software Foundation. |
| 17052 | 4 |
| 17071 | 5 This file is part of GNU Emacs. |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 9 the Free Software Foundation; either version 2, or (at your option) | |
| 10 any later version. | |
| 17052 | 11 |
| 17071 | 12 GNU Emacs is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 17052 | 16 |
| 17071 | 17 You should have received a copy of the GNU General Public License |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 20 Boston, MA 02111-1307, USA. */ | |
| 17052 | 21 |
| 22 #ifndef _CODING_H | |
| 23 #define _CODING_H | |
| 24 | |
| 25 #ifndef _CCL_H | |
| 26 #include "../src/ccl.h" | |
| 27 #endif | |
| 28 | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
29 /*** EMACS' INTERNAL FORMAT (emacs-mule) section ***/ |
| 17052 | 30 |
| 31 /* All code (1-byte) of Emacs' internal format is classified into one | |
| 32 of the followings. See also `charset.h'. */ | |
| 33 enum emacs_code_class_type | |
| 34 { | |
| 35 EMACS_control_code, /* Control codes in the range | |
| 36 0x00..0x1F and 0x7F except for the | |
| 37 following two codes. */ | |
| 38 EMACS_linefeed_code, /* 0x0A (linefeed) to denote | |
| 39 end-of-line. */ | |
| 40 EMACS_carriage_return_code, /* 0x0D (carriage-return) to be used | |
| 41 in selective display mode. */ | |
| 42 EMACS_ascii_code, /* ASCII characters. */ | |
| 43 EMACS_leading_code_composition, /* Leading code of a composite | |
| 44 character. */ | |
| 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 { | |
| 77 ISO_control_code, /* Control codes in the range | |
| 78 0x00..0x1F, 0x7F, and 0x80..0x9F, | |
| 79 except for the following seven | |
| 80 codes. */ | |
| 81 ISO_carriage_return, /* ISO_CODE_CR (0x0D) */ | |
| 82 ISO_shift_out, /* ISO_CODE_SO (0x0E) */ | |
| 83 ISO_shift_in, /* ISO_CODE_SI (0x0F) */ | |
| 84 ISO_single_shift_2_7, /* ISO_CODE_SS2_7 (0x19) */ | |
| 85 ISO_escape, /* ISO_CODE_SO (0x1B) */ | |
| 86 ISO_single_shift_2, /* ISO_CODE_SS2 (0x8E) */ | |
| 87 ISO_single_shift_3, /* ISO_CODE_SS3 (0x8F) */ | |
| 88 ISO_control_sequence_introducer, /* ISO_CODE_CSI (0x9B) */ | |
| 89 ISO_0x20_or_0x7F, /* Codes of the values 0x20 or 0x7F. */ | |
| 90 ISO_graphic_plane_0, /* Graphic codes in the range 0x21..0x7E. */ | |
| 91 ISO_0xA0_or_0xFF, /* Codes of the values 0xA0 or 0xFF. */ | |
| 92 ISO_graphic_plane_1 /* Graphic codes in the range 0xA1..0xFE. */ | |
| 93 }; | |
| 94 | |
| 95 /** The macros CODING_FLAG_ISO_XXX defines a flag bit of the `flags' | |
| 96 element in the structure `coding_system'. This information is used | |
| 97 while encoding a text to ISO2022. **/ | |
| 98 | |
| 99 /* If set, produce short-form designation sequence (e.g. ESC $ A) | |
| 100 instead of long-form sequence (e.g. ESC $ ( A). */ | |
| 101 #define CODING_FLAG_ISO_SHORT_FORM 0x0001 | |
| 102 | |
| 103 /* If set, reset graphic planes and registers at end-of-line to the | |
| 104 initial state. */ | |
| 105 #define CODING_FLAG_ISO_RESET_AT_EOL 0x0002 | |
| 106 | |
| 107 /* If set, reset graphic planes and registers before any control | |
| 108 characters to the initial state. */ | |
| 109 #define CODING_FLAG_ISO_RESET_AT_CNTL 0x0004 | |
| 110 | |
| 111 /* If set, encode by 7-bit environment. */ | |
| 112 #define CODING_FLAG_ISO_SEVEN_BITS 0x0008 | |
| 113 | |
| 114 /* If set, use locking-shift function. */ | |
| 115 #define CODING_FLAG_ISO_LOCKING_SHIFT 0x0010 | |
| 116 | |
| 117 /* If set, use single-shift function. Overwrite | |
| 118 CODING_FLAG_ISO_LOCKING_SHIFT. */ | |
| 119 #define CODING_FLAG_ISO_SINGLE_SHIFT 0x0020 | |
| 120 | |
| 121 /* If set, designate JISX0201-Roman instead of ASCII. */ | |
| 122 #define CODING_FLAG_ISO_USE_ROMAN 0x0040 | |
| 123 | |
| 124 /* If set, designate JISX0208-1978 instead of JISX0208-1983. */ | |
| 125 #define CODING_FLAG_ISO_USE_OLDJIS 0x0080 | |
| 126 | |
| 127 /* If set, do not produce ISO6429's direction specifying sequence. */ | |
| 128 #define CODING_FLAG_ISO_NO_DIRECTION 0x0100 | |
| 129 | |
|
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
130 /* 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
|
131 output. */ |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
132 #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
|
133 |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
134 /* 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
|
135 on output. */ |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
136 #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
|
137 |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
138 /* If set, do not encode unsafe charactes on output. */ |
|
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
139 #define CODING_FLAG_ISO_SAFE 0x0800 |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
140 |
|
19364
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
141 /* 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
|
142 on input. */ |
|
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
143 #define CODING_FLAG_ISO_LATIN_EXTRA 0x1000 |
|
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
144 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
145 /* If set, use designation escape sequence. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
146 #define CODING_FLAG_ISO_DESIGNATION 0x10000 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
147 |
|
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
148 /* A character to be produced on output if encoding of the original |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
149 character is prohibited by CODING_FLAG_ISO_SAFE. */ |
|
19364
7182edce9028
(Vmicrosoft_code_table): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
19284
diff
changeset
|
150 #define CODING_INHIBIT_CHARACTER_SUBSTITUTION 077 /* 077 == `?' */ |
|
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
151 |
| 17052 | 152 /* Structure of the field `spec.iso2022' in the structure `coding_system'. */ |
| 153 struct iso2022_spec | |
| 154 { | |
| 155 /* The current graphic register invoked to each graphic plane. */ | |
| 156 int current_invocation[2]; | |
| 157 | |
| 158 /* The current charset designated to each graphic register. */ | |
| 159 int current_designation[4]; | |
| 160 | |
| 161 /* A charset initially designated to each graphic register. */ | |
| 162 int initial_designation[4]; | |
| 163 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
164 /* 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
|
165 designation sequence. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
166 int last_invalid_designation_register; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
167 |
| 17052 | 168 /* 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
|
169 unsigned char requested_designation[MAX_CHARSET + 1]; |
| 17052 | 170 |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
171 /* 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
|
172 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
|
173 charset. */ |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
174 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
|
175 |
| 17052 | 176 /* Set to 1 temporarily only when graphic register 2 or 3 is invoked |
| 177 by single-shift while encoding. */ | |
| 178 int single_shifting; | |
|
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
179 |
|
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
180 /* 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
|
181 int bol; |
| 17052 | 182 }; |
| 183 | |
| 184 /* Macros to access each field in the structure `spec.iso2022'. */ | |
| 185 #define CODING_SPEC_ISO_INVOCATION(coding, plane) \ | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
186 (coding)->spec.iso2022.current_invocation[plane] |
| 17052 | 187 #define CODING_SPEC_ISO_DESIGNATION(coding, reg) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
188 (coding)->spec.iso2022.current_designation[reg] |
| 17052 | 189 #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
|
190 (coding)->spec.iso2022.initial_designation[reg] |
| 17052 | 191 #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
|
192 (coding)->spec.iso2022.requested_designation[charset] |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
193 #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
|
194 (coding)->spec.iso2022.charset_revision_number[charset] |
| 17052 | 195 #define CODING_SPEC_ISO_SINGLE_SHIFTING(coding) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
196 (coding)->spec.iso2022.single_shifting |
|
17118
dcfb481ee914
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
197 #define CODING_SPEC_ISO_BOL(coding) \ |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
198 (coding)->spec.iso2022.bol |
| 17052 | 199 |
|
18001
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
200 /* A value which may appear in |
|
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
201 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
|
202 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
|
203 designated. */ |
|
9846609c4fd5
(struct iso2022_spec): Member requested_designation is
Kenichi Handa <handa@m17n.org>
parents:
17879
diff
changeset
|
204 #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
|
205 |
| 17052 | 206 /* Return a charset which is currently designated to the graphic plane |
| 207 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
|
208 #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
|
209 ((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
|
210 ? -1 \ |
|
545c2f09f14d
(CODING_SPEC_ISO_PLANE_CHARSET): Return -1 if no
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
211 : CODING_SPEC_ISO_DESIGNATION (coding, \ |
|
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))) |
| 17052 | 213 |
| 214 /*** BIG5 section ***/ | |
| 215 | |
| 216 /* Macros to denote each type of BIG5 coding system. */ | |
| 217 #define CODING_FLAG_BIG5_HKU 0x00 /* BIG5-HKU is one of variants of | |
| 218 BIG5 developed by Hong Kong | |
| 219 University. */ | |
| 220 #define CODING_FLAG_BIG5_ETEN 0x01 /* BIG5_ETen is one of variants | |
| 221 of BIG5 developed by the | |
| 222 company ETen in Taiwan. */ | |
| 223 | |
| 224 /*** GENERAL section ***/ | |
| 225 | |
| 226 /* Types of coding system. */ | |
| 227 enum coding_type | |
| 228 { | |
| 229 coding_type_no_conversion, /* A coding system which requires no | |
| 230 conversion for reading and writing | |
| 231 including end-of-line format. */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
232 coding_type_emacs_mule, /* A coding system used in Emacs' |
| 17052 | 233 buffer and string. Requires no |
| 234 conversion for reading and writing | |
| 235 except for end-of-line format. */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
236 coding_type_undecided, /* A coding system which requires |
| 17052 | 237 automatic detection of a real |
| 238 coding system. */ | |
| 239 coding_type_sjis, /* SJIS coding system for Japanese. */ | |
| 240 coding_type_iso2022, /* Any coding system of ISO2022 | |
| 241 variants. */ | |
| 242 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
|
243 coding_type_ccl, /* The coding system of which decoder |
| 17052 | 244 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
|
245 coding_type_raw_text /* A coding system for a text |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
246 containing ramdom 8-bit code which |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
247 does not require code conversion |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
248 except for end-of-line format. */ |
| 17052 | 249 }; |
| 250 | |
| 251 /* Formats of end-of-line. */ | |
| 252 #define CODING_EOL_LF 0 /* Line-feed only, same as Emacs' | |
| 253 internal format. */ | |
| 254 #define CODING_EOL_CRLF 1 /* Sequence of carriage-return and | |
| 255 line-feed. */ | |
| 256 #define CODING_EOL_CR 2 /* Carriage-return only. */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
257 #define CODING_EOL_UNDECIDED 3 /* This value is used to denote the |
| 17052 | 258 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
|
259 #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
|
260 eol-type is not consistent |
|
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
261 through the file. */ |
| 17052 | 262 |
| 263 /* Character composition status while encoding/decoding. */ | |
| 264 #define COMPOSING_NO 0 /* not composing */ | |
| 265 #define COMPOSING_WITH_RULE_HEAD 1 /* 1st char of with-rule composing follow */ | |
| 266 #define COMPOSING_NO_RULE_HEAD 2 /* 1st char of no-rule composing follow */ | |
| 267 #define COMPOSING_WITH_RULE_TAIL 3 /* Nth char of with-rule composing follow */ | |
| 268 #define COMPOSING_NO_RULE_TAIL 4 /* Nth char of no-rule composing follow */ | |
| 269 #define COMPOSING_WITH_RULE_RULE 5 /* composition rule follow */ | |
| 270 | |
| 271 /* 1 iff composing. */ | |
| 272 #define COMPOSING_P(composing) (composing) | |
| 273 /* 1 iff 1st char of composing element follows. */ | |
| 274 #define COMPOSING_HEAD_P(composing) \ | |
| 275 ((composing) && (composing) <= COMPOSING_NO_RULE_HEAD) | |
| 276 /* 1 iff composing with embeded composition rule. */ | |
| 277 #define COMPOSING_WITH_RULE_P(composing) ((composing) & 1) | |
| 278 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
279 /* Macros used for the member finish_status of the struct |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
280 coding_system. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
281 #define CODING_FINISH_NORMAL 0 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
282 #define CODING_FINISH_INSUFFICIENT_SRC 1 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
283 #define CODING_FINISH_INSUFFICIENT_DST 2 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
284 #define CODING_FINISH_INCONSISTENT_EOL 3 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
285 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
286 /* Macros used for the member mode of the struct coding_systme. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
287 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
288 /* 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
|
289 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
|
290 #define CODING_MODE_INHIBIT_INCONSISTENT_EOL 0x01 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
291 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
292 /* 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
|
293 the last block of the whole text to be converted, and do |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
294 appropriate fisishing job. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
295 #define CODING_MODE_LAST_BLOCK 0x02 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
296 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
297 /* 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
|
298 enables selective display. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
299 #define CODING_MODE_SELECTIVE_DISPLAY 0x04 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
300 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
301 /* 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
|
302 set, it means that right-to-left text is being processed. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
303 #define CODING_MODE_DIRECTION 0x08 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
304 |
| 17052 | 305 struct coding_system |
| 306 { | |
| 307 /* Type of the coding system. */ | |
| 308 enum coding_type type; | |
| 309 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
310 /* 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
|
311 int eol_type; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
312 |
|
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
313 /* 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
|
314 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
|
315 unsigned int common_flags; |
| 17052 | 316 |
| 317 /* Flag bits of the coding system. The meaning of each bit depends | |
| 318 on the type of the coding system. */ | |
| 319 unsigned int flags; | |
| 320 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
321 /* 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
|
322 CODING_MODE_XXX. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
323 unsigned int mode; |
| 17052 | 324 |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
325 /* Table of safe character sets for this coding system. If the Nth |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
326 element is 0, the charset of ID N is not a safe character set. |
|
20149
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
327 Such a character set is not encoded when CODING_ISO_FLAG_SAFE is |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
328 set. */ |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
329 unsigned char safe_charsets[MAX_CHARSET + 1]; |
|
b804a783ceec
(struct iso2022_spec): New member
Kenichi Handa <handa@m17n.org>
parents:
19689
diff
changeset
|
330 |
| 17052 | 331 /* Non-zero means that characters are being composed currently while |
| 332 decoding or encoding. See macros COMPOSING_XXXX above for the | |
| 333 meaing of each non-zero value. */ | |
| 334 int composing; | |
| 335 | |
| 336 /* Detailed information specific to each type of coding system. */ | |
| 337 union spec | |
| 338 { | |
| 339 struct iso2022_spec iso2022; | |
| 340 struct ccl_spec ccl; /* Defined in ccl.h. */ | |
| 341 } spec; | |
| 342 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
343 /* 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
|
344 int category_idx; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
345 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
346 /* How may heading bytes we can skip for decoding. This member is |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
347 set by the function detect_coding. The initial value is -1 which |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
348 means detect_coding has not yet been called. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
349 int heading_ascii; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
350 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
351 /* 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
|
352 int produced, produced_char, consumed, consumed_char; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
353 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
354 /* 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
|
355 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
|
356 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
|
357 find a way to protect them. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
358 |
| 17052 | 359 /* Backward pointer to the Lisp symbol of the coding system. */ |
| 360 Lisp_Object symbol; | |
| 361 | |
| 362 /* 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
|
363 additional conversion, or nil. */ |
| 17052 | 364 Lisp_Object post_read_conversion; |
| 365 | |
| 366 /* 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
|
367 additional conversion, or nil. */ |
| 17052 | 368 Lisp_Object pre_write_conversion; |
| 369 | |
|
18535
7ca42974dad4
(struct coding_system): New members
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
370 /* Character unification tables to look up, or nil. */ |
|
7ca42974dad4
(struct coding_system): New members
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
371 Lisp_Object character_unification_table_for_decode; |
|
7ca42974dad4
(struct coding_system): New members
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
372 Lisp_Object character_unification_table_for_encode; |
| 17052 | 373 }; |
| 374 | |
|
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
375 #define CODING_REQUIRE_FLUSHING_MASK 1 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
376 #define CODING_REQUIRE_DECODING_MASK 2 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
377 #define CODING_REQUIRE_ENCODING_MASK 4 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
378 #define CODING_REQUIRE_DETECTION_MASK 8 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
379 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
380 /* 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
|
381 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
|
382 #define CODING_REQUIRE_FLUSHING(coding) \ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
383 ((coding)->common_flags & CODING_REQUIRE_FLUSHING_MASK) |
| 17052 | 384 |
|
20226
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
385 /* 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
|
386 decoding. */ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
387 #define CODING_REQUIRE_DECODING(coding) \ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
388 ((coding)->common_flags & CODING_REQUIRE_DECODING_MASK) |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
389 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
390 /* 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
|
391 encoding. */ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
392 #define CODING_REQUIRE_ENCODING(coding) \ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
393 ((coding)->common_flags & CODING_REQUIRE_ENCODING_MASK) |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
394 |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
395 /* 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
|
396 detection. */ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
397 #define CODING_REQUIRE_DETECTION(coding) \ |
|
549826cf2952
(struct coding_system): Add member common_flags, delete
Kenichi Handa <handa@m17n.org>
parents:
20149
diff
changeset
|
398 ((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
|
399 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
400 #define CODING_MAY_REQUIRE_DECODING(coding) \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
401 ((coding)->common_flags \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
402 & (CODING_REQUIRE_DETECTION_MASK | CODING_REQUIRE_DECODING_MASK)) |
| 17052 | 403 |
| 404 /* 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
|
405 #define CODING_CATEGORY_IDX_EMACS_MULE 0 |
| 17052 | 406 #define CODING_CATEGORY_IDX_SJIS 1 |
| 407 #define CODING_CATEGORY_IDX_ISO_7 2 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
408 #define CODING_CATEGORY_IDX_ISO_7_TIGHT 3 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
409 #define CODING_CATEGORY_IDX_ISO_8_1 4 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
410 #define CODING_CATEGORY_IDX_ISO_8_2 5 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
411 #define CODING_CATEGORY_IDX_ISO_7_ELSE 6 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
412 #define CODING_CATEGORY_IDX_ISO_8_ELSE 7 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
413 #define CODING_CATEGORY_IDX_BIG5 8 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
414 #define CODING_CATEGORY_IDX_RAW_TEXT 9 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
415 #define CODING_CATEGORY_IDX_BINARY 10 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
416 #define CODING_CATEGORY_IDX_MAX 11 |
| 17052 | 417 |
| 418 /* Definitions of flag bits returned by the function | |
| 419 detect_coding_mask (). */ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
420 #define CODING_CATEGORY_MASK_EMACS_MULE (1 << CODING_CATEGORY_IDX_EMACS_MULE) |
| 17052 | 421 #define CODING_CATEGORY_MASK_SJIS (1 << CODING_CATEGORY_IDX_SJIS) |
| 422 #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
|
423 #define CODING_CATEGORY_MASK_ISO_7_TIGHT (1 << CODING_CATEGORY_IDX_ISO_7_TIGHT) |
| 17052 | 424 #define CODING_CATEGORY_MASK_ISO_8_1 (1 << CODING_CATEGORY_IDX_ISO_8_1) |
| 425 #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
|
426 #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
|
427 #define CODING_CATEGORY_MASK_ISO_8_ELSE (1 << CODING_CATEGORY_IDX_ISO_8_ELSE) |
|
19689
08b92fab92af
Minor reordering of macros.
Richard M. Stallman <rms@gnu.org>
parents:
19611
diff
changeset
|
428 #define CODING_CATEGORY_MASK_BIG5 (1 << CODING_CATEGORY_IDX_BIG5) |
|
19611
79c3bdba351b
(coding_type): New member coding_type_raw_text.
Kenichi Handa <handa@m17n.org>
parents:
19364
diff
changeset
|
429 #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
|
430 #define CODING_CATEGORY_MASK_BINARY (1 << CODING_CATEGORY_IDX_BINARY) |
| 17052 | 431 |
| 432 /* This value is returned if detect_coding_mask () find nothing other | |
| 433 than ASCII characters. */ | |
| 434 #define CODING_CATEGORY_MASK_ANY \ | |
|
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17724
diff
changeset
|
435 ( CODING_CATEGORY_MASK_EMACS_MULE \ |
| 17052 | 436 | CODING_CATEGORY_MASK_SJIS \ |
| 437 | CODING_CATEGORY_MASK_ISO_7 \ | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
438 | CODING_CATEGORY_MASK_ISO_7_TIGHT \ |
| 17052 | 439 | CODING_CATEGORY_MASK_ISO_8_1 \ |
| 440 | 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
|
441 | 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
|
442 | CODING_CATEGORY_MASK_ISO_8_ELSE \ |
| 17052 | 443 | CODING_CATEGORY_MASK_BIG5) |
| 444 | |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
445 #define CODING_CATEGORY_MASK_ISO_7BIT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
446 (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
|
447 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
448 #define CODING_CATEGORY_MASK_ISO_8BIT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
449 (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
|
450 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
451 #define CODING_CATEGORY_MASK_ISO_SHIFT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
452 (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
|
453 |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
454 #define CODING_CATEGORY_MASK_ISO \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
455 ( CODING_CATEGORY_MASK_ISO_7BIT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
456 | CODING_CATEGORY_MASK_ISO_SHIFT \ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
457 | CODING_CATEGORY_MASK_ISO_8BIT) |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
458 |
| 17052 | 459 /* Macros to decode or encode a character of JISX0208 in SJIS. S1 and |
| 460 S2 are the 1st and 2nd position-codes of JISX0208 in SJIS coding | |
| 461 system. C1 and C2 are the 1st and 2nd position codes of Emacs' | |
| 462 internal format. */ | |
| 463 | |
| 464 #define DECODE_SJIS(s1, s2, c1, c2) \ | |
| 465 do { \ | |
| 466 if (s2 >= 0x9F) \ | |
| 467 c1 = s1 * 2 - (s1 >= 0xE0 ? 0x160 : 0xE0), \ | |
| 468 c2 = s2 - 0x7E; \ | |
| 469 else \ | |
| 470 c1 = s1 * 2 - ((s1 >= 0xE0) ? 0x161 : 0xE1), \ | |
| 471 c2 = s2 - ((s2 >= 0x7F) ? 0x20 : 0x1F); \ | |
| 472 } while (0) | |
| 473 | |
| 474 #define ENCODE_SJIS(c1, c2, s1, s2) \ | |
| 475 do { \ | |
| 476 if (c1 & 1) \ | |
| 477 s1 = c1 / 2 + ((c1 < 0x5F) ? 0x71 : 0xB1), \ | |
| 478 s2 = c2 + ((c2 >= 0x60) ? 0x20 : 0x1F); \ | |
| 479 else \ | |
| 480 s1 = c1 / 2 + ((c1 < 0x5F) ? 0x70 : 0xB0), \ | |
| 481 s2 = c2 + 0x7E; \ | |
| 482 } while (0) | |
| 483 | |
| 484 /* Extern declarations. */ | |
|
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
485 extern int decode_coding P_ ((struct coding_system *, unsigned char *, |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
486 unsigned char *, int, int)); |
|
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
487 extern int encode_coding P_ ((struct coding_system *, unsigned char *, |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
488 unsigned char *, int, int)); |
|
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
489 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
|
490 extern int encoding_buffer_size P_ ((struct coding_system *, int)); |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
491 extern void detect_coding P_ ((struct coding_system *, unsigned char *, int)); |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
492 extern void detect_eol P_ ((struct coding_system *, unsigned char *, int)); |
| 17052 | 493 extern int conversion_buffer_size; |
|
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
494 extern char *conversion_buffer; |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
495 extern char *get_conversion_buffer P_ ((int)); |
|
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20226
diff
changeset
|
496 extern int setup_coding_system P_ ((Lisp_Object, struct coding_system *)); |
| 17052 | 497 extern Lisp_Object Qcoding_system, Qeol_type, Qcoding_category_index; |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
498 extern Lisp_Object Qraw_text; |
| 17052 | 499 extern Lisp_Object Qbuffer_file_coding_system; |
| 500 extern Lisp_Object Vcoding_category_list; | |
| 501 | |
| 502 /* Mnemonic character to indicate each type of end-of-line. */ | |
| 503 extern int eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; | |
| 504 /* Mnemonic character to indicate type of end-of-line is not yet decided. */ | |
| 505 extern int eol_mnemonic_undecided; | |
| 506 | |
| 507 #ifdef emacs | |
| 508 extern Lisp_Object Qfile_coding_system; | |
| 509 extern Lisp_Object Qcall_process, Qcall_process_region, Qprocess_argument; | |
| 510 extern Lisp_Object Qstart_process, Qopen_network_stream; | |
| 511 | |
| 512 /* Coding-system for reading files and receiving data from process. */ | |
| 513 extern Lisp_Object Vcoding_system_for_read; | |
| 514 /* Coding-system for writing files and sending data to process. */ | |
| 515 extern Lisp_Object Vcoding_system_for_write; | |
| 516 /* Coding-system actually used in the latest I/O. */ | |
| 517 extern Lisp_Object Vlast_coding_system_used; | |
| 518 | |
| 519 /* Coding-system to be used for encoding terminal output. This | |
| 520 structure contains information of a coding-system specified by the | |
| 521 function `set-terminal-coding-system'. */ | |
| 522 extern struct coding_system terminal_coding; | |
| 523 | |
|
19279
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
524 /* 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
|
525 terminal coding system is nil. */ |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
526 extern struct coding_system safe_terminal_coding; |
|
3217a3ba8ef7
(CODING_FLAG_ISO_SAFE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
19096
diff
changeset
|
527 |
| 17052 | 528 /* Coding-system of what is sent from terminal keyboard. This |
| 529 structure contains information of a coding-system specified by the | |
| 530 function `set-keyboard-coding-system'. */ | |
| 531 extern struct coding_system keyboard_coding; | |
| 532 | |
|
18181
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
533 /* Default coding systems used for process I/O. */ |
|
1d91f0e4ff7d
(Vdefault_process_coding_system): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18001
diff
changeset
|
534 extern Lisp_Object Vdefault_process_coding_system; |
| 17052 | 535 |
|
20717
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
536 /* Function to call to force a user to force select a propert coding |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
537 system. */ |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
538 extern Lisp_Object Vselect_safe_coding_system_function; |
|
19463997fbc6
(CODING_FLAG_ISO_DESIGNATION): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20308
diff
changeset
|
539 |
| 17052 | 540 #endif |
| 541 | |
| 542 #endif /* _CODING_H */ |
