Mercurial > emacs
annotate src/charset.c @ 25507:b9b4581adf36
(Fsubst_char_in_region): Adjust the way to check byte-combining
possibility for the new handling of multibyte sequence.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 03 Sep 1999 01:28:42 +0000 |
parents | ba0ad349e792 |
children | 01026ea61dcc |
rev | line source |
---|---|
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18003
diff
changeset
|
1 /* Basic multilingual character support. |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN. |
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18003
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 /* At first, see the document in `charset.h' to understand the code in | |
23 this file. */ | |
24 | |
25 #include <stdio.h> | |
26 | |
27 #ifdef emacs | |
28 | |
29 #include <sys/types.h> | |
30 #include <config.h> | |
31 #include "lisp.h" | |
32 #include "buffer.h" | |
33 #include "charset.h" | |
34 #include "coding.h" | |
17843 | 35 #include "disptab.h" |
17052 | 36 |
37 #else /* not emacs */ | |
38 | |
39 #include "mulelib.h" | |
40 | |
41 #endif /* emacs */ | |
42 | |
43 Lisp_Object Qcharset, Qascii, Qcomposition; | |
23883 | 44 Lisp_Object Qunknown; |
17052 | 45 |
46 /* Declaration of special leading-codes. */ | |
47 int leading_code_composition; /* for composite characters */ | |
48 int leading_code_private_11; /* for private DIMENSION1 of 1-column */ | |
49 int leading_code_private_12; /* for private DIMENSION1 of 2-column */ | |
50 int leading_code_private_21; /* for private DIMENSION2 of 1-column */ | |
51 int leading_code_private_22; /* for private DIMENSION2 of 2-column */ | |
52 | |
53 /* Declaration of special charsets. */ | |
54 int charset_ascii; /* ASCII */ | |
55 int charset_composition; /* for a composite character */ | |
56 int charset_latin_iso8859_1; /* ISO8859-1 (Latin-1) */ | |
57 int charset_jisx0208_1978; /* JISX0208.1978 (Japanese Kanji old set) */ | |
58 int charset_jisx0208; /* JISX0208.1983 (Japanese Kanji) */ | |
59 int charset_katakana_jisx0201; /* JISX0201.Kana (Japanese Katakana) */ | |
60 int charset_latin_jisx0201; /* JISX0201.Roman (Japanese Roman) */ | |
61 int charset_big5_1; /* Big5 Level 1 (Chinese Traditional) */ | |
62 int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */ | |
63 | |
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
64 int min_composite_char; |
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
65 |
17052 | 66 Lisp_Object Qcharset_table; |
67 | |
68 /* A char-table containing information of each character set. */ | |
69 Lisp_Object Vcharset_table; | |
70 | |
71 /* A vector of charset symbol indexed by charset-id. This is used | |
72 only for returning charset symbol from C functions. */ | |
73 Lisp_Object Vcharset_symbol_table; | |
74 | |
75 /* A list of charset symbols ever defined. */ | |
76 Lisp_Object Vcharset_list; | |
77 | |
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
78 /* Vector of translation table ever defined. |
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
79 ID of a translation table is used to index this vector. */ |
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
80 Lisp_Object Vtranslation_table_vector; |
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
81 |
23489
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
82 /* A char-table for characters which may invoke auto-filling. */ |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
83 Lisp_Object Vauto_fill_chars; |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
84 |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
85 Lisp_Object Qauto_fill_chars; |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
86 |
17052 | 87 /* Tables used by macros BYTES_BY_CHAR_HEAD and WIDTH_BY_CHAR_HEAD. */ |
88 int bytes_by_char_head[256]; | |
89 int width_by_char_head[256]; | |
90 | |
91 /* Mapping table from ISO2022's charset (specified by DIMENSION, | |
92 CHARS, and FINAL-CHAR) to Emacs' charset. */ | |
93 int iso_charset_table[2][2][128]; | |
94 | |
17186
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
95 /* Table of pointers to the structure `cmpchar_info' indexed by |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
96 CMPCHAR-ID. */ |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
97 struct cmpchar_info **cmpchar_table; |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
98 /* The current size of `cmpchar_table'. */ |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
99 static int cmpchar_table_size; |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
100 /* Number of the current composite characters. */ |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
101 int n_cmpchars; |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
102 |
17052 | 103 /* Variables used locally in the macro FETCH_MULTIBYTE_CHAR. */ |
104 unsigned char *_fetch_multibyte_char_p; | |
105 int _fetch_multibyte_char_len; | |
106 | |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
107 /* Offset to add to a non-ASCII value when inserting it. */ |
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
108 int nonascii_insert_offset; |
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
109 |
20890
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
110 /* Translation table for converting non-ASCII unibyte characters |
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
111 to multibyte codes, or nil. */ |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
112 Lisp_Object Vnonascii_translation_table; |
20890
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
113 |
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
114 /* List of all possible generic characters. */ |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
115 Lisp_Object Vgeneric_character_list; |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
116 |
19384 | 117 #define min(X, Y) ((X) < (Y) ? (X) : (Y)) |
118 #define max(X, Y) ((X) > (Y) ? (X) : (Y)) | |
119 | |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
120 void |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
121 invalid_character (c) |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
122 int c; |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
123 { |
23397
2fe04027242e
(invalid_character): Prepend `0' to octal
Kenichi Handa <handa@m17n.org>
parents:
23210
diff
changeset
|
124 error ("Invalid character: 0%o, %d, 0x%x", c, c, c); |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
125 } |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
126 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
127 /* Parse string STR of length LENGTH (>= 2) and check if a composite |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
128 character is at STR. If there is a valid composite character, set |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
129 CHARSET, C1, and C2 to proper values so that MAKE_CHAR can compose |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
130 the composite character from them. Otherwise, set CHARSET to |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
131 CHARSET_COMPOSITION, but set C1 to the second byte of the sequence, |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
132 C2 to -1 so that MAKE_CHAR can compose the invalid multibyte |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
133 character whose string representation is two bytes of STR[0] and |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
134 STR[1]. In any case, set BYTES to LENGTH. */ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
135 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
136 #define SPLIT_COMPOSITE_SEQ(str, length, bytes, charset, c1, c2) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
137 do { \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
138 int cmpchar_id = str_cmpchar_id ((str), (length)); \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
139 \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
140 (charset) = CHARSET_COMPOSITION; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
141 (bytes) = (length); \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
142 if (cmpchar_id >= 0) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
143 { \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
144 (c1) = CHAR_FIELD2 (cmpchar_id); \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
145 (c2) = CHAR_FIELD3 (cmpchar_id); \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
146 } \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
147 else \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
148 { \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
149 (c1) = (str)[1] & 0x7F; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
150 (c2) = -1; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
151 } \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
152 } while (0) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
153 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
154 /* Parse string STR of length LENGTH (>= 2) and check if a |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
155 non-composite multibyte character is at STR. Set BYTES to the |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
156 actual length, CHARSET, C1, and C2 to proper values so that |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
157 MAKE_CHAR can compose the multibyte character from them. */ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
158 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
159 #define SPLIT_CHARACTER_SEQ(str, length, bytes, charset, c1, c2) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
160 do { \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
161 (bytes) = 1; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
162 (charset) = (str)[0]; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
163 if ((charset) >= LEADING_CODE_PRIVATE_11 \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
164 && (charset) <= LEADING_CODE_PRIVATE_22) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
165 (charset) = (str)[(bytes)++]; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
166 if ((bytes) < (length)) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
167 { \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
168 (c1) = (str)[(bytes)++] & 0x7F; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
169 if ((bytes) < (length)) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
170 (c2) = (str)[(bytes)++] & 0x7F; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
171 else \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
172 (c2) = -1; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
173 } \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
174 else \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
175 (c1) = (c2) = -1; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
176 } while (0) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
177 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
178 /* Parse string STR of length LENGTH and check if a multibyte |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
179 characters is at STR. set BYTES to the actual length, CHARSET, C1, |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
180 C2 to proper values for that character. */ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
181 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
182 #define SPLIT_MULTIBYTE_SEQ(str, length, bytes, charset, c1, c2) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
183 do { \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
184 int i; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
185 for (i = 1; i < (length) && ! CHAR_HEAD_P ((str)[i]); i++); \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
186 if (i == 1) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
187 (bytes) = 1, (charset) = CHARSET_ASCII, (c1) = (str)[0] ; \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
188 else if ((str)[0] == LEADING_CODE_COMPOSITION) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
189 SPLIT_COMPOSITE_SEQ (str, i, bytes, charset, c1, c2); \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
190 else \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
191 { \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
192 if (i > BYTES_BY_CHAR_HEAD ((str)[0])) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
193 i = BYTES_BY_CHAR_HEAD ((str)[0]); \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
194 SPLIT_CHARACTER_SEQ (str, i, bytes, charset, c1, c2); \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
195 } \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
196 } while (0) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
197 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
198 /* 1 if CHARSET, C1, and C2 compose a valid character, else 0. */ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
199 #define CHAR_COMPONENT_VALID_P(charset, c1, c2) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
200 (CHARSET_DIMENSION (charset) == 1 \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
201 ? ((c1) >= 0x20 && (c1) <= 0x7F) \ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
202 : ((c1) >= 0x20 && (c1) <= 0x7F && (c2) >= 0x20 && (c2) <= 0x7F)) |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
203 |
17052 | 204 /* Set STR a pointer to the multi-byte form of the character C. If C |
205 is not a composite character, the multi-byte form is set in WORKBUF | |
206 and STR points WORKBUF. The caller should allocate at least 4-byte | |
207 area at WORKBUF in advance. Returns the length of the multi-byte | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
208 form. If C is an invalid character, store (C & 0xFF) in WORKBUF[0] |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
209 and return 1. |
17052 | 210 |
211 Use macro `CHAR_STRING (C, WORKBUF, STR)' instead of calling this | |
212 function directly if C can be an ASCII character. */ | |
213 | |
214 int | |
215 non_ascii_char_to_string (c, workbuf, str) | |
216 int c; | |
217 unsigned char *workbuf, **str; | |
218 { | |
25250
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
219 if (c & CHAR_MODIFIER_MASK) /* This includes the case C is negative. */ |
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
220 { |
25250
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
221 /* Multibyte character can't have a modifier bit. */ |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
222 if (! SINGLE_BYTE_CHAR_P ((c & ~CHAR_MODIFIER_MASK))) |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
223 invalid_character (c); |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
224 |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
225 /* For Meta, Shift, and Control modifiers, we need special care. */ |
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
226 if (c & CHAR_META) |
25250
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
227 { |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
228 /* Move the meta bit to the right place for a string. */ |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
229 c = (c & ~CHAR_META) | 0x80; |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
230 } |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
231 if (c & CHAR_SHIFT) |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
232 { |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
233 /* Shift modifier is valid only with [A-Za-z]. */ |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
234 if ((c & 0377) >= 'A' && (c & 0377) <= 'Z') |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
235 c &= ~CHAR_SHIFT; |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
236 else if ((c & 0377) >= 'a' && (c & 0377) <= 'z') |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
237 c = (c & ~CHAR_SHIFT) - ('a' - 'A'); |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
238 } |
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
239 if (c & CHAR_CTL) |
25250
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
240 { |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
241 /* Simulate the code in lread.c. */ |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
242 /* Allow `\C- ' and `\C-?'. */ |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
243 if (c == (CHAR_CTL | ' ')) |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
244 c = 0; |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
245 else if (c == (CHAR_CTL | '?')) |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
246 c = 127; |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
247 /* ASCII control chars are made from letters (both cases), |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
248 as well as the non-letters within 0100...0137. */ |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
249 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132) |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
250 c &= (037 | (~0177 & ~CHAR_CTL)); |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
251 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137) |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
252 c &= (037 | (~0177 & ~CHAR_CTL)); |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
253 } |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
254 |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
255 /* If C still has any modifier bits, it is an invalid character. */ |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
256 if (c & CHAR_MODIFIER_MASK) |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
257 invalid_character (c); |
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
258 |
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
259 *str = workbuf; |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
260 *workbuf++ = c; |
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
261 } |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
262 else |
17052 | 263 { |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
264 int charset, c1, c2; |
17052 | 265 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
266 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
267 if (charset == CHARSET_COMPOSITION) |
17052 | 268 { |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
269 if (c >= MAX_CHAR) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
270 invalid_character (c); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
271 if (c >= MIN_CHAR_COMPOSITION) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
272 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
273 /* Valid composite character. */ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
274 *str = cmpchar_table[COMPOSITE_CHAR_ID (c)]->data; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
275 workbuf = *str + cmpchar_table[COMPOSITE_CHAR_ID (c)]->len; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
276 } |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
277 else |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
278 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
279 /* Invalid but can have multibyte form. */ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
280 *str = workbuf; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
281 *workbuf++ = LEADING_CODE_COMPOSITION; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
282 *workbuf++ = c1 | 0x80; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
283 } |
17052 | 284 } |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
285 else if (charset > CHARSET_COMPOSITION) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
286 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
287 *str = workbuf; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
288 if (charset >= LEADING_CODE_EXT_11) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
289 *workbuf++ = (charset < LEADING_CODE_EXT_12 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
290 ? LEADING_CODE_PRIVATE_11 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
291 : (charset < LEADING_CODE_EXT_21 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
292 ? LEADING_CODE_PRIVATE_12 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
293 : (charset < LEADING_CODE_EXT_22 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
294 ? LEADING_CODE_PRIVATE_21 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
295 : LEADING_CODE_PRIVATE_22))); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
296 *workbuf++ = charset; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
297 if (c1 > 0 && c1 < 32 || c2 > 0 && c2 < 32) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
298 invalid_character (c); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
299 if (c1) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
300 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
301 *workbuf++ = c1 | 0x80; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
302 if (c2 > 0) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
303 *workbuf++ = c2 | 0x80; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
304 } |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
305 } |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
306 else if (charset == CHARSET_ASCII) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
307 *workbuf++= c & 0x7F; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
308 else |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
309 invalid_character (c); |
17052 | 310 } |
311 | |
312 return (workbuf - *str); | |
313 } | |
314 | |
315 /* Return a non-ASCII character of which multi-byte form is at STR of | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
316 length LEN. If ACTUAL_LEN is not NULL, the byte length of the |
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
317 multibyte form is set to the address ACTUAL_LEN. |
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
318 |
17052 | 319 Use macro `STRING_CHAR (STR, LEN)' instead of calling this function |
320 directly if STR can hold an ASCII character. */ | |
321 | |
21514 | 322 int |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
323 string_to_non_ascii_char (str, len, actual_len) |
21419
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21255
diff
changeset
|
324 const unsigned char *str; |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
325 int len, *actual_len; |
17052 | 326 { |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
327 int c, bytes, charset, c1, c2; |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
328 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
329 SPLIT_MULTIBYTE_SEQ (str, len, bytes, charset, c1, c2); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
330 c = MAKE_CHAR (charset, c1, c2); |
17052 | 331 if (actual_len) |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
332 *actual_len = bytes; |
17052 | 333 return c; |
334 } | |
335 | |
336 /* Return the length of the multi-byte form at string STR of length LEN. */ | |
337 int | |
338 multibyte_form_length (str, len) | |
21419
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21255
diff
changeset
|
339 const unsigned char *str; |
17052 | 340 int len; |
341 { | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
342 int bytes; |
17052 | 343 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
344 PARSE_MULTIBYTE_SEQ (str, len, bytes); |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
345 return bytes; |
17052 | 346 } |
347 | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
348 /* Check multibyte form at string STR of length LEN and set variables |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
349 pointed by CHARSET, C1, and C2 to charset and position codes of the |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
350 character at STR, and return 0. If there's no multibyte character, |
17052 | 351 return -1. This should be used only in the macro SPLIT_STRING |
352 which checks range of STR in advance. */ | |
353 | |
21514 | 354 int |
17052 | 355 split_non_ascii_string (str, len, charset, c1, c2) |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
356 const unsigned char *str; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
357 unsigned char *c1, *c2; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
358 int len, *charset; |
17052 | 359 { |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
360 register int bytes, cs, code1, code2 = -1; |
17052 | 361 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
362 SPLIT_MULTIBYTE_SEQ (str, len, bytes, cs, code1, code2); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
363 if (cs == CHARSET_ASCII) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
364 return -1; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
365 *charset = cs; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
366 *c1 = code1; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
367 *c2 = code2; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
368 } |
17052 | 369 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
370 /* Return 1 iff character C has valid printable glyph. */ |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
371 int |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
372 char_printable_p (c) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
373 int c; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
374 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
375 int charset, c1, c2, chars; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
376 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
377 if (SINGLE_BYTE_CHAR_P (c)) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
378 return 1; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
379 if (c >= MIN_CHAR_COMPOSITION) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
380 return (c < MAX_CHAR); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
381 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
382 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
383 if (! CHARSET_DEFINED_P (charset)) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
384 return 0; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
385 if (CHARSET_CHARS (charset) == 94 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
386 ? c1 <= 32 || c1 >= 127 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
387 : c1 < 32) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
388 return 0; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
389 if (CHARSET_DIMENSION (charset) == 2 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
390 && (CHARSET_CHARS (charset) == 94 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
391 ? c2 <= 32 || c2 >= 127 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
392 : c2 < 32)) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
393 return 0; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
394 return 1; |
17052 | 395 } |
396 | |
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
397 /* Translate character C by translation table TABLE. If C |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
398 is negative, translate a character specified by CHARSET, C1, and C2 |
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
399 (C1 and C2 are code points of the character). If no translation is |
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
400 found in TABLE, return C. */ |
21514 | 401 int |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
402 translate_char (table, c, charset, c1, c2) |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
403 Lisp_Object table; |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
404 int c, charset, c1, c2; |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
405 { |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
406 Lisp_Object ch; |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
407 int alt_charset, alt_c1, alt_c2, dimension; |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
408 |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
409 if (c < 0) c = MAKE_CHAR (charset, c1, c2); |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
410 if (!CHAR_TABLE_P (table) |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
411 || (ch = Faref (table, make_number (c)), !NATNUMP (ch))) |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
412 return c; |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
413 |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
414 SPLIT_CHAR (XFASTINT (ch), alt_charset, alt_c1, alt_c2); |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
415 dimension = CHARSET_DIMENSION (alt_charset); |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
416 if (dimension == 1 && alt_c1 > 0 || dimension == 2 && alt_c2 > 0) |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
417 /* CH is not a generic character, just return it. */ |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
418 return XFASTINT (ch); |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
419 |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
420 /* Since CH is a generic character, we must return a specific |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
421 charater which has the same position codes as C from CH. */ |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
422 if (charset < 0) |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
423 SPLIT_CHAR (c, charset, c1, c2); |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
424 if (dimension != CHARSET_DIMENSION (charset)) |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
425 /* We can't make such a character because of dimension mismatch. */ |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
426 return c; |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
427 return MAKE_CHAR (alt_charset, c1, c2); |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
428 } |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
429 |
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
430 /* Convert the unibyte character C to multibyte based on |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
431 Vnonascii_translation_table or nonascii_insert_offset. If they can't |
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
432 convert C to a valid multibyte character, convert it based on |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
433 DEFAULT_NONASCII_INSERT_OFFSET which makes C a Latin-1 character. */ |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
434 |
21514 | 435 int |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
436 unibyte_char_to_multibyte (c) |
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
437 int c; |
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
438 { |
23928
b718a88bb2b1
(unibyte_char_to_multibyte): Don't convert 7-bit ASCII characters via
Eli Zaretskii <eliz@gnu.org>
parents:
23883
diff
changeset
|
439 if (c < 0400 && c >= 0200) |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
440 { |
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
441 int c_save = c; |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
442 |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
443 if (! NILP (Vnonascii_translation_table)) |
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
444 { |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
445 c = XINT (Faref (Vnonascii_translation_table, make_number (c))); |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
446 if (c >= 0400 && ! char_valid_p (c, 0)) |
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
447 c = c_save + DEFAULT_NONASCII_INSERT_OFFSET; |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
448 } |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
449 else if (c >= 0240 && nonascii_insert_offset > 0) |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
450 { |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
451 c += nonascii_insert_offset; |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
452 if (c < 0400 || ! char_valid_p (c, 0)) |
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
453 c = c_save + DEFAULT_NONASCII_INSERT_OFFSET; |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
454 } |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
455 else if (c >= 0240) |
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
456 c = c_save + DEFAULT_NONASCII_INSERT_OFFSET; |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
457 } |
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
458 return c; |
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
459 } |
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
460 |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
461 |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
462 /* Convert the multibyte character C to unibyte 8-bit character based |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
463 on Vnonascii_translation_table or nonascii_insert_offset. If |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
464 REV_TBL is non-nil, it should be a reverse table of |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
465 Vnonascii_translation_table, i.e. what given by: |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
466 Fchar_table_extra_slot (Vnonascii_translation_table, make_number (0)) */ |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
467 |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
468 int |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
469 multibyte_char_to_unibyte (c, rev_tbl) |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
470 int c; |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
471 Lisp_Object rev_tbl; |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
472 { |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
473 if (!SINGLE_BYTE_CHAR_P (c)) |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
474 { |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
475 int c_save = c; |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
476 |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
477 if (! CHAR_TABLE_P (rev_tbl) |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
478 && CHAR_TABLE_P (Vnonascii_translation_table)) |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
479 rev_tbl = Fchar_table_extra_slot (Vnonascii_translation_table, |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
480 make_number (0)); |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
481 if (CHAR_TABLE_P (rev_tbl)) |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
482 { |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
483 Lisp_Object temp; |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
484 temp = Faref (rev_tbl, make_number (c)); |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
485 if (INTEGERP (temp)) |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
486 c = XINT (temp); |
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
487 if (c >= 256) |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
488 c = (c_save & 0177) + 0200; |
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
489 } |
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
490 else |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
491 { |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
492 if (nonascii_insert_offset > 0) |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
493 c -= nonascii_insert_offset; |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
494 if (c < 128 || c >= 256) |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
495 c = (c_save & 0177) + 0200; |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
496 } |
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
497 } |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
498 |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
499 return c; |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
500 } |
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
501 |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
502 |
17052 | 503 /* Update the table Vcharset_table with the given arguments (see the |
504 document of `define-charset' for the meaning of each argument). | |
505 Several other table contents are also updated. The caller should | |
506 check the validity of CHARSET-ID and the remaining arguments in | |
507 advance. */ | |
508 | |
509 void | |
510 update_charset_table (charset_id, dimension, chars, width, direction, | |
511 iso_final_char, iso_graphic_plane, | |
512 short_name, long_name, description) | |
513 Lisp_Object charset_id, dimension, chars, width, direction; | |
514 Lisp_Object iso_final_char, iso_graphic_plane; | |
515 Lisp_Object short_name, long_name, description; | |
516 { | |
517 int charset = XINT (charset_id); | |
518 int bytes; | |
519 unsigned char leading_code_base, leading_code_ext; | |
520 | |
17322
a7d9b8e167ca
(non_ascii_char_to_string, update_charset_table,
Kenichi Handa <handa@m17n.org>
parents:
17186
diff
changeset
|
521 if (NILP (CHARSET_TABLE_ENTRY (charset))) |
a7d9b8e167ca
(non_ascii_char_to_string, update_charset_table,
Kenichi Handa <handa@m17n.org>
parents:
17186
diff
changeset
|
522 CHARSET_TABLE_ENTRY (charset) |
a7d9b8e167ca
(non_ascii_char_to_string, update_charset_table,
Kenichi Handa <handa@m17n.org>
parents:
17186
diff
changeset
|
523 = Fmake_vector (make_number (CHARSET_MAX_IDX), Qnil); |
17052 | 524 |
525 /* Get byte length of multibyte form, base leading-code, and | |
526 extended leading-code of the charset. See the comment under the | |
527 title "GENERAL NOTE on CHARACTER SET (CHARSET)" in charset.h. */ | |
528 bytes = XINT (dimension); | |
529 if (charset < MIN_CHARSET_PRIVATE_DIMENSION1) | |
530 { | |
531 /* Official charset, it doesn't have an extended leading-code. */ | |
532 if (charset != CHARSET_ASCII) | |
533 bytes += 1; /* For a base leading-code. */ | |
534 leading_code_base = charset; | |
535 leading_code_ext = 0; | |
536 } | |
537 else | |
538 { | |
539 /* Private charset. */ | |
540 bytes += 2; /* For base and extended leading-codes. */ | |
541 leading_code_base | |
542 = (charset < LEADING_CODE_EXT_12 | |
543 ? LEADING_CODE_PRIVATE_11 | |
544 : (charset < LEADING_CODE_EXT_21 | |
545 ? LEADING_CODE_PRIVATE_12 | |
546 : (charset < LEADING_CODE_EXT_22 | |
547 ? LEADING_CODE_PRIVATE_21 | |
548 : LEADING_CODE_PRIVATE_22))); | |
549 leading_code_ext = charset; | |
550 } | |
551 | |
23628
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
552 if (BYTES_BY_CHAR_HEAD (leading_code_base) != bytes) |
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
553 error ("Invalid dimension for the charset-ID %d", charset); |
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
554 |
17052 | 555 CHARSET_TABLE_INFO (charset, CHARSET_ID_IDX) = charset_id; |
556 CHARSET_TABLE_INFO (charset, CHARSET_BYTES_IDX) = make_number (bytes); | |
557 CHARSET_TABLE_INFO (charset, CHARSET_DIMENSION_IDX) = dimension; | |
558 CHARSET_TABLE_INFO (charset, CHARSET_CHARS_IDX) = chars; | |
559 CHARSET_TABLE_INFO (charset, CHARSET_WIDTH_IDX) = width; | |
560 CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX) = direction; | |
561 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_BASE_IDX) | |
562 = make_number (leading_code_base); | |
563 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_EXT_IDX) | |
564 = make_number (leading_code_ext); | |
565 CHARSET_TABLE_INFO (charset, CHARSET_ISO_FINAL_CHAR_IDX) = iso_final_char; | |
566 CHARSET_TABLE_INFO (charset, CHARSET_ISO_GRAPHIC_PLANE_IDX) | |
567 = iso_graphic_plane; | |
568 CHARSET_TABLE_INFO (charset, CHARSET_SHORT_NAME_IDX) = short_name; | |
569 CHARSET_TABLE_INFO (charset, CHARSET_LONG_NAME_IDX) = long_name; | |
570 CHARSET_TABLE_INFO (charset, CHARSET_DESCRIPTION_IDX) = description; | |
571 CHARSET_TABLE_INFO (charset, CHARSET_PLIST_IDX) = Qnil; | |
572 | |
573 { | |
574 /* If we have already defined a charset which has the same | |
575 DIMENSION, CHARS and ISO-FINAL-CHAR but the different | |
576 DIRECTION, we must update the entry REVERSE-CHARSET of both | |
577 charsets. If there's no such charset, the value of the entry | |
578 is set to nil. */ | |
579 int i; | |
580 | |
17186
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
581 for (i = 0; i <= MAX_CHARSET; i++) |
17052 | 582 if (!NILP (CHARSET_TABLE_ENTRY (i))) |
583 { | |
584 if (CHARSET_DIMENSION (i) == XINT (dimension) | |
585 && CHARSET_CHARS (i) == XINT (chars) | |
586 && CHARSET_ISO_FINAL_CHAR (i) == XINT (iso_final_char) | |
587 && CHARSET_DIRECTION (i) != XINT (direction)) | |
588 { | |
589 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX) | |
590 = make_number (i); | |
591 CHARSET_TABLE_INFO (i, CHARSET_REVERSE_CHARSET_IDX) = charset_id; | |
592 break; | |
593 } | |
594 } | |
17186
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
595 if (i > MAX_CHARSET) |
17052 | 596 /* No such a charset. */ |
597 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX) | |
598 = make_number (-1); | |
599 } | |
600 | |
601 if (charset != CHARSET_ASCII | |
602 && charset < MIN_CHARSET_PRIVATE_DIMENSION1) | |
603 { | |
604 width_by_char_head[leading_code_base] = XINT (width); | |
605 | |
606 /* Update table emacs_code_class. */ | |
607 emacs_code_class[charset] = (bytes == 2 | |
608 ? EMACS_leading_code_2 | |
609 : (bytes == 3 | |
610 ? EMACS_leading_code_3 | |
611 : EMACS_leading_code_4)); | |
612 } | |
613 | |
614 /* Update table iso_charset_table. */ | |
615 if (ISO_CHARSET_TABLE (dimension, chars, iso_final_char) < 0) | |
616 ISO_CHARSET_TABLE (dimension, chars, iso_final_char) = charset; | |
617 } | |
618 | |
619 #ifdef emacs | |
620 | |
621 /* Return charset id of CHARSET_SYMBOL, or return -1 if CHARSET_SYMBOL | |
622 is invalid. */ | |
623 int | |
624 get_charset_id (charset_symbol) | |
625 Lisp_Object charset_symbol; | |
626 { | |
627 Lisp_Object val; | |
628 int charset; | |
629 | |
630 return ((SYMBOLP (charset_symbol) | |
631 && (val = Fget (charset_symbol, Qcharset), VECTORP (val)) | |
632 && (charset = XINT (XVECTOR (val)->contents[CHARSET_ID_IDX]), | |
633 CHARSET_VALID_P (charset))) | |
634 ? charset : -1); | |
635 } | |
636 | |
637 /* Return an identification number for a new private charset of | |
638 DIMENSION and WIDTH. If there's no more room for the new charset, | |
639 return 0. */ | |
640 Lisp_Object | |
641 get_new_private_charset_id (dimension, width) | |
642 int dimension, width; | |
643 { | |
644 int charset, from, to; | |
645 | |
646 if (dimension == 1) | |
647 { | |
648 if (width == 1) | |
649 from = LEADING_CODE_EXT_11, to = LEADING_CODE_EXT_12; | |
650 else | |
651 from = LEADING_CODE_EXT_12, to = LEADING_CODE_EXT_21; | |
652 } | |
653 else | |
654 { | |
655 if (width == 1) | |
656 from = LEADING_CODE_EXT_21, to = LEADING_CODE_EXT_22; | |
657 else | |
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
658 from = LEADING_CODE_EXT_22, to = LEADING_CODE_EXT_MAX + 1; |
17052 | 659 } |
660 | |
661 for (charset = from; charset < to; charset++) | |
662 if (!CHARSET_DEFINED_P (charset)) break; | |
663 | |
664 return make_number (charset < to ? charset : 0); | |
665 } | |
666 | |
667 DEFUN ("define-charset", Fdefine_charset, Sdefine_charset, 3, 3, 0, | |
668 "Define CHARSET-ID as the identification number of CHARSET with INFO-VECTOR.\n\ | |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
669 If CHARSET-ID is nil, it is decided automatically, which means CHARSET is\n\ |
17052 | 670 treated as a private charset.\n\ |
671 INFO-VECTOR is a vector of the format:\n\ | |
672 [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE\n\ | |
673 SHORT-NAME LONG-NAME DESCRIPTION]\n\ | |
674 The meanings of each elements is as follows:\n\ | |
675 DIMENSION (integer) is the number of bytes to represent a character: 1 or 2.\n\ | |
676 CHARS (integer) is the number of characters in a dimension: 94 or 96.\n\ | |
677 WIDTH (integer) is the number of columns a character in the charset\n\ | |
678 occupies on the screen: one of 0, 1, and 2.\n\ | |
679 \n\ | |
680 DIRECTION (integer) is the rendering direction of characters in the\n\ | |
22774
a0909e59257d
(Fdefine_charset): Fix doc-string.
Kenichi Handa <handa@m17n.org>
parents:
22739
diff
changeset
|
681 charset when rendering. If 0, render from left to right, else\n\ |
a0909e59257d
(Fdefine_charset): Fix doc-string.
Kenichi Handa <handa@m17n.org>
parents:
22739
diff
changeset
|
682 render from right to left.\n\ |
17052 | 683 \n\ |
684 ISO-FINAL-CHAR (character) is the final character of the\n\ | |
685 corresponding ISO 2022 charset.\n\ | |
686 \n\ | |
687 ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked\n\ | |
688 while encoding to variants of ISO 2022 coding system, one of the\n\ | |
689 following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR).\n\ | |
690 \n\ | |
691 SHORT-NAME (string) is the short name to refer to the charset.\n\ | |
692 \n\ | |
693 LONG-NAME (string) is the long name to refer to the charset.\n\ | |
694 \n\ | |
695 DESCRIPTION (string) is the description string of the charset.") | |
696 (charset_id, charset_symbol, info_vector) | |
697 Lisp_Object charset_id, charset_symbol, info_vector; | |
698 { | |
699 Lisp_Object *vec; | |
700 | |
701 if (!NILP (charset_id)) | |
702 CHECK_NUMBER (charset_id, 0); | |
703 CHECK_SYMBOL (charset_symbol, 1); | |
704 CHECK_VECTOR (info_vector, 2); | |
705 | |
706 if (! NILP (charset_id)) | |
707 { | |
708 if (! CHARSET_VALID_P (XINT (charset_id))) | |
709 error ("Invalid CHARSET: %d", XINT (charset_id)); | |
710 else if (CHARSET_DEFINED_P (XINT (charset_id))) | |
711 error ("Already defined charset: %d", XINT (charset_id)); | |
712 } | |
713 | |
714 vec = XVECTOR (info_vector)->contents; | |
715 if (XVECTOR (info_vector)->size != 9 | |
716 || !INTEGERP (vec[0]) || !(XINT (vec[0]) == 1 || XINT (vec[0]) == 2) | |
717 || !INTEGERP (vec[1]) || !(XINT (vec[1]) == 94 || XINT (vec[1]) == 96) | |
718 || !INTEGERP (vec[2]) || !(XINT (vec[2]) == 1 || XINT (vec[2]) == 2) | |
719 || !INTEGERP (vec[3]) || !(XINT (vec[3]) == 0 || XINT (vec[3]) == 1) | |
720 || !INTEGERP (vec[4]) || !(XINT (vec[4]) >= '0' && XINT (vec[4]) <= '~') | |
721 || !INTEGERP (vec[5]) || !(XINT (vec[5]) == 0 || XINT (vec[5]) == 1) | |
722 || !STRINGP (vec[6]) | |
723 || !STRINGP (vec[7]) | |
724 || !STRINGP (vec[8])) | |
725 error ("Invalid info-vector argument for defining charset %s", | |
726 XSYMBOL (charset_symbol)->name->data); | |
727 | |
728 if (NILP (charset_id)) | |
729 { | |
730 charset_id = get_new_private_charset_id (XINT (vec[0]), XINT (vec[2])); | |
731 if (XINT (charset_id) == 0) | |
732 error ("There's no room for a new private charset %s", | |
733 XSYMBOL (charset_symbol)->name->data); | |
734 } | |
735 | |
736 update_charset_table (charset_id, vec[0], vec[1], vec[2], vec[3], | |
737 vec[4], vec[5], vec[6], vec[7], vec[8]); | |
17322
a7d9b8e167ca
(non_ascii_char_to_string, update_charset_table,
Kenichi Handa <handa@m17n.org>
parents:
17186
diff
changeset
|
738 Fput (charset_symbol, Qcharset, CHARSET_TABLE_ENTRY (XINT (charset_id))); |
17052 | 739 CHARSET_SYMBOL (XINT (charset_id)) = charset_symbol; |
740 Vcharset_list = Fcons (charset_symbol, Vcharset_list); | |
741 return Qnil; | |
742 } | |
743 | |
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
744 DEFUN ("generic-character-list", Fgeneric_character_list, |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
745 Sgeneric_character_list, 0, 0, 0, |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
746 "Return a list of all possible generic characters.\n\ |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
747 It includes a generic character for a charset not yet defined.") |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
748 () |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
749 { |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
750 return Vgeneric_character_list; |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
751 } |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
752 |
20435
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
753 DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char, |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
754 Sget_unused_iso_final_char, 2, 2, 0, |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
755 "Return an unsed ISO's final char for a charset of DIMENISION and CHARS.\n\ |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
756 DIMENSION is the number of bytes to represent a character: 1 or 2.\n\ |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
757 CHARS is the number of characters in a dimension: 94 or 96.\n\ |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
758 \n\ |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
759 This final char is for private use, thus the range is `0' (48) .. `?' (63).\n\ |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
760 If there's no unused final char for the specified kind of charset,\n\ |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
761 return nil.") |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
762 (dimension, chars) |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
763 Lisp_Object dimension, chars; |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
764 { |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
765 int final_char; |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
766 |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
767 CHECK_NUMBER (dimension, 0); |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
768 CHECK_NUMBER (chars, 1); |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
769 if (XINT (dimension) != 1 && XINT (dimension) != 2) |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
770 error ("Invalid charset dimension %d, it should be 1 or 2", |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
771 XINT (dimension)); |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
772 if (XINT (chars) != 94 && XINT (chars) != 96) |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
773 error ("Invalid charset chars %d, it should be 94 or 96", |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
774 XINT (chars)); |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
775 for (final_char = '0'; final_char <= '?'; final_char++) |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
776 { |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
777 if (ISO_CHARSET_TABLE (dimension, chars, make_number (final_char)) < 0) |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
778 break; |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
779 } |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
780 return (final_char <= '?' ? make_number (final_char) : Qnil); |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
781 } |
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
782 |
17052 | 783 DEFUN ("declare-equiv-charset", Fdeclare_equiv_charset, Sdeclare_equiv_charset, |
784 4, 4, 0, | |
785 "Declare a charset of DIMENSION, CHARS, FINAL-CHAR is the same as CHARSET.\n\ | |
786 CHARSET should be defined by `defined-charset' in advance.") | |
787 (dimension, chars, final_char, charset_symbol) | |
788 Lisp_Object dimension, chars, final_char, charset_symbol; | |
789 { | |
790 int charset; | |
791 | |
792 CHECK_NUMBER (dimension, 0); | |
793 CHECK_NUMBER (chars, 1); | |
794 CHECK_NUMBER (final_char, 2); | |
795 CHECK_SYMBOL (charset_symbol, 3); | |
796 | |
797 if (XINT (dimension) != 1 && XINT (dimension) != 2) | |
798 error ("Invalid DIMENSION %d, it should be 1 or 2", XINT (dimension)); | |
799 if (XINT (chars) != 94 && XINT (chars) != 96) | |
800 error ("Invalid CHARS %d, it should be 94 or 96", XINT (chars)); | |
801 if (XINT (final_char) < '0' || XFASTINT (final_char) > '~') | |
802 error ("Invalid FINAL-CHAR %c, it should be `0'..`~'", XINT (chars)); | |
803 if ((charset = get_charset_id (charset_symbol)) < 0) | |
804 error ("Invalid charset %s", XSYMBOL (charset_symbol)->name->data); | |
805 | |
806 ISO_CHARSET_TABLE (dimension, chars, final_char) = charset; | |
807 return Qnil; | |
808 } | |
809 | |
810 /* Return number of different charsets in STR of length LEN. In | |
811 addition, for each found charset N, CHARSETS[N] is set 1. The | |
18003
ac148c939dec
(Ffind_charset_string): The variable CHARSETS is
Kenichi Handa <handa@m17n.org>
parents:
17880
diff
changeset
|
812 caller should allocate CHARSETS (MAX_CHARSET + 1 elements) in advance. |
22168
2156ac6d054f
(find_charset_in_str): New arg CMPCHARP.
Kenichi Handa <handa@m17n.org>
parents:
22121
diff
changeset
|
813 It may lookup a translation table TABLE if supplied. |
2156ac6d054f
(find_charset_in_str): New arg CMPCHARP.
Kenichi Handa <handa@m17n.org>
parents:
22121
diff
changeset
|
814 |
2156ac6d054f
(find_charset_in_str): New arg CMPCHARP.
Kenichi Handa <handa@m17n.org>
parents:
22121
diff
changeset
|
815 If CMPCHARP is nonzero and some composite character is found, |
2156ac6d054f
(find_charset_in_str): New arg CMPCHARP.
Kenichi Handa <handa@m17n.org>
parents:
22121
diff
changeset
|
816 CHARSETS[128] is also set 1 and the returned number is incremented |
23883 | 817 by 1. |
818 | |
819 If MULTIBYTE is zero, do not check multibyte characters, i.e. if | |
820 any ASCII codes (7-bit) are found, CHARSET[0] is set to 1, if any | |
821 8-bit codes are found CHARSET[1] is set to 1. */ | |
17052 | 822 |
823 int | |
23883 | 824 find_charset_in_str (str, len, charsets, table, cmpcharp, multibyte) |
17880
06f58d8a59ba
(Ffind_charset_region): Change the declaration of
Kenichi Handa <handa@m17n.org>
parents:
17863
diff
changeset
|
825 unsigned char *str; |
06f58d8a59ba
(Ffind_charset_region): Change the declaration of
Kenichi Handa <handa@m17n.org>
parents:
17863
diff
changeset
|
826 int len, *charsets; |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
827 Lisp_Object table; |
22168
2156ac6d054f
(find_charset_in_str): New arg CMPCHARP.
Kenichi Handa <handa@m17n.org>
parents:
22121
diff
changeset
|
828 int cmpcharp; |
23883 | 829 int multibyte; |
17052 | 830 { |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
831 register int num = 0, c; |
17052 | 832 |
23883 | 833 if (! multibyte) |
834 { | |
835 unsigned char *endp = str + len; | |
836 int maskbits = 0; | |
837 | |
838 while (str < endp && maskbits != 3) | |
839 maskbits |= (*str++ < 0x80 ? 1 : 2); | |
840 if (maskbits & 1) | |
841 { | |
842 charsets[0] = 1; | |
843 num++; | |
844 } | |
845 if (maskbits & 2) | |
846 { | |
847 charsets[1] = 1; | |
848 num++; | |
849 } | |
850 return num; | |
851 } | |
852 | |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
853 if (! CHAR_TABLE_P (table)) |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
854 table = Qnil; |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
855 |
17052 | 856 while (len > 0) |
857 { | |
19983
a62008636710
(find_charset_in_str): Return also charsets in
Kenichi Handa <handa@m17n.org>
parents:
19444
diff
changeset
|
858 int bytes, charset; |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
859 c = *str; |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
860 |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
861 if (c == LEADING_CODE_COMPOSITION) |
19983
a62008636710
(find_charset_in_str): Return also charsets in
Kenichi Handa <handa@m17n.org>
parents:
19444
diff
changeset
|
862 { |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
863 int cmpchar_id = str_cmpchar_id (str, len); |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
864 GLYPH *glyph; |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
865 |
22168
2156ac6d054f
(find_charset_in_str): New arg CMPCHARP.
Kenichi Handa <handa@m17n.org>
parents:
22121
diff
changeset
|
866 if (cmpchar_id >= 0) |
19983
a62008636710
(find_charset_in_str): Return also charsets in
Kenichi Handa <handa@m17n.org>
parents:
19444
diff
changeset
|
867 { |
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
868 struct cmpchar_info *cmp_p = cmpchar_table[cmpchar_id]; |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
869 int i; |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
870 |
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
871 for (i = 0; i < cmp_p->glyph_len; i++) |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
872 { |
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
873 c = cmp_p->glyph[i]; |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
874 if (!NILP (table)) |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
875 { |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
876 if ((c = translate_char (table, c, 0, 0, 0)) < 0) |
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
877 c = cmp_p->glyph[i]; |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
878 } |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
879 if ((charset = CHAR_CHARSET (c)) < 0) |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
880 charset = CHARSET_ASCII; |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
881 if (!charsets[charset]) |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
882 { |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
883 charsets[charset] = 1; |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
884 num += 1; |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
885 } |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
886 } |
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
887 str += cmp_p->len; |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
888 len -= cmp_p->len; |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
889 if (cmpcharp && !charsets[CHARSET_COMPOSITION]) |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
890 { |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
891 charsets[CHARSET_COMPOSITION] = 1; |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
892 num += 1; |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
893 } |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
894 continue; |
19983
a62008636710
(find_charset_in_str): Return also charsets in
Kenichi Handa <handa@m17n.org>
parents:
19444
diff
changeset
|
895 } |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
896 |
23883 | 897 charset = 1; /* This leads to `unknown' charset. */ |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
898 bytes = 1; |
19983
a62008636710
(find_charset_in_str): Return also charsets in
Kenichi Handa <handa@m17n.org>
parents:
19444
diff
changeset
|
899 } |
a62008636710
(find_charset_in_str): Return also charsets in
Kenichi Handa <handa@m17n.org>
parents:
19444
diff
changeset
|
900 else |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
901 { |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
902 c = STRING_CHAR_AND_LENGTH (str, len, bytes); |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
903 if (! NILP (table)) |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
904 { |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
905 int c1 = translate_char (table, c, 0, 0, 0); |
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
906 if (c1 >= 0) |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
907 c = c1; |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
908 } |
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
909 charset = CHAR_CHARSET (c); |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
910 } |
17052 | 911 |
912 if (!charsets[charset]) | |
913 { | |
914 charsets[charset] = 1; | |
915 num += 1; | |
916 } | |
917 str += bytes; | |
918 len -= bytes; | |
919 } | |
920 return num; | |
921 } | |
922 | |
923 DEFUN ("find-charset-region", Ffind_charset_region, Sfind_charset_region, | |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
924 2, 3, 0, |
17052 | 925 "Return a list of charsets in the region between BEG and END.\n\ |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
926 BEG and END are buffer positions.\n\ |
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
927 If the region contains any composite character,\n\ |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
928 `composition' is included in the returned list.\n\ |
23883 | 929 Optional arg TABLE if non-nil is a translation table to look up.\n\ |
930 \n\ | |
931 If the region contains invalid multiybte characters,\n\ | |
23978
5975ffe0b250
(Ffind_charset_region): Fix doc typo.
Richard M. Stallman <rms@gnu.org>
parents:
23932
diff
changeset
|
932 `unknown' is included in the returned list.\n\ |
23883 | 933 \n\ |
934 If the current buffer is unibyte, the returned list contains\n\ | |
935 `ascii' if any 7-bit characters are found,\n\ | |
936 and `unknown' if any 8-bit characters are found.") | |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
937 (beg, end, table) |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
938 Lisp_Object beg, end, table; |
17052 | 939 { |
17880
06f58d8a59ba
(Ffind_charset_region): Change the declaration of
Kenichi Handa <handa@m17n.org>
parents:
17863
diff
changeset
|
940 int charsets[MAX_CHARSET + 1]; |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
941 int from, from_byte, to, stop, stop_byte, i; |
17052 | 942 Lisp_Object val; |
23883 | 943 int undefined; |
944 int multibyte = !NILP (current_buffer->enable_multibyte_characters); | |
17052 | 945 |
946 validate_region (&beg, &end); | |
947 from = XFASTINT (beg); | |
948 stop = to = XFASTINT (end); | |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
949 |
17052 | 950 if (from < GPT && GPT < to) |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
951 { |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
952 stop = GPT; |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
953 stop_byte = GPT_BYTE; |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
954 } |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
955 else |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
956 stop_byte = CHAR_TO_BYTE (stop); |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
957 |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
958 from_byte = CHAR_TO_BYTE (from); |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
959 |
17880
06f58d8a59ba
(Ffind_charset_region): Change the declaration of
Kenichi Handa <handa@m17n.org>
parents:
17863
diff
changeset
|
960 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int)); |
17052 | 961 while (1) |
962 { | |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
963 find_charset_in_str (BYTE_POS_ADDR (from_byte), stop_byte - from_byte, |
23883 | 964 charsets, table, 1, multibyte); |
17052 | 965 if (stop < to) |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
966 { |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
967 from = stop, from_byte = stop_byte; |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
968 stop = to, stop_byte = CHAR_TO_BYTE (stop); |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
969 } |
17052 | 970 else |
971 break; | |
972 } | |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
973 |
17052 | 974 val = Qnil; |
23883 | 975 undefined = 0; |
976 for (i = (multibyte ? MAX_CHARSET : 1); i >= 0; i--) | |
17052 | 977 if (charsets[i]) |
23883 | 978 { |
979 if (CHARSET_DEFINED_P (i) || i == CHARSET_COMPOSITION) | |
980 val = Fcons (CHARSET_SYMBOL (i), val); | |
981 else | |
982 undefined = 1; | |
983 } | |
984 if (undefined) | |
985 val = Fcons (Qunknown, val); | |
17052 | 986 return val; |
987 } | |
988 | |
989 DEFUN ("find-charset-string", Ffind_charset_string, Sfind_charset_string, | |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
990 1, 2, 0, |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
991 "Return a list of charsets in STR.\n\ |
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
992 If the string contains any composite characters,\n\ |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
993 `composition' is included in the returned list.\n\ |
23883 | 994 Optional arg TABLE if non-nil is a translation table to look up.\n\ |
995 \n\ | |
996 If the region contains invalid multiybte characters,\n\ | |
997 `unknown' is included in the returned list.\n\ | |
998 \n\ | |
999 If STR is unibyte, the returned list contains\n\ | |
1000 `ascii' if any 7-bit characters are found,\n\ | |
1001 and `unknown' if any 8-bit characters are found.") | |
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
1002 (str, table) |
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
1003 Lisp_Object str, table; |
17052 | 1004 { |
18003
ac148c939dec
(Ffind_charset_string): The variable CHARSETS is
Kenichi Handa <handa@m17n.org>
parents:
17880
diff
changeset
|
1005 int charsets[MAX_CHARSET + 1]; |
17052 | 1006 int i; |
1007 Lisp_Object val; | |
23883 | 1008 int undefined; |
1009 int multibyte; | |
17052 | 1010 |
1011 CHECK_STRING (str, 0); | |
23883 | 1012 multibyte = STRING_MULTIBYTE (str); |
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1013 |
18003
ac148c939dec
(Ffind_charset_string): The variable CHARSETS is
Kenichi Handa <handa@m17n.org>
parents:
17880
diff
changeset
|
1014 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int)); |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21063
diff
changeset
|
1015 find_charset_in_str (XSTRING (str)->data, STRING_BYTES (XSTRING (str)), |
23883 | 1016 charsets, table, 1, multibyte); |
17052 | 1017 val = Qnil; |
23883 | 1018 undefined = 0; |
1019 for (i = (multibyte ? MAX_CHARSET : 1); i >= 0; i--) | |
17052 | 1020 if (charsets[i]) |
23883 | 1021 { |
1022 if (CHARSET_DEFINED_P (i) || i == CHARSET_COMPOSITION) | |
1023 val = Fcons (CHARSET_SYMBOL (i), val); | |
1024 else | |
1025 undefined = 1; | |
1026 } | |
1027 if (undefined) | |
1028 val = Fcons (Qunknown, val); | |
17052 | 1029 return val; |
1030 } | |
1031 | |
1032 DEFUN ("make-char-internal", Fmake_char_internal, Smake_char_internal, 1, 3, 0, | |
17186
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
1033 "") |
17052 | 1034 (charset, code1, code2) |
1035 Lisp_Object charset, code1, code2; | |
1036 { | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1037 int charset_id, c1, c2; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1038 |
17052 | 1039 CHECK_NUMBER (charset, 0); |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1040 charset_id = XINT (charset); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1041 if (!CHARSET_DEFINED_P (charset_id)) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1042 error ("Invalid charset ID: %d", XINT (charset)); |
17052 | 1043 |
1044 if (NILP (code1)) | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1045 c1 = 0; |
17052 | 1046 else |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1047 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1048 CHECK_NUMBER (code1, 1); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1049 c1 = XINT (code1); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1050 } |
17052 | 1051 if (NILP (code2)) |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1052 c2 = 0; |
17052 | 1053 else |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1054 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1055 CHECK_NUMBER (code2, 2); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1056 c2 = XINT (code2); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1057 } |
17052 | 1058 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1059 if (c1 < 0 || c1 > 0xFF || c2 < 0 || c2 > 0xFF) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1060 error ("Invalid code points: %d %d", c1, c2); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1061 c1 &= 0x7F; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1062 c2 &= 0x7F; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1063 if (c1 == 0 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1064 ? c2 != 0 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1065 : (c2 == 0 |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1066 ? !CHAR_COMPONENT_VALID_P (charset, c1, 0x20) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1067 : !CHAR_COMPONENT_VALID_P (charset, c1, c2))) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1068 error ("Invalid code points: %d %d", c1, c2); |
17052 | 1069 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1070 return make_number (MAKE_CHAR (charset_id, c1, c2)); |
17052 | 1071 } |
1072 | |
1073 DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0, | |
23883 | 1074 "Return list of charset and one or two position-codes of CHAR.\n\ |
1075 If CHAR is invalid as a character code,\n\ | |
1076 return a list of symbol `unknown' and CHAR.") | |
17052 | 1077 (ch) |
1078 Lisp_Object ch; | |
1079 { | |
1080 Lisp_Object val; | |
23883 | 1081 int c, charset, c1, c2; |
17052 | 1082 |
1083 CHECK_NUMBER (ch, 0); | |
23883 | 1084 c = XFASTINT (ch); |
1085 if (!CHAR_VALID_P (c, 1)) | |
1086 return Fcons (Qunknown, Fcons (ch, Qnil)); | |
17052 | 1087 SPLIT_CHAR (XFASTINT (ch), charset, c1, c2); |
17322
a7d9b8e167ca
(non_ascii_char_to_string, update_charset_table,
Kenichi Handa <handa@m17n.org>
parents:
17186
diff
changeset
|
1088 return (c2 >= 0 |
17052 | 1089 ? Fcons (CHARSET_SYMBOL (charset), |
1090 Fcons (make_number (c1), Fcons (make_number (c2), Qnil))) | |
1091 : Fcons (CHARSET_SYMBOL (charset), Fcons (make_number (c1), Qnil))); | |
1092 } | |
1093 | |
1094 DEFUN ("char-charset", Fchar_charset, Schar_charset, 1, 1, 0, | |
1095 "Return charset of CHAR.") | |
1096 (ch) | |
1097 Lisp_Object ch; | |
1098 { | |
1099 CHECK_NUMBER (ch, 0); | |
1100 | |
1101 return CHARSET_SYMBOL (CHAR_CHARSET (XINT (ch))); | |
1102 } | |
1103 | |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1104 DEFUN ("charset-after", Fcharset_after, Scharset_after, 0, 1, 0, |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1105 "Return charset of a character in the current buffer at position POS.\n\ |
23932
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1106 If POS is nil, it defauls to the current point.\n\ |
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1107 If POS is out of range, the value is nil.") |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1108 (pos) |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1109 Lisp_Object pos; |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1110 { |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1111 register int pos_byte, bytes, charset, c1, c2; |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1112 register unsigned char *p; |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1113 |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1114 if (NILP (pos)) |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1115 pos_byte = PT_BYTE; |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1116 else if (MARKERP (pos)) |
23932
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1117 { |
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1118 pos_byte = marker_byte_position (pos); |
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1119 if (pos_byte < BEGV_BYTE || pos_byte >= ZV_BYTE) |
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1120 return Qnil; |
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1121 } |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1122 else |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1123 { |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1124 CHECK_NUMBER (pos, 0); |
23932
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1125 if (XINT (pos) < BEGV || XINT (pos) >= ZV) |
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1126 return Qnil; |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1127 pos_byte = CHAR_TO_BYTE (XINT (pos)); |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1128 } |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1129 p = BYTE_POS_ADDR (pos_byte); |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1130 if (BASE_LEADING_CODE_P (*p)) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1131 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1132 SPLIT_MULTIBYTE_SEQ (p, Z_BYTE - pos_byte, bytes, charset, c1, c2); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1133 if (charset < 0) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1134 charset = 1; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1135 } |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1136 else |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1137 charset = CHARSET_ASCII; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1138 |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1139 return CHARSET_SYMBOL (charset); |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1140 } |
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1141 |
17052 | 1142 DEFUN ("iso-charset", Fiso_charset, Siso_charset, 3, 3, 0, |
20833
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1143 "Return charset of ISO's specification DIMENSION, CHARS, and FINAL-CHAR.\n\ |
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1144 \n\ |
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1145 ISO 2022's designation sequence (escape sequence) distinguishes charsets\n\ |
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1146 by their DIMENSION, CHARS, and FINAL-CHAR,\n\ |
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1147 where as Emacs distinguishes them by charset symbol.\n\ |
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1148 See the documentation of the function `charset-info' for the meanings of\n\ |
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1149 DIMENSION, CHARS, and FINAL-CHAR.") |
17052 | 1150 (dimension, chars, final_char) |
1151 Lisp_Object dimension, chars, final_char; | |
1152 { | |
1153 int charset; | |
1154 | |
1155 CHECK_NUMBER (dimension, 0); | |
1156 CHECK_NUMBER (chars, 1); | |
1157 CHECK_NUMBER (final_char, 2); | |
1158 | |
1159 if ((charset = ISO_CHARSET_TABLE (dimension, chars, final_char)) < 0) | |
1160 return Qnil; | |
1161 return CHARSET_SYMBOL (charset); | |
1162 } | |
1163 | |
20152
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1164 /* If GENERICP is nonzero, return nonzero iff C is a valid normal or |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1165 generic character. If GENERICP is zero, return nonzero iff C is a |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1166 valid normal character. Do not call this function directly, |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1167 instead use macro CHAR_VALID_P. */ |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1168 int |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1169 char_valid_p (c, genericp) |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1170 int c, genericp; |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1171 { |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1172 int charset, c1, c2; |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1173 |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1174 if (c < 0) |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1175 return 0; |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1176 if (SINGLE_BYTE_CHAR_P (c)) |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1177 return 1; |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1178 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2); |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1179 if (charset == CHARSET_COMPOSITION) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1180 return ((c >= MIN_CHAR_COMPOSITION |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1181 && c < MIN_CHAR_COMPOSITION + n_cmpchars) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1182 || (genericp && c == GENERIC_COMPOSITION_CHAR)); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1183 if (genericp) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1184 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1185 if (c1) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1186 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1187 if (c2 <= 0) c2 = 0x20; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1188 } |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1189 else |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1190 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1191 if (c2 <= 0) c1 = c2 = 0x20; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1192 } |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1193 } |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1194 return (CHARSET_DEFINED_P (charset) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1195 && CHAR_COMPONENT_VALID_P (charset, c1, c2)); |
20152
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1196 } |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1197 |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1198 DEFUN ("char-valid-p", Fchar_valid_p, Schar_valid_p, 1, 2, 0, |
20636
5ab6701a2b4b
(Fchar_valid_p): Fix bare newlines in doc string.
Dave Love <fx@gnu.org>
parents:
20614
diff
changeset
|
1199 "Return t if OBJECT is a valid normal character.\n\ |
5ab6701a2b4b
(Fchar_valid_p): Fix bare newlines in doc string.
Dave Love <fx@gnu.org>
parents:
20614
diff
changeset
|
1200 If optional arg GENERICP is non-nil, also return t if OBJECT is\n\ |
20152
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1201 a valid generic character.") |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1202 (object, genericp) |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1203 Lisp_Object object, genericp; |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1204 { |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1205 if (! NATNUMP (object)) |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1206 return Qnil; |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1207 return (CHAR_VALID_P (XFASTINT (object), !NILP (genericp)) ? Qt : Qnil); |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1208 } |
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1209 |
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1210 DEFUN ("unibyte-char-to-multibyte", Funibyte_char_to_multibyte, |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1211 Sunibyte_char_to_multibyte, 1, 1, 0, |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1212 "Convert the unibyte character CH to multibyte character.\n\ |
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
1213 The conversion is done based on `nonascii-translation-table' (which see)\n\ |
21715
98c5740d198b
(Funibyte_char_to_multibyte): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
21519
diff
changeset
|
1214 or `nonascii-insert-offset' (which see).") |
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1215 (ch) |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1216 Lisp_Object ch; |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1217 { |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1218 int c; |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1219 |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1220 CHECK_NUMBER (ch, 0); |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1221 c = XINT (ch); |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1222 if (c < 0 || c >= 0400) |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1223 error ("Invalid unibyte character: %d", c); |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1224 c = unibyte_char_to_multibyte (c); |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1225 if (c < 0) |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1226 error ("Can't convert to multibyte character: %d", XINT (ch)); |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1227 return make_number (c); |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1228 } |
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1229 |
23060
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1230 DEFUN ("multibyte-char-to-unibyte", Fmultibyte_char_to_unibyte, |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1231 Smultibyte_char_to_unibyte, 1, 1, 0, |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1232 "Convert the multibyte character CH to unibyte character.\n\ |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1233 The conversion is done based on `nonascii-translation-table' (which see)\n\ |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1234 or `nonascii-insert-offset' (which see).") |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1235 (ch) |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1236 Lisp_Object ch; |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1237 { |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1238 int c; |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1239 |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1240 CHECK_NUMBER (ch, 0); |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1241 c = XINT (ch); |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1242 if (! CHAR_VALID_P (c, 0)) |
23060
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1243 error ("Invalid multibyte character: %d", c); |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1244 c = multibyte_char_to_unibyte (c, Qnil); |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1245 if (c < 0) |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1246 error ("Can't convert to unibyte character: %d", XINT (ch)); |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1247 return make_number (c); |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1248 } |
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1249 |
17052 | 1250 DEFUN ("char-bytes", Fchar_bytes, Schar_bytes, 1, 1, 0, |
23140
17ad9953ff42
(Fchar_bytes): Add \n\ in doc-string.
Kenichi Handa <handa@m17n.org>
parents:
23131
diff
changeset
|
1251 "Return 1 regardless of the argument CHAR.\n\ |
23576 | 1252 This is now an obsolete function. We keep it just for backward compatibility.") |
17052 | 1253 (ch) |
1254 Lisp_Object ch; | |
1255 { | |
1256 Lisp_Object val; | |
1257 | |
1258 CHECK_NUMBER (ch, 0); | |
23131
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1259 return make_number (1); |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1260 } |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1261 |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1262 /* Return how many bytes C will occupy in a multibyte buffer. |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1263 Don't call this function directly, instead use macro CHAR_BYTES. */ |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1264 int |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1265 char_bytes (c) |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1266 int c; |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1267 { |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1268 int bytes; |
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1269 |
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
1270 if (SINGLE_BYTE_CHAR_P (c) || (c & ~GLYPH_MASK_CHAR)) |
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
1271 return 1; |
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
1272 |
23131
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1273 if (COMPOSITE_CHAR_P (c)) |
17052 | 1274 { |
23131
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1275 unsigned int id = COMPOSITE_CHAR_ID (c); |
17052 | 1276 |
1277 bytes = (id < n_cmpchars ? cmpchar_table[id]->len : 1); | |
1278 } | |
1279 else | |
1280 { | |
23131
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1281 int charset = CHAR_CHARSET (c); |
17052 | 1282 |
1283 bytes = CHARSET_DEFINED_P (charset) ? CHARSET_BYTES (charset) : 1; | |
1284 } | |
1285 | |
23576 | 1286 return bytes; |
17052 | 1287 } |
1288 | |
1289 /* Return the width of character of which multi-byte form starts with | |
1290 C. The width is measured by how many columns occupied on the | |
1291 screen when displayed in the current buffer. */ | |
1292 | |
1293 #define ONE_BYTE_CHAR_WIDTH(c) \ | |
1294 (c < 0x20 \ | |
1295 ? (c == '\t' \ | |
17366
f7809ff2c65f
(ONE_BYTE_CHAR_WIDTH, Fconcat_chars): Don't use Lisp_Object as integer.
Karl Heuer <kwzh@gnu.org>
parents:
17322
diff
changeset
|
1296 ? XFASTINT (current_buffer->tab_width) \ |
17052 | 1297 : (c == '\n' ? 0 : (NILP (current_buffer->ctl_arrow) ? 4 : 2))) \ |
1298 : (c < 0x7f \ | |
1299 ? 1 \ | |
1300 : (c == 0x7F \ | |
1301 ? (NILP (current_buffer->ctl_arrow) ? 4 : 2) \ | |
1302 : ((! NILP (current_buffer->enable_multibyte_characters) \ | |
1303 && BASE_LEADING_CODE_P (c)) \ | |
1304 ? WIDTH_BY_CHAR_HEAD (c) \ | |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
1305 : 4)))) |
17052 | 1306 |
1307 DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0, | |
1308 "Return width of CHAR when displayed in the current buffer.\n\ | |
1309 The width is measured by how many columns it occupies on the screen.") | |
1310 (ch) | |
1311 Lisp_Object ch; | |
1312 { | |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1313 Lisp_Object val, disp; |
17052 | 1314 int c; |
18537
6a726658dfa9
(Fchar_width): Check if the current buffer has display
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
1315 struct Lisp_Char_Table *dp = buffer_display_table (); |
17052 | 1316 |
1317 CHECK_NUMBER (ch, 0); | |
1318 | |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1319 c = XINT (ch); |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1320 |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1321 /* Get the way the display table would display it. */ |
18537
6a726658dfa9
(Fchar_width): Check if the current buffer has display
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
1322 disp = dp ? DISP_CHAR_VECTOR (dp, c) : Qnil; |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1323 |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1324 if (VECTORP (disp)) |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1325 XSETINT (val, XVECTOR (disp)->size); |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1326 else if (SINGLE_BYTE_CHAR_P (c)) |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1327 XSETINT (val, ONE_BYTE_CHAR_WIDTH (c)); |
17052 | 1328 else if (COMPOSITE_CHAR_P (c)) |
1329 { | |
1330 int id = COMPOSITE_CHAR_ID (XFASTINT (ch)); | |
23883 | 1331 XSETFASTINT (val, (id < n_cmpchars ? cmpchar_table[id]->width : 1)); |
17052 | 1332 } |
1333 else | |
1334 { | |
1335 int charset = CHAR_CHARSET (c); | |
1336 | |
1337 XSETFASTINT (val, CHARSET_WIDTH (charset)); | |
1338 } | |
1339 return val; | |
1340 } | |
1341 | |
1342 /* Return width of string STR of length LEN when displayed in the | |
1343 current buffer. The width is measured by how many columns it | |
1344 occupies on the screen. */ | |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1345 |
17052 | 1346 int |
1347 strwidth (str, len) | |
1348 unsigned char *str; | |
1349 int len; | |
1350 { | |
1351 unsigned char *endp = str + len; | |
1352 int width = 0; | |
20362
67bcb068070c
(strwidth): Remove extra argument to buffer_display_table.
Kenichi Handa <handa@m17n.org>
parents:
20228
diff
changeset
|
1353 struct Lisp_Char_Table *dp = buffer_display_table (); |
17052 | 1354 |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1355 while (str < endp) |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1356 { |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1357 if (*str == LEADING_CODE_COMPOSITION) |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1358 { |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1359 int id = str_cmpchar_id (str, endp - str); |
17052 | 1360 |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1361 if (id < 0) |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1362 { |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1363 width += 4; |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1364 str++; |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1365 } |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1366 else |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1367 { |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1368 width += cmpchar_table[id]->width; |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1369 str += cmpchar_table[id]->len; |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1370 } |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1371 } |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1372 else |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1373 { |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1374 Lisp_Object disp; |
21063
44845df088bc
(strwidth): Make it work for invalid bytes sequence.
Kenichi Handa <handa@m17n.org>
parents:
21034
diff
changeset
|
1375 int thislen; |
44845df088bc
(strwidth): Make it work for invalid bytes sequence.
Kenichi Handa <handa@m17n.org>
parents:
21034
diff
changeset
|
1376 int c = STRING_CHAR_AND_LENGTH (str, endp - str, thislen); |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1377 |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1378 /* Get the way the display table would display it. */ |
17863
bc8774c7999b
(strwidth): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17843
diff
changeset
|
1379 if (dp) |
bc8774c7999b
(strwidth): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17843
diff
changeset
|
1380 disp = DISP_CHAR_VECTOR (dp, c); |
bc8774c7999b
(strwidth): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17843
diff
changeset
|
1381 else |
bc8774c7999b
(strwidth): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
17843
diff
changeset
|
1382 disp = Qnil; |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1383 |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1384 if (VECTORP (disp)) |
21063
44845df088bc
(strwidth): Make it work for invalid bytes sequence.
Kenichi Handa <handa@m17n.org>
parents:
21034
diff
changeset
|
1385 width += XVECTOR (disp)->size; |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1386 else |
21063
44845df088bc
(strwidth): Make it work for invalid bytes sequence.
Kenichi Handa <handa@m17n.org>
parents:
21034
diff
changeset
|
1387 width += ONE_BYTE_CHAR_WIDTH (*str); |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1388 |
21063
44845df088bc
(strwidth): Make it work for invalid bytes sequence.
Kenichi Handa <handa@m17n.org>
parents:
21034
diff
changeset
|
1389 str += thislen; |
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1390 } |
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1391 } |
17052 | 1392 return width; |
1393 } | |
1394 | |
1395 DEFUN ("string-width", Fstring_width, Sstring_width, 1, 1, 0, | |
1396 "Return width of STRING when displayed in the current buffer.\n\ | |
1397 Width is measured by how many columns it occupies on the screen.\n\ | |
19384 | 1398 When calculating width of a multibyte character in STRING,\n\ |
1399 only the base leading-code is considered; the validity of\n\ | |
1400 the following bytes is not checked.") | |
17052 | 1401 (str) |
1402 Lisp_Object str; | |
1403 { | |
1404 Lisp_Object val; | |
1405 | |
1406 CHECK_STRING (str, 0); | |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21063
diff
changeset
|
1407 XSETFASTINT (val, strwidth (XSTRING (str)->data, |
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21063
diff
changeset
|
1408 STRING_BYTES (XSTRING (str)))); |
17052 | 1409 return val; |
1410 } | |
1411 | |
1412 DEFUN ("char-direction", Fchar_direction, Schar_direction, 1, 1, 0, | |
1413 "Return the direction of CHAR.\n\ | |
1414 The returned value is 0 for left-to-right and 1 for right-to-left.") | |
1415 (ch) | |
1416 Lisp_Object ch; | |
1417 { | |
1418 int charset; | |
1419 | |
1420 CHECK_NUMBER (ch, 0); | |
1421 charset = CHAR_CHARSET (XFASTINT (ch)); | |
1422 if (!CHARSET_DEFINED_P (charset)) | |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1423 invalid_character (XINT (ch)); |
17052 | 1424 return CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX); |
1425 } | |
1426 | |
19415
309b9a0d8a45
(Fchars_in_region): Renamed form Fcount_chars_region.
Kenichi Handa <handa@m17n.org>
parents:
19384
diff
changeset
|
1427 DEFUN ("chars-in-region", Fchars_in_region, Schars_in_region, 2, 2, 0, |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1428 "Return number of characters between BEG and END.") |
19384 | 1429 (beg, end) |
1430 Lisp_Object beg, end; | |
1431 { | |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1432 int from, to; |
19384 | 1433 |
22739
f0c8af6c2dfd
(Fchars_in_region): Coerce markers.
Richard M. Stallman <rms@gnu.org>
parents:
22703
diff
changeset
|
1434 CHECK_NUMBER_COERCE_MARKER (beg, 0); |
f0c8af6c2dfd
(Fchars_in_region): Coerce markers.
Richard M. Stallman <rms@gnu.org>
parents:
22703
diff
changeset
|
1435 CHECK_NUMBER_COERCE_MARKER (end, 1); |
f0c8af6c2dfd
(Fchars_in_region): Coerce markers.
Richard M. Stallman <rms@gnu.org>
parents:
22703
diff
changeset
|
1436 |
19384 | 1437 from = min (XFASTINT (beg), XFASTINT (end)); |
19444
752afe97eaa4
(Fchars_in_region): Fix gap handling.
Richard M. Stallman <rms@gnu.org>
parents:
19415
diff
changeset
|
1438 to = max (XFASTINT (beg), XFASTINT (end)); |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1439 |
21519
9b26f9300d41
(Fchars_in_region): Fix mixing of Lisp_Object and int.
Andreas Schwab <schwab@suse.de>
parents:
21514
diff
changeset
|
1440 return make_number (to - from); |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1441 } |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1442 |
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1443 /* Return the number of characters in the NBYTES bytes at PTR. |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1444 This works by looking at the contents and checking for multibyte sequences. |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1445 However, if the current buffer has enable-multibyte-characters = nil, |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1446 we treat each byte as a character. */ |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1447 |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1448 int |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1449 chars_in_text (ptr, nbytes) |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1450 unsigned char *ptr; |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1451 int nbytes; |
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1452 { |
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1453 /* current_buffer is null at early stages of Emacs initialization. */ |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1454 if (current_buffer == 0 |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1455 || NILP (current_buffer->enable_multibyte_characters)) |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1456 return nbytes; |
20188
d4ad4463384d
(Fchars_in_string): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20152
diff
changeset
|
1457 |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1458 return multibyte_chars_in_text (ptr, nbytes); |
19384 | 1459 } |
1460 | |
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1461 /* Return the number of characters in the NBYTES bytes at PTR. |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1462 This works by looking at the contents and checking for multibyte sequences. |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1463 It ignores enable-multibyte-characters. */ |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1464 |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1465 int |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1466 multibyte_chars_in_text (ptr, nbytes) |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1467 unsigned char *ptr; |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1468 int nbytes; |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1469 { |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1470 unsigned char *endp; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1471 int chars, bytes; |
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1472 |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1473 endp = ptr + nbytes; |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1474 chars = 0; |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1475 |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1476 while (ptr < endp) |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1477 { |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1478 if (BASE_LEADING_CODE_P (*ptr)) |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1479 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1480 PARSE_MULTIBYTE_SEQ (ptr, nbytes, bytes); |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1481 ptr += bytes; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1482 nbytes -= bytes; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1483 } |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1484 else |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1485 { |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1486 ptr++; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1487 nbytes--; |
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1488 } |
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1489 chars++; |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1490 } |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1491 |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1492 return chars; |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1493 } |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1494 |
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1495 DEFUN ("string", Fstring, Sstring, 1, MANY, 0, |
17052 | 1496 "Concatenate all the argument characters and make the result a string.") |
17366
f7809ff2c65f
(ONE_BYTE_CHAR_WIDTH, Fconcat_chars): Don't use Lisp_Object as integer.
Karl Heuer <kwzh@gnu.org>
parents:
17322
diff
changeset
|
1497 (n, args) |
f7809ff2c65f
(ONE_BYTE_CHAR_WIDTH, Fconcat_chars): Don't use Lisp_Object as integer.
Karl Heuer <kwzh@gnu.org>
parents:
17322
diff
changeset
|
1498 int n; |
17052 | 1499 Lisp_Object *args; |
1500 { | |
17366
f7809ff2c65f
(ONE_BYTE_CHAR_WIDTH, Fconcat_chars): Don't use Lisp_Object as integer.
Karl Heuer <kwzh@gnu.org>
parents:
17322
diff
changeset
|
1501 int i; |
17052 | 1502 unsigned char *buf |
17834
e154b943bbba
(non_ascii_char_to_string): Signal error if the
Kenichi Handa <handa@m17n.org>
parents:
17818
diff
changeset
|
1503 = (unsigned char *) alloca (MAX_LENGTH_OF_MULTI_BYTE_FORM * n); |
17052 | 1504 unsigned char *p = buf; |
1505 Lisp_Object val; | |
1506 | |
1507 for (i = 0; i < n; i++) | |
1508 { | |
1509 int c, len; | |
1510 unsigned char *str; | |
1511 | |
1512 if (!INTEGERP (args[i])) | |
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
1513 CHECK_NUMBER (args[i], 0); |
17052 | 1514 c = XINT (args[i]); |
1515 len = CHAR_STRING (c, p, str); | |
1516 if (p != str) | |
1517 /* C is a composite character. */ | |
1518 bcopy (str, p, len); | |
1519 p += len; | |
1520 } | |
1521 | |
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
1522 /* Here, we can't use make_string_from_bytes because of byte |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
1523 combining problem. */ |
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
1524 val = make_string (buf, p - buf); |
17052 | 1525 return val; |
1526 } | |
1527 | |
1528 #endif /* emacs */ | |
1529 | |
1530 /*** Composite characters staffs ***/ | |
1531 | |
1532 /* Each composite character is identified by CMPCHAR-ID which is | |
1533 assigned when Emacs needs the character code of the composite | |
1534 character (e.g. when displaying it on the screen). See the | |
1535 document "GENERAL NOTE on COMPOSITE CHARACTER" in `charset.h' how a | |
1536 composite character is represented in Emacs. */ | |
1537 | |
1538 /* If `static' is defined, it means that it is defined to null string. */ | |
1539 #ifndef static | |
1540 /* The following function is copied from lread.c. */ | |
1541 static int | |
1542 hash_string (ptr, len) | |
1543 unsigned char *ptr; | |
1544 int len; | |
1545 { | |
1546 register unsigned char *p = ptr; | |
1547 register unsigned char *end = p + len; | |
1548 register unsigned char c; | |
1549 register int hash = 0; | |
1550 | |
1551 while (p != end) | |
1552 { | |
1553 c = *p++; | |
1554 if (c >= 0140) c -= 40; | |
1555 hash = ((hash<<3) + (hash>>28) + c); | |
1556 } | |
1557 return hash & 07777777777; | |
1558 } | |
1559 #endif | |
1560 | |
1561 #define CMPCHAR_HASH_TABLE_SIZE 0xFFF | |
1562 | |
1563 static int *cmpchar_hash_table[CMPCHAR_HASH_TABLE_SIZE]; | |
1564 | |
1565 /* Each element of `cmpchar_hash_table' is a pointer to an array of | |
1566 integer, where the 1st element is the size of the array, the 2nd | |
1567 element is how many elements are actually used in the array, and | |
1568 the remaining elements are CMPCHAR-IDs of composite characters of | |
1569 the same hash value. */ | |
1570 #define CMPCHAR_HASH_SIZE(table) table[0] | |
1571 #define CMPCHAR_HASH_USED(table) table[1] | |
1572 #define CMPCHAR_HASH_CMPCHAR_ID(table, i) table[i] | |
1573 | |
1574 /* Return CMPCHAR-ID of the composite character in STR of the length | |
1575 LEN. If the composite character has not yet been registered, | |
1576 register it in `cmpchar_table' and assign new CMPCHAR-ID. This | |
1577 is the sole function for assigning CMPCHAR-ID. */ | |
1578 int | |
1579 str_cmpchar_id (str, len) | |
21419
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21255
diff
changeset
|
1580 const unsigned char *str; |
17052 | 1581 int len; |
1582 { | |
1583 int hash_idx, *hashp; | |
1584 unsigned char *buf; | |
1585 int embedded_rule; /* 1 if composition rule is embedded. */ | |
1586 int chars; /* number of components. */ | |
1587 int i; | |
1588 struct cmpchar_info *cmpcharp; | |
1589 | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1590 /* The second byte 0xFF means COMPOSITION rule is embedded. */ |
17052 | 1591 embedded_rule = (str[1] == 0xFF); |
1592 | |
1593 /* At first, get the actual length of the composite character. */ | |
1594 { | |
21419
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21255
diff
changeset
|
1595 const unsigned char *p, *endp = str + 1, *lastp = str + len; |
17052 | 1596 int bytes; |
1597 | |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1598 while (endp < lastp && ! CHAR_HEAD_P (*endp)) endp++; |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1599 if (endp - str < 5) |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1600 /* Any composite char have at least 5-byte length. */ |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1601 return -1; |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1602 |
17052 | 1603 chars = 0; |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1604 p = str + 1; |
17052 | 1605 while (p < endp) |
1606 { | |
23685
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1607 if (embedded_rule) |
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1608 { |
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1609 p++; |
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1610 if (p >= endp) |
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1611 return -1; |
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1612 } |
17052 | 1613 /* No need of checking if *P is 0xA0 because |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1614 BYTES_BY_CHAR_HEAD (0x80) surely returns 2. */ |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1615 p += BYTES_BY_CHAR_HEAD (*p - 0x20); |
17052 | 1616 chars++; |
1617 } | |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1618 if (p > endp || chars < 2 || chars > MAX_COMPONENT_COUNT) |
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1619 /* Invalid components. */ |
17052 | 1620 return -1; |
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1621 len = p - str; |
17052 | 1622 } |
1623 hash_idx = hash_string (str, len) % CMPCHAR_HASH_TABLE_SIZE; | |
1624 hashp = cmpchar_hash_table[hash_idx]; | |
1625 | |
1626 /* Then, look into the hash table. */ | |
1627 if (hashp != NULL) | |
1628 /* Find the correct one among composite characters of the same | |
1629 hash value. */ | |
1630 for (i = 2; i < CMPCHAR_HASH_USED (hashp); i++) | |
1631 { | |
1632 cmpcharp = cmpchar_table[CMPCHAR_HASH_CMPCHAR_ID (hashp, i)]; | |
1633 if (len == cmpcharp->len | |
1634 && ! bcmp (str, cmpcharp->data, len)) | |
1635 return CMPCHAR_HASH_CMPCHAR_ID (hashp, i); | |
1636 } | |
1637 | |
1638 /* We have to register the composite character in cmpchar_table. */ | |
23883 | 1639 if (n_cmpchars >= (CHAR_FIELD2_MASK | CHAR_FIELD3_MASK)) |
17186
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
1640 /* No, we have no more room for a new composite character. */ |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
1641 return -1; |
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
1642 |
17052 | 1643 /* Make the entry in hash table. */ |
1644 if (hashp == NULL) | |
1645 { | |
1646 /* Make a table for 8 composite characters initially. */ | |
1647 hashp = (cmpchar_hash_table[hash_idx] | |
1648 = (int *) xmalloc (sizeof (int) * (2 + 8))); | |
1649 CMPCHAR_HASH_SIZE (hashp) = 10; | |
1650 CMPCHAR_HASH_USED (hashp) = 2; | |
1651 } | |
1652 else if (CMPCHAR_HASH_USED (hashp) >= CMPCHAR_HASH_SIZE (hashp)) | |
1653 { | |
1654 CMPCHAR_HASH_SIZE (hashp) += 8; | |
1655 hashp = (cmpchar_hash_table[hash_idx] | |
1656 = (int *) xrealloc (hashp, | |
1657 sizeof (int) * CMPCHAR_HASH_SIZE (hashp))); | |
1658 } | |
1659 CMPCHAR_HASH_CMPCHAR_ID (hashp, CMPCHAR_HASH_USED (hashp)) = n_cmpchars; | |
1660 CMPCHAR_HASH_USED (hashp)++; | |
1661 | |
1662 /* Set information of the composite character in cmpchar_table. */ | |
1663 if (cmpchar_table_size == 0) | |
1664 { | |
1665 /* This is the first composite character to be registered. */ | |
1666 cmpchar_table_size = 256; | |
1667 cmpchar_table | |
1668 = (struct cmpchar_info **) xmalloc (sizeof (cmpchar_table[0]) | |
1669 * cmpchar_table_size); | |
1670 } | |
1671 else if (cmpchar_table_size <= n_cmpchars) | |
1672 { | |
1673 cmpchar_table_size += 256; | |
1674 cmpchar_table | |
1675 = (struct cmpchar_info **) xrealloc (cmpchar_table, | |
1676 sizeof (cmpchar_table[0]) | |
1677 * cmpchar_table_size); | |
1678 } | |
1679 | |
1680 cmpcharp = (struct cmpchar_info *) xmalloc (sizeof (struct cmpchar_info)); | |
1681 | |
1682 cmpcharp->len = len; | |
1683 cmpcharp->data = (unsigned char *) xmalloc (len + 1); | |
1684 bcopy (str, cmpcharp->data, len); | |
1685 cmpcharp->data[len] = 0; | |
1686 cmpcharp->glyph_len = chars; | |
1687 cmpcharp->glyph = (GLYPH *) xmalloc (sizeof (GLYPH) * chars); | |
1688 if (embedded_rule) | |
1689 { | |
1690 cmpcharp->cmp_rule = (unsigned char *) xmalloc (chars); | |
1691 cmpcharp->col_offset = (float *) xmalloc (sizeof (float) * chars); | |
1692 } | |
1693 else | |
1694 { | |
1695 cmpcharp->cmp_rule = NULL; | |
1696 cmpcharp->col_offset = NULL; | |
1697 } | |
1698 | |
1699 /* Setup GLYPH data and composition rules (if any) so as not to make | |
1700 them every time on displaying. */ | |
1701 { | |
1702 unsigned char *bufp; | |
1703 int width; | |
1704 float leftmost = 0.0, rightmost = 1.0; | |
1705 | |
1706 if (embedded_rule) | |
1707 /* At first, col_offset[N] is set to relative to col_offset[0]. */ | |
1708 cmpcharp->col_offset[0] = 0; | |
1709 | |
1710 for (i = 0, bufp = cmpcharp->data + 1; i < chars; i++) | |
1711 { | |
1712 if (embedded_rule) | |
1713 cmpcharp->cmp_rule[i] = *bufp++; | |
1714 | |
1715 if (*bufp == 0xA0) /* This is an ASCII character. */ | |
1716 { | |
1717 cmpcharp->glyph[i] = FAST_MAKE_GLYPH ((*++bufp & 0x7F), 0); | |
1718 width = 1; | |
1719 bufp++; | |
1720 } | |
1721 else /* Multibyte character. */ | |
1722 { | |
1723 /* Make `bufp' point normal multi-byte form temporally. */ | |
1724 *bufp -= 0x20; | |
1725 cmpcharp->glyph[i] | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1726 = FAST_MAKE_GLYPH (string_to_non_ascii_char (bufp, 4, 0), 0); |
17052 | 1727 width = WIDTH_BY_CHAR_HEAD (*bufp); |
1728 *bufp += 0x20; | |
1729 bufp += BYTES_BY_CHAR_HEAD (*bufp - 0x20); | |
1730 } | |
1731 | |
1732 if (embedded_rule && i > 0) | |
1733 { | |
1734 /* Reference points (global_ref and new_ref) are | |
1735 encoded as below: | |
1736 | |
1737 0--1--2 -- ascent | |
1738 | | | |
1739 | | | |
1740 | 4 -+--- center | |
1741 -- 3 5 -- baseline | |
1742 | | | |
1743 6--7--8 -- descent | |
1744 | |
1745 Now, we calculate the column offset of the new glyph | |
1746 from the left edge of the first glyph. This can avoid | |
1747 the same calculation everytime displaying this | |
1748 composite character. */ | |
1749 | |
1750 /* Reference points of global glyph and new glyph. */ | |
1751 int global_ref = (cmpcharp->cmp_rule[i] - 0xA0) / 9; | |
1752 int new_ref = (cmpcharp->cmp_rule[i] - 0xA0) % 9; | |
1753 /* Column offset relative to the first glyph. */ | |
1754 float left = (leftmost | |
1755 + (global_ref % 3) * (rightmost - leftmost) / 2.0 | |
1756 - (new_ref % 3) * width / 2.0); | |
1757 | |
1758 cmpcharp->col_offset[i] = left; | |
1759 if (left < leftmost) | |
1760 leftmost = left; | |
1761 if (left + width > rightmost) | |
1762 rightmost = left + width; | |
1763 } | |
1764 else | |
1765 { | |
1766 if (width > rightmost) | |
1767 rightmost = width; | |
1768 } | |
1769 } | |
1770 if (embedded_rule) | |
1771 { | |
1772 /* Now col_offset[N] are relative to the left edge of the | |
1773 first component. Make them relative to the left edge of | |
1774 overall glyph. */ | |
1775 for (i = 0; i < chars; i++) | |
1776 cmpcharp->col_offset[i] -= leftmost; | |
1777 /* Make rightmost holds width of overall glyph. */ | |
1778 rightmost -= leftmost; | |
1779 } | |
1780 | |
1781 cmpcharp->width = rightmost; | |
1782 if (cmpcharp->width < rightmost) | |
1783 /* To get a ceiling integer value. */ | |
1784 cmpcharp->width++; | |
1785 } | |
1786 | |
1787 cmpchar_table[n_cmpchars] = cmpcharp; | |
1788 | |
1789 return n_cmpchars++; | |
1790 } | |
1791 | |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1792 /* Return the Nth element of the composite character C. If NOERROR is |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1793 nonzero, return 0 on error condition (C is an invalid composite |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1794 charcter, or N is out of range). */ |
17052 | 1795 int |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1796 cmpchar_component (c, n, noerror) |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1797 int c, n, noerror; |
17052 | 1798 { |
1799 int id = COMPOSITE_CHAR_ID (c); | |
1800 | |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1801 if (id < 0 || id >= n_cmpchars) |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1802 { |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1803 /* C is not a valid composite character. */ |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1804 if (noerror) return 0; |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1805 error ("Invalid composite character: %d", c) ; |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1806 } |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1807 if (n >= cmpchar_table[id]->glyph_len) |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1808 { |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1809 /* No such component. */ |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1810 if (noerror) return 0; |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1811 args_out_of_range (make_number (c), make_number (n)); |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1812 } |
17052 | 1813 /* No face data is stored in glyph code. */ |
1814 return ((int) (cmpchar_table[id]->glyph[n])); | |
1815 } | |
1816 | |
1817 DEFUN ("cmpcharp", Fcmpcharp, Scmpcharp, 1, 1, 0, | |
1818 "T if CHAR is a composite character.") | |
1819 (ch) | |
1820 Lisp_Object ch; | |
1821 { | |
1822 CHECK_NUMBER (ch, 0); | |
1823 return (COMPOSITE_CHAR_P (XINT (ch)) ? Qt : Qnil); | |
1824 } | |
1825 | |
1826 DEFUN ("composite-char-component", Fcmpchar_component, Scmpchar_component, | |
1827 2, 2, 0, | |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1828 "Return the Nth component character of composite character CHARACTER.") |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1829 (character, n) |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1830 Lisp_Object character, n; |
17052 | 1831 { |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1832 int id; |
17052 | 1833 |
1834 CHECK_NUMBER (character, 0); | |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1835 CHECK_NUMBER (n, 1); |
17052 | 1836 |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1837 return (make_number (cmpchar_component (XINT (character), XINT (n), 0))); |
17052 | 1838 } |
1839 | |
1840 DEFUN ("composite-char-composition-rule", Fcmpchar_cmp_rule, Scmpchar_cmp_rule, | |
1841 2, 2, 0, | |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1842 "Return the Nth composition rule of composite character CHARACTER.\n\ |
17121
f8e2cd94c274
(Fcmpchar_cmp_rule): Escape newlines in docstring.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1843 The returned rule is for composing the Nth component\n\ |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1844 on the (N-1)th component.\n\ |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1845 If CHARACTER should be composed relatively or N is 0, return 255.") |
17121
f8e2cd94c274
(Fcmpchar_cmp_rule): Escape newlines in docstring.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1846 (character, n) |
f8e2cd94c274
(Fcmpchar_cmp_rule): Escape newlines in docstring.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1847 Lisp_Object character, n; |
17052 | 1848 { |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1849 int id; |
17052 | 1850 |
1851 CHECK_NUMBER (character, 0); | |
17121
f8e2cd94c274
(Fcmpchar_cmp_rule): Escape newlines in docstring.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1852 CHECK_NUMBER (n, 1); |
17052 | 1853 |
1854 id = COMPOSITE_CHAR_ID (XINT (character)); | |
1855 if (id < 0 || id >= n_cmpchars) | |
1856 error ("Invalid composite character: %d", XINT (character)); | |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1857 if (XINT (n) < 0 || XINT (n) >= cmpchar_table[id]->glyph_len) |
17121
f8e2cd94c274
(Fcmpchar_cmp_rule): Escape newlines in docstring.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1858 args_out_of_range (character, n); |
17052 | 1859 |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1860 return make_number (cmpchar_table[id]->cmp_rule |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1861 ? cmpchar_table[id]->cmp_rule[XINT (n)] |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1862 : 255); |
17052 | 1863 } |
1864 | |
1865 DEFUN ("composite-char-composition-rule-p", Fcmpchar_cmp_rule_p, | |
1866 Scmpchar_cmp_rule_p, 1, 1, 0, | |
1867 "Return non-nil if composite character CHARACTER contains a embedded rule.") | |
1868 (character) | |
1869 Lisp_Object character; | |
1870 { | |
1871 int id; | |
1872 | |
1873 CHECK_NUMBER (character, 0); | |
1874 id = COMPOSITE_CHAR_ID (XINT (character)); | |
1875 if (id < 0 || id >= n_cmpchars) | |
1876 error ("Invalid composite character: %d", XINT (character)); | |
1877 | |
1878 return (cmpchar_table[id]->cmp_rule ? Qt : Qnil); | |
1879 } | |
1880 | |
1881 DEFUN ("composite-char-component-count", Fcmpchar_cmp_count, | |
1882 Scmpchar_cmp_count, 1, 1, 0, | |
1883 "Return number of compoents of composite character CHARACTER.") | |
1884 (character) | |
1885 Lisp_Object character; | |
1886 { | |
1887 int id; | |
1888 | |
1889 CHECK_NUMBER (character, 0); | |
1890 id = COMPOSITE_CHAR_ID (XINT (character)); | |
1891 if (id < 0 || id >= n_cmpchars) | |
1892 error ("Invalid composite character: %d", XINT (character)); | |
1893 | |
1894 return (make_number (cmpchar_table[id]->glyph_len)); | |
1895 } | |
1896 | |
1897 DEFUN ("compose-string", Fcompose_string, Scompose_string, | |
1898 1, 1, 0, | |
1899 "Return one char string composed from all characters in STRING.") | |
1900 (str) | |
1901 Lisp_Object str; | |
1902 { | |
1903 unsigned char buf[MAX_LENGTH_OF_MULTI_BYTE_FORM], *p, *pend, *ptemp; | |
1904 int len, i; | |
1905 | |
1906 CHECK_STRING (str, 0); | |
1907 | |
1908 buf[0] = LEADING_CODE_COMPOSITION; | |
1909 p = XSTRING (str)->data; | |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21063
diff
changeset
|
1910 pend = p + STRING_BYTES (XSTRING (str)); |
17052 | 1911 i = 1; |
1912 while (p < pend) | |
1913 { | |
23685
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1914 if (*p < 0x20) /* control code */ |
17052 | 1915 error ("Invalid component character: %d", *p); |
1916 else if (*p < 0x80) /* ASCII */ | |
1917 { | |
1918 if (i + 2 >= MAX_LENGTH_OF_MULTI_BYTE_FORM) | |
1919 error ("Too long string to be composed: %s", XSTRING (str)->data); | |
1920 /* Prepend an ASCII charset indicator 0xA0, set MSB of the | |
1921 code itself. */ | |
1922 buf[i++] = 0xA0; | |
1923 buf[i++] = *p++ + 0x80; | |
1924 } | |
1925 else if (*p == LEADING_CODE_COMPOSITION) /* composite char */ | |
1926 { | |
1927 /* Already composed. Eliminate the heading | |
1928 LEADING_CODE_COMPOSITION, keep the remaining bytes | |
1929 unchanged. */ | |
1930 p++; | |
23668
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1931 if (*p == 255) |
23faf76ec325
(cmpchar_component): New arg NOERROR. Check
Kenichi Handa <handa@m17n.org>
parents:
23665
diff
changeset
|
1932 error ("Can't compose a rule-based composition character"); |
17052 | 1933 ptemp = p; |
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1934 while (! CHAR_HEAD_P (*p)) p++; |
23685
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1935 if (str_cmpchar_id (ptemp - 1, p - ptemp + 1) < 0) |
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1936 error ("Can't compose an invalid composition character"); |
17052 | 1937 if (i + (p - ptemp) >= MAX_LENGTH_OF_MULTI_BYTE_FORM) |
1938 error ("Too long string to be composed: %s", XSTRING (str)->data); | |
1939 bcopy (ptemp, buf + i, p - ptemp); | |
1940 i += p - ptemp; | |
1941 } | |
1942 else /* multibyte char */ | |
1943 { | |
1944 /* Add 0x20 to the base leading-code, keep the remaining | |
1945 bytes unchanged. */ | |
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1946 int c = STRING_CHAR_AND_LENGTH (p, pend - p, len); |
23685
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1947 |
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1948 if (len <= 1 || ! CHAR_VALID_P (c, 0)) |
14c75dfaaa44
(str_cmpchar_id): Check the byte sequence for
Kenichi Handa <handa@m17n.org>
parents:
23668
diff
changeset
|
1949 error ("Can't compose an invalid character"); |
17052 | 1950 if (i + len >= MAX_LENGTH_OF_MULTI_BYTE_FORM) |
1951 error ("Too long string to be composed: %s", XSTRING (str)->data); | |
1952 bcopy (p, buf + i, len); | |
1953 buf[i] += 0x20; | |
1954 p += len, i += len; | |
1955 } | |
1956 } | |
1957 | |
1958 if (i < 5) | |
1959 /* STR contains only one character, which can't be composed. */ | |
1960 error ("Too short string to be composed: %s", XSTRING (str)->data); | |
1961 | |
21255
3d75330ce275
(Fstring): Use make_string_from_bytes.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
1962 return make_string_from_bytes (buf, 1, i); |
17052 | 1963 } |
1964 | |
1965 | |
21514 | 1966 int |
17052 | 1967 charset_id_internal (charset_name) |
1968 char *charset_name; | |
1969 { | |
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
1970 Lisp_Object val; |
17052 | 1971 |
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
1972 val= Fget (intern (charset_name), Qcharset); |
17052 | 1973 if (!VECTORP (val)) |
1974 error ("Charset %s is not defined", charset_name); | |
1975 | |
1976 return (XINT (XVECTOR (val)->contents[0])); | |
1977 } | |
1978 | |
1979 DEFUN ("setup-special-charsets", Fsetup_special_charsets, | |
1980 Ssetup_special_charsets, 0, 0, 0, "Internal use only.") | |
1981 () | |
1982 { | |
1983 charset_latin_iso8859_1 = charset_id_internal ("latin-iso8859-1"); | |
1984 charset_jisx0208_1978 = charset_id_internal ("japanese-jisx0208-1978"); | |
1985 charset_jisx0208 = charset_id_internal ("japanese-jisx0208"); | |
1986 charset_katakana_jisx0201 = charset_id_internal ("katakana-jisx0201"); | |
1987 charset_latin_jisx0201 = charset_id_internal ("latin-jisx0201"); | |
1988 charset_big5_1 = charset_id_internal ("chinese-big5-1"); | |
1989 charset_big5_2 = charset_id_internal ("chinese-big5-2"); | |
1990 return Qnil; | |
1991 } | |
1992 | |
21514 | 1993 void |
17052 | 1994 init_charset_once () |
1995 { | |
1996 int i, j, k; | |
1997 | |
1998 staticpro (&Vcharset_table); | |
1999 staticpro (&Vcharset_symbol_table); | |
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2000 staticpro (&Vgeneric_character_list); |
17052 | 2001 |
2002 /* This has to be done here, before we call Fmake_char_table. */ | |
2003 Qcharset_table = intern ("charset-table"); | |
2004 staticpro (&Qcharset_table); | |
2005 | |
2006 /* Intern this now in case it isn't already done. | |
2007 Setting this variable twice is harmless. | |
2008 But don't staticpro it here--that is done in alloc.c. */ | |
2009 Qchar_table_extra_slots = intern ("char-table-extra-slots"); | |
2010 | |
2011 /* Now we are ready to set up this property, so we can | |
2012 create the charset table. */ | |
2013 Fput (Qcharset_table, Qchar_table_extra_slots, make_number (0)); | |
2014 Vcharset_table = Fmake_char_table (Qcharset_table, Qnil); | |
2015 | |
23883 | 2016 Qunknown = intern ("unknown"); |
2017 staticpro (&Qunknown); | |
2018 Vcharset_symbol_table = Fmake_vector (make_number (MAX_CHARSET + 1), | |
2019 Qunknown); | |
17052 | 2020 |
2021 /* Setup tables. */ | |
2022 for (i = 0; i < 2; i++) | |
2023 for (j = 0; j < 2; j++) | |
2024 for (k = 0; k < 128; k++) | |
2025 iso_charset_table [i][j][k] = -1; | |
2026 | |
2027 bzero (cmpchar_hash_table, sizeof cmpchar_hash_table); | |
2028 cmpchar_table_size = n_cmpchars = 0; | |
2029 | |
23656
031653c4634a
(init_charset_once): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23654
diff
changeset
|
2030 for (i = 0; i < 256; i++) |
17052 | 2031 BYTES_BY_CHAR_HEAD (i) = 1; |
23628
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2032 for (i = MIN_CHARSET_OFFICIAL_DIMENSION1; |
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2033 i <= MAX_CHARSET_OFFICIAL_DIMENSION1; i++) |
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2034 BYTES_BY_CHAR_HEAD (i) = 2; |
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2035 for (i = MIN_CHARSET_OFFICIAL_DIMENSION2; |
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2036 i <= MAX_CHARSET_OFFICIAL_DIMENSION2; i++) |
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2037 BYTES_BY_CHAR_HEAD (i) = 3; |
17052 | 2038 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 3; |
2039 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 3; | |
2040 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 4; | |
2041 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_22) = 4; | |
23628
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2042 /* The followings don't reflect the actual bytes, but just to tell |
17052 | 2043 that it is a start of a multibyte character. */ |
2044 BYTES_BY_CHAR_HEAD (LEADING_CODE_COMPOSITION) = 2; | |
23628
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2045 BYTES_BY_CHAR_HEAD (0x9E) = 2; |
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
2046 BYTES_BY_CHAR_HEAD (0x9F) = 2; |
17052 | 2047 |
2048 for (i = 0; i < 128; i++) | |
2049 WIDTH_BY_CHAR_HEAD (i) = 1; | |
2050 for (; i < 256; i++) | |
2051 WIDTH_BY_CHAR_HEAD (i) = 4; | |
2052 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 1; | |
2053 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 2; | |
2054 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 1; | |
2055 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_22) = 2; | |
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2056 |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2057 { |
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
2058 Lisp_Object val; |
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2059 |
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
2060 val = Qnil; |
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2061 for (i = 0x81; i < 0x90; i++) |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2062 val = Fcons (make_number ((i - 0x70) << 7), val); |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2063 for (; i < 0x9A; i++) |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2064 val = Fcons (make_number ((i - 0x8F) << 14), val); |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2065 for (i = 0xA0; i < 0xF0; i++) |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2066 val = Fcons (make_number ((i - 0x70) << 7), val); |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2067 for (; i < 0xFF; i++) |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2068 val = Fcons (make_number ((i - 0xE0) << 14), val); |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2069 val = Fcons (make_number (GENERIC_COMPOSITION_CHAR), val); |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2070 Vgeneric_character_list = Fnreverse (val); |
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2071 } |
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
2072 |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
2073 nonascii_insert_offset = 0; |
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
2074 Vnonascii_translation_table = Qnil; |
17052 | 2075 } |
2076 | |
2077 #ifdef emacs | |
2078 | |
21514 | 2079 void |
17052 | 2080 syms_of_charset () |
2081 { | |
2082 Qascii = intern ("ascii"); | |
2083 staticpro (&Qascii); | |
2084 | |
2085 Qcharset = intern ("charset"); | |
2086 staticpro (&Qcharset); | |
2087 | |
2088 /* Define ASCII charset now. */ | |
2089 update_charset_table (make_number (CHARSET_ASCII), | |
2090 make_number (1), make_number (94), | |
2091 make_number (1), | |
2092 make_number (0), | |
2093 make_number ('B'), | |
2094 make_number (0), | |
2095 build_string ("ASCII"), | |
2096 build_string ("ASCII"), | |
2097 build_string ("ASCII (ISO646 IRV)")); | |
2098 CHARSET_SYMBOL (CHARSET_ASCII) = Qascii; | |
2099 Fput (Qascii, Qcharset, CHARSET_TABLE_ENTRY (CHARSET_ASCII)); | |
2100 | |
2101 Qcomposition = intern ("composition"); | |
2102 staticpro (&Qcomposition); | |
2103 CHARSET_SYMBOL (CHARSET_COMPOSITION) = Qcomposition; | |
2104 | |
23489
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2105 Qauto_fill_chars = intern ("auto-fill-chars"); |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2106 staticpro (&Qauto_fill_chars); |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2107 Fput (Qauto_fill_chars, Qchar_table_extra_slots, make_number (0)); |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2108 |
17052 | 2109 defsubr (&Sdefine_charset); |
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
2110 defsubr (&Sgeneric_character_list); |
20435
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
2111 defsubr (&Sget_unused_iso_final_char); |
17052 | 2112 defsubr (&Sdeclare_equiv_charset); |
2113 defsubr (&Sfind_charset_region); | |
2114 defsubr (&Sfind_charset_string); | |
2115 defsubr (&Smake_char_internal); | |
2116 defsubr (&Ssplit_char); | |
2117 defsubr (&Schar_charset); | |
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
2118 defsubr (&Scharset_after); |
17052 | 2119 defsubr (&Siso_charset); |
20152
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
2120 defsubr (&Schar_valid_p); |
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
2121 defsubr (&Sunibyte_char_to_multibyte); |
23060
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
2122 defsubr (&Smultibyte_char_to_unibyte); |
17052 | 2123 defsubr (&Schar_bytes); |
2124 defsubr (&Schar_width); | |
2125 defsubr (&Sstring_width); | |
2126 defsubr (&Schar_direction); | |
19415
309b9a0d8a45
(Fchars_in_region): Renamed form Fcount_chars_region.
Kenichi Handa <handa@m17n.org>
parents:
19384
diff
changeset
|
2127 defsubr (&Schars_in_region); |
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
2128 defsubr (&Sstring); |
17052 | 2129 defsubr (&Scmpcharp); |
2130 defsubr (&Scmpchar_component); | |
2131 defsubr (&Scmpchar_cmp_rule); | |
2132 defsubr (&Scmpchar_cmp_rule_p); | |
2133 defsubr (&Scmpchar_cmp_count); | |
2134 defsubr (&Scompose_string); | |
2135 defsubr (&Ssetup_special_charsets); | |
2136 | |
2137 DEFVAR_LISP ("charset-list", &Vcharset_list, | |
2138 "List of charsets ever defined."); | |
2139 Vcharset_list = Fcons (Qascii, Qnil); | |
2140 | |
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
2141 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector, |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
2142 "Vector of cons cell of a symbol and translation table ever defined.\n\ |
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
2143 An ID of a translation table is an index of this vector."); |
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
2144 Vtranslation_table_vector = Fmake_vector (make_number (16), Qnil); |
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
2145 |
17052 | 2146 DEFVAR_INT ("leading-code-composition", &leading_code_composition, |
2147 "Leading-code of composite characters."); | |
2148 leading_code_composition = LEADING_CODE_COMPOSITION; | |
2149 | |
2150 DEFVAR_INT ("leading-code-private-11", &leading_code_private_11, | |
2151 "Leading-code of private TYPE9N charset of column-width 1."); | |
2152 leading_code_private_11 = LEADING_CODE_PRIVATE_11; | |
2153 | |
2154 DEFVAR_INT ("leading-code-private-12", &leading_code_private_12, | |
2155 "Leading-code of private TYPE9N charset of column-width 2."); | |
2156 leading_code_private_12 = LEADING_CODE_PRIVATE_12; | |
2157 | |
2158 DEFVAR_INT ("leading-code-private-21", &leading_code_private_21, | |
2159 "Leading-code of private TYPE9Nx9N charset of column-width 1."); | |
2160 leading_code_private_21 = LEADING_CODE_PRIVATE_21; | |
2161 | |
2162 DEFVAR_INT ("leading-code-private-22", &leading_code_private_22, | |
2163 "Leading-code of private TYPE9Nx9N charset of column-width 2."); | |
2164 leading_code_private_22 = LEADING_CODE_PRIVATE_22; | |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
2165 |
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
2166 DEFVAR_INT ("nonascii-insert-offset", &nonascii_insert_offset, |
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
2167 "Offset for converting non-ASCII unibyte codes 0240...0377 to multibyte.\n\ |
20890
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
2168 This is used for converting unibyte text to multibyte,\n\ |
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
2169 and for inserting character codes specified by number.\n\n\ |
21718
361e50e075d8
(syms_of_charset): Doc fix for nonascii-insert-offset.
Richard M. Stallman <rms@gnu.org>
parents:
21715
diff
changeset
|
2170 This serves to convert a Latin-1 or similar 8-bit character code\n\ |
361e50e075d8
(syms_of_charset): Doc fix for nonascii-insert-offset.
Richard M. Stallman <rms@gnu.org>
parents:
21715
diff
changeset
|
2171 to the corresponding Emacs multibyte character code.\n\ |
361e50e075d8
(syms_of_charset): Doc fix for nonascii-insert-offset.
Richard M. Stallman <rms@gnu.org>
parents:
21715
diff
changeset
|
2172 Typically the value should be (- (make-char CHARSET 0) 128),\n\ |
361e50e075d8
(syms_of_charset): Doc fix for nonascii-insert-offset.
Richard M. Stallman <rms@gnu.org>
parents:
21715
diff
changeset
|
2173 for your choice of character set.\n\ |
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
2174 If `nonascii-translation-table' is non-nil, it overrides this variable."); |
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
2175 nonascii_insert_offset = 0; |
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
2176 |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
2177 DEFVAR_LISP ("nonascii-translation-table", &Vnonascii_translation_table, |
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
2178 "Translation table to convert non-ASCII unibyte codes to multibyte.\n\ |
20890
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
2179 This is used for converting unibyte text to multibyte,\n\ |
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
2180 and for inserting character codes specified by number.\n\n\ |
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
2181 Conversion is performed only when multibyte characters are enabled,\n\ |
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
2182 and it serves to convert a Latin-1 or similar 8-bit character code\n\ |
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
2183 to the corresponding Emacs character code.\n\n\ |
22289
141f0392fb81
(syms_of_charset): Put \n\ at eol of docstring.
Karl Heuer <kwzh@gnu.org>
parents:
22185
diff
changeset
|
2184 If this is nil, `nonascii-insert-offset' is used instead.\n\ |
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
2185 See also the docstring of `make-translation-table'."); |
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
2186 Vnonascii_translation_table = Qnil; |
20890
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
2187 |
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
2188 DEFVAR_INT ("min-composite-char", &min_composite_char, |
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
2189 "Minimum character code of a composite character."); |
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
2190 min_composite_char = MIN_CHAR_COMPOSITION; |
23489
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2191 |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2192 DEFVAR_LISP ("auto-fill-chars", &Vauto_fill_chars, |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2193 "A char-table for characters which invoke auto-filling.\n\ |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2194 Such characters has value t in this table."); |
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
2195 Vauto_fill_chars = Fmake_char_table (Qauto_fill_chars, Qnil); |
23576 | 2196 CHAR_TABLE_SET (Vauto_fill_chars, make_number (' '), Qt); |
2197 CHAR_TABLE_SET (Vauto_fill_chars, make_number ('\n'), Qt); | |
17052 | 2198 } |
2199 | |
2200 #endif /* emacs */ |