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