Mercurial > emacs
annotate src/character.h @ 95048:883c17cb4544
Add extra-headers method for SVN.
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Fri, 16 May 2008 18:15:26 +0000 |
parents | 29adfc9354e7 |
children | abcb40dd43a2 |
rev | line source |
---|---|
88363 | 1 /* Header for multibyte character handler. |
2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN. | |
89483 | 3 Licensed to the Free Software Foundation. |
91444
1d067b286f05
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
90798
diff
changeset
|
4 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 |
88363 | 5 National Institute of Advanced Industrial Science and Technology (AIST) |
6 Registration Number H13PRO009 | |
7 | |
8 This file is part of GNU Emacs. | |
9 | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91805
diff
changeset
|
10 GNU Emacs is free software: you can redistribute it and/or modify |
88363 | 11 it under the terms of the GNU General Public License as published by |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91805
diff
changeset
|
12 the Free Software Foundation, either version 3 of the License, or |
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91805
diff
changeset
|
13 (at your option) any later version. |
88363 | 14 |
15 GNU Emacs is distributed in the hope that it will be useful, | |
16 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 GNU General Public License for more details. | |
19 | |
20 You should have received a copy of the GNU General Public License | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91805
diff
changeset
|
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
88363 | 22 |
23 #ifndef EMACS_CHARACTER_H | |
24 #define EMACS_CHARACTER_H | |
25 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
26 /* character code 1st byte byte sequence |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
27 -------------- -------- ------------- |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
28 0-7F 00..7F 0xxxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
29 80-7FF C2..DF 110xxxxx 10xxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
30 800-FFFF E0..EF 1110xxxx 10xxxxxx 10xxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
31 10000-1FFFFF F0..F7 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
32 200000-3FFF7F F8 11111000 1000xxxx 10xxxxxx 10xxxxxx 10xxxxxx |
89692 | 33 3FFF80-3FFFFF C0..C1 1100000x 10xxxxxx (for eight-bit-char) |
34 400000-... invalid | |
88363 | 35 |
89692 | 36 invalid 1st byte 80..BF 10xxxxxx |
37 F9..FF 11111xxx (xxx != 000) | |
88363 | 38 */ |
39 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
40 /* Maximum character code ((1 << CHARACTERBITS) - 1). */ |
88363 | 41 #define MAX_CHAR 0x3FFFFF |
42 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
43 /* Maximum Unicode character code. */ |
88363 | 44 #define MAX_UNICODE_CHAR 0x10FFFF |
45 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
46 /* Maximum N-byte character codes. */ |
88363 | 47 #define MAX_1_BYTE_CHAR 0x7F |
48 #define MAX_2_BYTE_CHAR 0x7FF | |
49 #define MAX_3_BYTE_CHAR 0xFFFF | |
50 #define MAX_4_BYTE_CHAR 0x1FFFFF | |
51 #define MAX_5_BYTE_CHAR 0x3FFF7F | |
52 | |
90791
0603ad3252c9
(MIN_MULTIBYTE_LEADING_CODE)
Kenichi Handa <handa@m17n.org>
parents:
90533
diff
changeset
|
53 /* Minimum leading code of multibyte characters. */ |
0603ad3252c9
(MIN_MULTIBYTE_LEADING_CODE)
Kenichi Handa <handa@m17n.org>
parents:
90533
diff
changeset
|
54 #define MIN_MULTIBYTE_LEADING_CODE 0xC0 |
0603ad3252c9
(MIN_MULTIBYTE_LEADING_CODE)
Kenichi Handa <handa@m17n.org>
parents:
90533
diff
changeset
|
55 /* Maximum leading code of multibyte characters. */ |
0603ad3252c9
(MIN_MULTIBYTE_LEADING_CODE)
Kenichi Handa <handa@m17n.org>
parents:
90533
diff
changeset
|
56 #define MAX_MULTIBYTE_LEADING_CODE 0xF8 |
0603ad3252c9
(MIN_MULTIBYTE_LEADING_CODE)
Kenichi Handa <handa@m17n.org>
parents:
90533
diff
changeset
|
57 |
88946
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
58 /* Nonzero iff C is a character that corresponds to a raw 8-bit |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
59 byte. */ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
60 #define CHAR_BYTE8_P(c) ((c) > MAX_5_BYTE_CHAR) |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
61 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
62 /* Return the character code for raw 8-bit byte BYTE. */ |
88363 | 63 #define BYTE8_TO_CHAR(byte) ((byte) + 0x3FFF00) |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
64 |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
65 /* Return the raw 8-bit byte for character C. */ |
88946
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
66 #define CHAR_TO_BYTE8(c) \ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
67 (CHAR_BYTE8_P (c) \ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
68 ? (c) - 0x3FFF00 \ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
69 : multibyte_char_to_unibyte (c, Qnil)) |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
70 |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
71 /* Nonzero iff BYTE is the 1st byte of a multibyte form of a character |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
72 that corresponds to a raw 8-bit byte. */ |
88363 | 73 #define CHAR_BYTE8_HEAD_P(byte) ((byte) == 0xC0 || (byte) == 0xC1) |
74 | |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
75 /* Mapping table from unibyte chars to multibyte chars. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
76 extern int unibyte_to_multibyte_table[256]; |
89018
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
77 |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
78 /* Convert the unibyte character C to the corresponding multibyte |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
79 character. If C can't be converted, return C. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
80 #define unibyte_char_to_multibyte(c) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
81 ((c) < 256 ? unibyte_to_multibyte_table[(c)] : (c)) |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
82 |
90019
1987dfad4543
(unibyte_has_multibyte_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
89911
diff
changeset
|
83 /* Nth element is 1 iff unibyte char N can be mapped to a multibyte |
1987dfad4543
(unibyte_has_multibyte_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
89911
diff
changeset
|
84 char. */ |
1987dfad4543
(unibyte_has_multibyte_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
89911
diff
changeset
|
85 extern char unibyte_has_multibyte_table[256]; |
1987dfad4543
(unibyte_has_multibyte_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
89911
diff
changeset
|
86 |
1987dfad4543
(unibyte_has_multibyte_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
89911
diff
changeset
|
87 #define UNIBYTE_CHAR_HAS_MULTIBYTE_P(c) (unibyte_has_multibyte_table[(c)]) |
1987dfad4543
(unibyte_has_multibyte_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
89911
diff
changeset
|
88 |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
89 /* If C is not ASCII, make it unibyte. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
90 #define MAKE_CHAR_UNIBYTE(c) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
91 do { \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
92 if (! ASCII_CHAR_P (c)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
93 c = CHAR_TO_BYTE8 (c); \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
94 } while (0) |
89018
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
95 |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
96 |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
97 /* If C is not ASCII, make it multibyte. It assumes C < 256. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
98 #define MAKE_CHAR_MULTIBYTE(c) ((c) = unibyte_to_multibyte_table[(c)]) |
89018
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
99 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
100 /* This is the maximum byte length of multibyte form. */ |
88363 | 101 #define MAX_MULTIBYTE_LENGTH 5 |
102 | |
89887
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
103 /* Return a Lisp character whose character code is C. It assumes C is |
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
104 a valid character code. */ |
88363 | 105 #define make_char(c) make_number (c) |
106 | |
107 /* Nonzero iff C is an ASCII byte. */ | |
108 #define ASCII_BYTE_P(c) ((unsigned) (c) < 0x80) | |
109 | |
110 /* Nonzero iff X is a character. */ | |
111 #define CHARACTERP(x) (NATNUMP (x) && XFASTINT (x) <= MAX_CHAR) | |
112 | |
88832 | 113 /* Nonzero iff C is valid as a character code. GENERICP is not used |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
114 now. */ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
115 #define CHAR_VALID_P(c, genericp) ((unsigned) (c) <= MAX_CHAR) |
88363 | 116 |
117 /* Check if Lisp object X is a character or not. */ | |
90533 | 118 #define CHECK_CHARACTER(x) \ |
119 CHECK_TYPE (CHARACTERP (x), Qcharacterp, x) | |
88363 | 120 |
89483 | 121 #define CHECK_CHARACTER_CAR(x) \ |
122 do { \ | |
123 Lisp_Object tmp = XCAR (x); \ | |
124 CHECK_CHARACTER (tmp); \ | |
125 XSETCAR ((x), tmp); \ | |
126 } while (0) | |
127 | |
128 #define CHECK_CHARACTER_CDR(x) \ | |
129 do { \ | |
130 Lisp_Object tmp = XCDR (x); \ | |
131 CHECK_CHARACTER (tmp); \ | |
132 XSETCDR ((x), tmp); \ | |
133 } while (0) | |
134 | |
88363 | 135 /* Nonzero iff C is an ASCII character. */ |
136 #define ASCII_CHAR_P(c) ((unsigned) (c) < 0x80) | |
137 | |
138 /* Nonzero iff C is a character of code less than 0x100. */ | |
139 #define SINGLE_BYTE_CHAR_P(c) ((unsigned) (c) < 0x100) | |
140 | |
141 /* Nonzero if character C has a printable glyph. */ | |
142 #define CHAR_PRINTABLE_P(c) \ | |
143 (((c) >= 32 && ((c) < 127) \ | |
144 || ! NILP (CHAR_TABLE_REF (Vprintable_chars, (c))))) | |
145 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
146 /* Return byte length of multibyte form for character C. */ |
88363 | 147 #define CHAR_BYTES(c) \ |
148 ( (c) <= MAX_1_BYTE_CHAR ? 1 \ | |
149 : (c) <= MAX_2_BYTE_CHAR ? 2 \ | |
150 : (c) <= MAX_3_BYTE_CHAR ? 3 \ | |
151 : (c) <= MAX_4_BYTE_CHAR ? 4 \ | |
152 : (c) <= MAX_5_BYTE_CHAR ? 5 \ | |
153 : 2) | |
154 | |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
155 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
156 /* Return the leading code of multibyte form of C. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
157 #define CHAR_LEADING_CODE(c) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
158 ((c) <= MAX_1_BYTE_CHAR ? c \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
159 : (c) <= MAX_2_BYTE_CHAR ? (0xC0 | ((c) >> 6)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
160 : (c) <= MAX_3_BYTE_CHAR ? (0xE0 | ((c) >> 12)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
161 : (c) <= MAX_4_BYTE_CHAR ? (0xF0 | ((c) >> 18)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
162 : (c) <= MAX_5_BYTE_CHAR ? 0xF8 \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
163 : (0xC0 | (((c) >> 6) & 0x01))) |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
164 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
165 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
166 /* Store multibyte form of the character C in P. The caller should |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
167 allocate at least MAX_MULTIBYTE_LENGTH bytes area at P in advance. |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
168 Returns the length of the multibyte form. */ |
88363 | 169 |
170 #define CHAR_STRING(c, p) \ | |
171 ((unsigned) (c) <= MAX_1_BYTE_CHAR \ | |
172 ? ((p)[0] = (c), \ | |
173 1) \ | |
174 : (unsigned) (c) <= MAX_2_BYTE_CHAR \ | |
175 ? ((p)[0] = (0xC0 | ((c) >> 6)), \ | |
176 (p)[1] = (0x80 | ((c) & 0x3F)), \ | |
177 2) \ | |
178 : (unsigned) (c) <= MAX_3_BYTE_CHAR \ | |
179 ? ((p)[0] = (0xE0 | ((c) >> 12)), \ | |
180 (p)[1] = (0x80 | (((c) >> 6) & 0x3F)), \ | |
181 (p)[2] = (0x80 | ((c) & 0x3F)), \ | |
182 3) \ | |
90798
ad70c7654800
(CHAR_STRING): Cast C to unsigned on calling
Kenichi Handa <handa@m17n.org>
parents:
90791
diff
changeset
|
183 : char_string ((unsigned) c, p)) |
88363 | 184 |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
185 /* Store multibyte form of byte B in P. The caller should allocate at |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
186 least MAX_MULTIBYTE_LENGTH bytes area at P in advance. Returns the |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
187 length of the multibyte form. */ |
89038
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
188 |
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
189 #define BYTE8_STRING(b, p) \ |
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
190 ((p)[0] = (0xC0 | (((b) >> 6) & 0x01)), \ |
90051 | 191 (p)[1] = (0x80 | ((b) & 0x3F)), \ |
89038
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
192 2) |
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
193 |
88363 | 194 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
195 /* Store multibyte form of the character C in P. The caller should |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
196 allocate at least MAX_MULTIBYTE_LENGTH bytes area at P in advance. |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
197 And, advance P to the end of the multibyte form. */ |
88363 | 198 |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
199 #define CHAR_STRING_ADVANCE(c, p) \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
200 do { \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
201 if ((c) <= MAX_1_BYTE_CHAR) \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
202 *(p)++ = (c); \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
203 else if ((c) <= MAX_2_BYTE_CHAR) \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
204 *(p)++ = (0xC0 | ((c) >> 6)), \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
205 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
206 else if ((c) <= MAX_3_BYTE_CHAR) \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
207 *(p)++ = (0xE0 | ((c) >> 12)), \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
208 *(p)++ = (0x80 | (((c) >> 6) & 0x3F)), \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
209 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
210 else \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
211 (p) += char_string ((c), (p)); \ |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
212 } while (0) |
88363 | 213 |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
214 |
88363 | 215 /* Nonzero iff BYTE starts a non-ASCII character in a multibyte |
216 form. */ | |
217 #define LEADING_CODE_P(byte) (((byte) & 0xC0) == 0xC0) | |
218 | |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
219 /* Nonzero iff BYTE is a trailing code of a non-ASCII character in a |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
220 multibyte form. */ |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
221 #define TRAILING_CODE_P(byte) (((byte) & 0xC0) == 0x80) |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
222 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
223 /* Nonzero iff BYTE starts a character in a multibyte form. |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
224 This is equivalent to: |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
225 (ASCII_BYTE_P (byte) || LEADING_CODE_P (byte)) */ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
226 #define CHAR_HEAD_P(byte) (((byte) & 0xC0) != 0x80) |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
227 |
88363 | 228 /* Just kept for backward compatibility. This macro will be removed |
229 in the future. */ | |
230 #define BASE_LEADING_CODE_P LEADING_CODE_P | |
231 | |
232 /* How many bytes a character that starts with BYTE occupies in a | |
233 multibyte form. */ | |
234 #define BYTES_BY_CHAR_HEAD(byte) \ | |
235 (!((byte) & 0x80) ? 1 \ | |
236 : !((byte) & 0x20) ? 2 \ | |
237 : !((byte) & 0x10) ? 3 \ | |
238 : !((byte) & 0x08) ? 4 \ | |
239 : 5) | |
240 | |
241 | |
242 /* Return the length of the multi-byte form at string STR of length | |
243 LEN while assuming that STR points a valid multi-byte form. As | |
244 this macro isn't necessary anymore, all callers will be changed to | |
245 use BYTES_BY_CHAR_HEAD directly in the future. */ | |
246 | |
247 #define MULTIBYTE_FORM_LENGTH(str, len) \ | |
248 BYTES_BY_CHAR_HEAD (*(str)) | |
249 | |
250 /* Parse multibyte string STR of length LENGTH and set BYTES to the | |
251 byte length of a character at STR while assuming that STR points a | |
252 valid multibyte form. As this macro isn't necessary anymore, all | |
253 callers will be changed to use BYTES_BY_CHAR_HEAD directly in the | |
254 future. */ | |
255 | |
256 #define PARSE_MULTIBYTE_SEQ(str, length, bytes) \ | |
257 (bytes) = BYTES_BY_CHAR_HEAD (*(str)) | |
258 | |
259 /* The byte length of multibyte form at unibyte string P ending at | |
260 PEND. If STR doesn't point a valid multibyte form, return 0. */ | |
261 | |
262 #define MULTIBYTE_LENGTH(p, pend) \ | |
263 (p >= pend ? 0 \ | |
264 : !((p)[0] & 0x80) ? 1 \ | |
265 : ((p + 1 >= pend) || (((p)[1] & 0xC0) != 0x80)) ? 0 \ | |
266 : ((p)[0] & 0xE0) == 0xC0 ? 2 \ | |
267 : ((p + 2 >= pend) || (((p)[2] & 0xC0) != 0x80)) ? 0 \ | |
268 : ((p)[0] & 0xF0) == 0xE0 ? 3 \ | |
269 : ((p + 3 >= pend) || (((p)[3] & 0xC0) != 0x80)) ? 0 \ | |
270 : ((p)[0] & 0xF8) == 0xF0 ? 4 \ | |
271 : ((p + 4 >= pend) || (((p)[4] & 0xC0) != 0x80)) ? 0 \ | |
272 : (p)[0] == 0xF8 && ((p)[1] & 0xF0) == 0x80 ? 5 \ | |
273 : 0) | |
274 | |
275 | |
276 /* Like MULTIBYTE_LENGTH but don't check the ending address. */ | |
277 | |
278 #define MULTIBYTE_LENGTH_NO_CHECK(p) \ | |
279 (!((p)[0] & 0x80) ? 1 \ | |
280 : ((p)[1] & 0xC0) != 0x80 ? 0 \ | |
281 : ((p)[0] & 0xE0) == 0xC0 ? 2 \ | |
282 : ((p)[2] & 0xC0) != 0x80 ? 0 \ | |
283 : ((p)[0] & 0xF0) == 0xE0 ? 3 \ | |
284 : ((p)[3] & 0xC0) != 0x80 ? 0 \ | |
285 : ((p)[0] & 0xF8) == 0xF0 ? 4 \ | |
286 : ((p)[4] & 0xC0) != 0x80 ? 0 \ | |
287 : (p)[0] == 0xF8 && ((p)[1] & 0xF0) == 0x80 ? 5 \ | |
288 : 0) | |
289 | |
89483 | 290 /* If P is before LIMIT, advance P to the next character boundary. It |
291 assumes that P is already at a character boundary of the sane | |
292 mulitbyte form whose end address is LIMIT. */ | |
293 | |
294 #define NEXT_CHAR_BOUNDARY(p, limit) \ | |
295 do { \ | |
296 if ((p) < (limit)) \ | |
297 (p) += BYTES_BY_CHAR_HEAD (*(p)); \ | |
298 } while (0) | |
299 | |
300 | |
301 /* If P is after LIMIT, advance P to the previous character boundary. | |
302 It assumes that P is already at a character boundary of the sane | |
303 mulitbyte form whose beginning address is LIMIT. */ | |
304 | |
305 #define PREV_CHAR_BOUNDARY(p, limit) \ | |
306 do { \ | |
307 if ((p) > (limit)) \ | |
308 { \ | |
309 const unsigned char *p0 = (p); \ | |
310 do { \ | |
311 p0--; \ | |
312 } while (p0 >= limit && ! CHAR_HEAD_P (*p0)); \ | |
313 (p) = (BYTES_BY_CHAR_HEAD (*p0) == (p) - p0) ? p0 : (p) - 1; \ | |
314 } \ | |
315 } while (0) | |
88363 | 316 |
317 /* Return the character code of character whose multibyte form is at | |
318 P. The argument LEN is ignored. It will be removed in the | |
319 future. */ | |
320 | |
321 #define STRING_CHAR(p, len) \ | |
322 (!((p)[0] & 0x80) \ | |
323 ? (p)[0] \ | |
324 : ! ((p)[0] & 0x20) \ | |
325 ? (((((p)[0] & 0x1F) << 6) \ | |
326 | ((p)[1] & 0x3F)) \ | |
327 + (((unsigned char) (p)[0]) < 0xC2 ? 0x3FFF80 : 0)) \ | |
328 : ! ((p)[0] & 0x10) \ | |
329 ? ((((p)[0] & 0x0F) << 12) \ | |
330 | (((p)[1] & 0x3F) << 6) \ | |
331 | ((p)[2] & 0x3F)) \ | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
332 : string_char ((p), NULL, NULL)) |
88363 | 333 |
334 | |
335 /* Like STRING_CHAR but set ACTUAL_LEN to the length of multibyte | |
336 form. The argument LEN is ignored. It will be removed in the | |
337 future. */ | |
338 | |
339 #define STRING_CHAR_AND_LENGTH(p, len, actual_len) \ | |
340 (!((p)[0] & 0x80) \ | |
341 ? ((actual_len) = 1, (p)[0]) \ | |
342 : ! ((p)[0] & 0x20) \ | |
343 ? ((actual_len) = 2, \ | |
344 (((((p)[0] & 0x1F) << 6) \ | |
345 | ((p)[1] & 0x3F)) \ | |
346 + (((unsigned char) (p)[0]) < 0xC2 ? 0x3FFF80 : 0))) \ | |
347 : ! ((p)[0] & 0x10) \ | |
348 ? ((actual_len) = 3, \ | |
349 ((((p)[0] & 0x0F) << 12) \ | |
350 | (((p)[1] & 0x3F) << 6) \ | |
351 | ((p)[2] & 0x3F))) \ | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
352 : string_char ((p), NULL, &actual_len)) |
88363 | 353 |
354 | |
89887
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
355 /* Like STRING_CHAR but advance P to the end of multibyte form. */ |
88363 | 356 |
357 #define STRING_CHAR_ADVANCE(p) \ | |
358 (!((p)[0] & 0x80) \ | |
359 ? *(p)++ \ | |
360 : ! ((p)[0] & 0x20) \ | |
361 ? ((p) += 2, \ | |
362 ((((p)[-2] & 0x1F) << 6) \ | |
363 | ((p)[-1] & 0x3F) \ | |
89483 | 364 | ((unsigned char) ((p)[-2]) < 0xC2 ? 0x3FFF80 : 0))) \ |
88363 | 365 : ! ((p)[0] & 0x10) \ |
366 ? ((p) += 3, \ | |
367 ((((p)[-3] & 0x0F) << 12) \ | |
368 | (((p)[-2] & 0x3F) << 6) \ | |
369 | ((p)[-1] & 0x3F))) \ | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
370 : string_char ((p), &(p), NULL)) |
88363 | 371 |
372 | |
373 /* Fetch the "next" character from Lisp string STRING at byte position | |
374 BYTEIDX, character position CHARIDX. Store it into OUTPUT. | |
375 | |
376 All the args must be side-effect-free. | |
377 BYTEIDX and CHARIDX must be lvalues; | |
378 we increment them past the character fetched. */ | |
379 | |
380 #define FETCH_STRING_CHAR_ADVANCE(OUTPUT, STRING, CHARIDX, BYTEIDX) \ | |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
381 do \ |
88363 | 382 { \ |
383 CHARIDX++; \ | |
384 if (STRING_MULTIBYTE (STRING)) \ | |
385 { \ | |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
386 unsigned char *ptr = &SDATA (STRING)[BYTEIDX]; \ |
88363 | 387 int len; \ |
388 \ | |
389 OUTPUT = STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
390 BYTEIDX += len; \ | |
391 } \ | |
392 else \ | |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
393 { \ |
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
394 OUTPUT = SREF (STRING, BYTEIDX); \ |
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
395 BYTEIDX++; \ |
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
396 } \ |
88363 | 397 } \ |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
398 while (0) |
88363 | 399 |
89887
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
400 /* Like FETCH_STRING_CHAR_ADVANCE but return a multibyte character eve |
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
401 if STRING is unibyte. */ |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
402 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
403 #define FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE(OUTPUT, STRING, CHARIDX, BYTEIDX) \ |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
404 do \ |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
405 { \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
406 CHARIDX++; \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
407 if (STRING_MULTIBYTE (STRING)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
408 { \ |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
409 unsigned char *ptr = &SDATA (STRING)[BYTEIDX]; \ |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
410 int len; \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
411 \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
412 OUTPUT = STRING_CHAR_AND_LENGTH (ptr, 0, len); \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
413 BYTEIDX += len; \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
414 } \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
415 else \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
416 { \ |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
417 OUTPUT = SREF (STRING, BYTEIDX); \ |
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
418 BYTEIDX++; \ |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
419 MAKE_CHAR_MULTIBYTE (OUTPUT); \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
420 } \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
421 } \ |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
422 while (0) |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
423 |
88363 | 424 |
425 /* Like FETCH_STRING_CHAR_ADVANCE but assumes STRING is multibyte. */ | |
426 | |
427 #define FETCH_STRING_CHAR_ADVANCE_NO_CHECK(OUTPUT, STRING, CHARIDX, BYTEIDX) \ | |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
428 do \ |
88363 | 429 { \ |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
430 unsigned char *ptr = &SDATA (STRING)[BYTEIDX]; \ |
88363 | 431 int len; \ |
432 \ | |
433 OUTPUT = STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
434 BYTEIDX += len; \ | |
435 CHARIDX++; \ | |
436 } \ | |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
437 while (0) |
88363 | 438 |
439 | |
440 /* Like FETCH_STRING_CHAR_ADVANCE but fetch character from the current | |
441 buffer. */ | |
442 | |
443 #define FETCH_CHAR_ADVANCE(OUTPUT, CHARIDX, BYTEIDX) \ | |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
444 do \ |
88363 | 445 { \ |
446 CHARIDX++; \ | |
447 if (!NILP (current_buffer->enable_multibyte_characters)) \ | |
448 { \ | |
449 unsigned char *ptr = BYTE_POS_ADDR (BYTEIDX); \ | |
450 int len; \ | |
451 \ | |
452 OUTPUT= STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
453 BYTEIDX += len; \ | |
454 } \ | |
455 else \ | |
456 { \ | |
457 OUTPUT = *(BYTE_POS_ADDR (BYTEIDX)); \ | |
458 BYTEIDX++; \ | |
459 } \ | |
460 } \ | |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
461 while (0) |
88363 | 462 |
463 | |
89887
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
464 /* Like FETCH_CHAR_ADVANCE but assumes the current buffer is multibyte. */ |
88363 | 465 |
466 #define FETCH_CHAR_ADVANCE_NO_CHECK(OUTPUT, CHARIDX, BYTEIDX) \ | |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
467 do \ |
88363 | 468 { \ |
469 unsigned char *ptr = BYTE_POS_ADDR (BYTEIDX); \ | |
470 int len; \ | |
471 \ | |
472 OUTPUT= STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
473 BYTEIDX += len; \ | |
474 CHARIDX++; \ | |
475 } \ | |
91620
acb32817f0e8
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91444
diff
changeset
|
476 while (0) |
88363 | 477 |
478 | |
479 /* Increase the buffer byte position POS_BYTE of the current buffer to | |
480 the next character boundary. No range checking of POS. */ | |
481 | |
482 #define INC_POS(pos_byte) \ | |
483 do { \ | |
484 unsigned char *p = BYTE_POS_ADDR (pos_byte); \ | |
485 pos_byte += BYTES_BY_CHAR_HEAD (*p); \ | |
486 } while (0) | |
487 | |
488 | |
489 /* Decrease the buffer byte position POS_BYTE of the current buffer to | |
490 the previous character boundary. No range checking of POS. */ | |
491 | |
492 #define DEC_POS(pos_byte) \ | |
493 do { \ | |
494 unsigned char *p; \ | |
495 \ | |
496 pos_byte--; \ | |
497 if (pos_byte < GPT_BYTE) \ | |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
498 p = BEG_ADDR + pos_byte - BEG_BYTE; \ |
88363 | 499 else \ |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
500 p = BEG_ADDR + GAP_SIZE + pos_byte - BEG_BYTE;\ |
88363 | 501 while (!CHAR_HEAD_P (*p)) \ |
502 { \ | |
503 p--; \ | |
504 pos_byte--; \ | |
505 } \ | |
506 } while (0) | |
507 | |
508 /* Increment both CHARPOS and BYTEPOS, each in the appropriate way. */ | |
509 | |
510 #define INC_BOTH(charpos, bytepos) \ | |
511 do \ | |
512 { \ | |
513 (charpos)++; \ | |
514 if (NILP (current_buffer->enable_multibyte_characters)) \ | |
515 (bytepos)++; \ | |
516 else \ | |
517 INC_POS ((bytepos)); \ | |
518 } \ | |
519 while (0) | |
520 | |
521 | |
522 /* Decrement both CHARPOS and BYTEPOS, each in the appropriate way. */ | |
523 | |
524 #define DEC_BOTH(charpos, bytepos) \ | |
525 do \ | |
526 { \ | |
527 (charpos)--; \ | |
528 if (NILP (current_buffer->enable_multibyte_characters)) \ | |
529 (bytepos)--; \ | |
530 else \ | |
531 DEC_POS ((bytepos)); \ | |
532 } \ | |
533 while (0) | |
534 | |
535 | |
536 /* Increase the buffer byte position POS_BYTE of the current buffer to | |
537 the next character boundary. This macro relies on the fact that | |
538 *GPT_ADDR and *Z_ADDR are always accessible and the values are | |
539 '\0'. No range checking of POS_BYTE. */ | |
540 | |
541 #define BUF_INC_POS(buf, pos_byte) \ | |
542 do { \ | |
543 unsigned char *p = BUF_BYTE_ADDRESS (buf, pos_byte); \ | |
544 pos_byte += BYTES_BY_CHAR_HEAD (*p); \ | |
545 } while (0) | |
546 | |
547 | |
548 /* Decrease the buffer byte position POS_BYTE of the current buffer to | |
549 the previous character boundary. No range checking of POS_BYTE. */ | |
550 | |
551 #define BUF_DEC_POS(buf, pos_byte) \ | |
552 do { \ | |
553 unsigned char *p; \ | |
554 pos_byte--; \ | |
555 if (pos_byte < BUF_GPT_BYTE (buf)) \ | |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
556 p = BUF_BEG_ADDR (buf) + pos_byte - BEG_BYTE; \ |
88363 | 557 else \ |
91805
c330bf7419fd
(FETCH_STRING_CHAR_ADVANCE, FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91620
diff
changeset
|
558 p = BUF_BEG_ADDR (buf) + BUF_GAP_SIZE (buf) + pos_byte - BEG_BYTE;\ |
88363 | 559 while (!CHAR_HEAD_P (*p)) \ |
560 { \ | |
561 p--; \ | |
562 pos_byte--; \ | |
563 } \ | |
564 } while (0) | |
565 | |
566 | |
89887
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
567 /* If C is a character to be unified with a Unicode character, return |
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
568 the unified Unicode character. */ |
028a1f06f612
(LEADING_CODE_LATIN_1_MIN) (LEADING_CODE_LATIN_1_MAX): Delete these
Kenichi Handa <handa@m17n.org>
parents:
89692
diff
changeset
|
569 |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
570 #define MAYBE_UNIFY_CHAR(c) \ |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
571 if (c > MAX_UNICODE_CHAR \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
572 && CHAR_TABLE_P (Vchar_unify_table)) \ |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
573 { \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
574 Lisp_Object val; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
575 int unified; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
576 \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
577 val = CHAR_TABLE_REF (Vchar_unify_table, c); \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
578 if (! NILP (val)) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
579 { \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
580 if (SYMBOLP (val)) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
581 { \ |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
582 Funify_charset (val, Qnil, Qnil); \ |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
583 val = CHAR_TABLE_REF (Vchar_unify_table, c); \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
584 } \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
585 if ((unified = XINT (val)) >= 0) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
586 c = unified; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
587 } \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
588 } \ |
88363 | 589 else |
590 | |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
591 |
88363 | 592 /* Return the width of ASCII character C. The width is measured by |
593 how many columns occupied on the screen when displayed in the | |
594 current buffer. */ | |
595 | |
596 #define ASCII_CHAR_WIDTH(c) \ | |
597 (c < 0x20 \ | |
598 ? (c == '\t' \ | |
599 ? XFASTINT (current_buffer->tab_width) \ | |
600 : (c == '\n' ? 0 : (NILP (current_buffer->ctl_arrow) ? 4 : 2))) \ | |
601 : (c < 0x7f \ | |
602 ? 1 \ | |
603 : ((NILP (current_buffer->ctl_arrow) ? 4 : 2)))) | |
604 | |
605 /* Return the width of character C. The width is measured by how many | |
606 columns occupied on the screen when displayed in the current | |
607 buffer. */ | |
608 | |
609 #define CHAR_WIDTH(c) \ | |
610 (ASCII_CHAR_P (c) \ | |
611 ? ASCII_CHAR_WIDTH (c) \ | |
612 : XINT (CHAR_TABLE_REF (Vchar_width_table, c))) | |
613 | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
614 extern int char_resolve_modifier_mask P_ ((int)); |
90798
ad70c7654800
(CHAR_STRING): Cast C to unsigned on calling
Kenichi Handa <handa@m17n.org>
parents:
90791
diff
changeset
|
615 extern int char_string P_ ((unsigned, unsigned char *)); |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
616 extern int string_char P_ ((const unsigned char *, |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
617 const unsigned char **, int *)); |
88363 | 618 |
619 extern int translate_char P_ ((Lisp_Object, int c)); | |
620 extern int char_printable_p P_ ((int c)); | |
89483 | 621 extern void parse_str_as_multibyte P_ ((const unsigned char *, int, int *, |
622 int *)); | |
88363 | 623 extern int parse_str_to_multibyte P_ ((unsigned char *, int)); |
624 extern int str_as_multibyte P_ ((unsigned char *, int, int, int *)); | |
625 extern int str_to_multibyte P_ ((unsigned char *, int, int)); | |
626 extern int str_as_unibyte P_ ((unsigned char *, int)); | |
627 extern int strwidth P_ ((unsigned char *, int)); | |
89483 | 628 extern int c_string_width P_ ((const unsigned char *, int, int, int *, int *)); |
88363 | 629 extern int lisp_string_width P_ ((Lisp_Object, int, int *, int *)); |
630 | |
631 extern Lisp_Object Vprintable_chars; | |
632 | |
633 extern Lisp_Object Qcharacterp, Qauto_fill_chars; | |
634 extern Lisp_Object Vtranslation_table_vector; | |
635 extern Lisp_Object Vchar_width_table; | |
636 extern Lisp_Object Vchar_direction_table; | |
637 extern Lisp_Object Vchar_unify_table; | |
638 | |
88545 | 639 extern Lisp_Object string_escape_byte8 P_ ((Lisp_Object)); |
640 | |
88363 | 641 /* Return a translation table of id number ID. */ |
642 #define GET_TRANSLATION_TABLE(id) \ | |
643 (XCDR(XVECTOR(Vtranslation_table_vector)->contents[(id)])) | |
644 | |
645 /* A char-table for characters which may invoke auto-filling. */ | |
646 extern Lisp_Object Vauto_fill_chars; | |
647 | |
88915
94184802d0cc
(Vchar_script_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
88873
diff
changeset
|
648 extern Lisp_Object Vchar_script_table; |
90402
69ac9cbd4be5
(Vscript_representative_chars): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
90051
diff
changeset
|
649 extern Lisp_Object Vscript_representative_chars; |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
650 |
88363 | 651 /* Copy LEN bytes from FROM to TO. This macro should be used only |
652 when a caller knows that LEN is short and the obvious copy loop is | |
653 faster than calling bcopy which has some overhead. Copying a | |
654 multibyte sequence of a character is the typical case. */ | |
655 | |
656 #define BCOPY_SHORT(from, to, len) \ | |
657 do { \ | |
658 int i = len; \ | |
659 unsigned char *from_p = from, *to_p = to; \ | |
660 while (i--) *to_p++ = *from_p++; \ | |
661 } while (0) | |
662 | |
663 #define DEFSYM(sym, name) \ | |
664 do { (sym) = intern ((name)); staticpro (&(sym)); } while (0) | |
665 | |
666 #endif /* EMACS_CHARACTER_H */ | |
89911 | 667 |
668 /* arch-tag: 4ef86004-2eff-4073-8cea-cfcbcf7188ac | |
669 (do not change this comment) */ |