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