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