Mercurial > emacs
annotate src/charset.c @ 26912:3470e4fea708
(BUILD_GLYPH_STRINGS): For pcc, remove continuation in arg list.
| author | Dave Love <fx@gnu.org> |
|---|---|
| date | Wed, 15 Dec 1999 17:46:18 +0000 |
| parents | 9e9a0735c824 |
| children | 5409f70f1c23 |
| 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 | |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25611
diff
changeset
|
25 #ifdef emacs |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25611
diff
changeset
|
26 #include <config.h> |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25611
diff
changeset
|
27 #endif |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25611
diff
changeset
|
28 |
| 17052 | 29 #include <stdio.h> |
| 30 | |
| 31 #ifdef emacs | |
| 32 | |
| 33 #include <sys/types.h> | |
| 34 #include "lisp.h" | |
| 35 #include "buffer.h" | |
| 36 #include "charset.h" | |
| 37 #include "coding.h" | |
| 17843 | 38 #include "disptab.h" |
| 17052 | 39 |
| 40 #else /* not emacs */ | |
| 41 | |
| 42 #include "mulelib.h" | |
| 43 | |
| 44 #endif /* emacs */ | |
| 45 | |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
46 Lisp_Object Qcharset, Qascii; |
| 23883 | 47 Lisp_Object Qunknown; |
| 17052 | 48 |
| 49 /* Declaration of special leading-codes. */ | |
| 50 int leading_code_private_11; /* for private DIMENSION1 of 1-column */ | |
| 51 int leading_code_private_12; /* for private DIMENSION1 of 2-column */ | |
| 52 int leading_code_private_21; /* for private DIMENSION2 of 1-column */ | |
| 53 int leading_code_private_22; /* for private DIMENSION2 of 2-column */ | |
| 54 | |
| 55 /* Declaration of special charsets. */ | |
| 56 int charset_ascii; /* ASCII */ | |
| 57 int charset_latin_iso8859_1; /* ISO8859-1 (Latin-1) */ | |
| 58 int charset_jisx0208_1978; /* JISX0208.1978 (Japanese Kanji old set) */ | |
| 59 int charset_jisx0208; /* JISX0208.1983 (Japanese Kanji) */ | |
| 60 int charset_katakana_jisx0201; /* JISX0201.Kana (Japanese Katakana) */ | |
| 61 int charset_latin_jisx0201; /* JISX0201.Roman (Japanese Roman) */ | |
| 62 int charset_big5_1; /* Big5 Level 1 (Chinese Traditional) */ | |
| 63 int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */ | |
| 64 | |
| 65 Lisp_Object Qcharset_table; | |
| 66 | |
| 67 /* A char-table containing information of each character set. */ | |
| 68 Lisp_Object Vcharset_table; | |
| 69 | |
| 70 /* A vector of charset symbol indexed by charset-id. This is used | |
| 71 only for returning charset symbol from C functions. */ | |
| 72 Lisp_Object Vcharset_symbol_table; | |
| 73 | |
| 74 /* A list of charset symbols ever defined. */ | |
| 75 Lisp_Object Vcharset_list; | |
| 76 | |
|
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
77 /* Vector of translation table ever defined. |
|
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
78 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
|
79 Lisp_Object Vtranslation_table_vector; |
|
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
80 |
|
23489
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
81 /* 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
|
82 Lisp_Object Vauto_fill_chars; |
|
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
83 |
|
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
84 Lisp_Object Qauto_fill_chars; |
|
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
85 |
| 17052 | 86 /* Tables used by macros BYTES_BY_CHAR_HEAD and WIDTH_BY_CHAR_HEAD. */ |
| 87 int bytes_by_char_head[256]; | |
| 88 int width_by_char_head[256]; | |
| 89 | |
| 90 /* Mapping table from ISO2022's charset (specified by DIMENSION, | |
| 91 CHARS, and FINAL-CHAR) to Emacs' charset. */ | |
| 92 int iso_charset_table[2][2][128]; | |
| 93 | |
| 94 /* Variables used locally in the macro FETCH_MULTIBYTE_CHAR. */ | |
| 95 unsigned char *_fetch_multibyte_char_p; | |
| 96 int _fetch_multibyte_char_len; | |
| 97 | |
|
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
98 /* 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
|
99 int nonascii_insert_offset; |
|
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
100 |
|
20890
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
101 /* Translation table for converting non-ASCII unibyte characters |
|
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
102 to multibyte codes, or nil. */ |
|
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
103 Lisp_Object Vnonascii_translation_table; |
|
20890
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
104 |
|
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
105 /* List of all possible generic characters. */ |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
106 Lisp_Object Vgeneric_character_list; |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
107 |
| 19384 | 108 #define min(X, Y) ((X) < (Y) ? (X) : (Y)) |
| 109 #define max(X, Y) ((X) > (Y) ? (X) : (Y)) | |
| 110 | |
|
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
111 void |
|
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
112 invalid_character (c) |
|
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
113 int c; |
|
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
114 { |
|
23397
2fe04027242e
(invalid_character): Prepend `0' to octal
Kenichi Handa <handa@m17n.org>
parents:
23210
diff
changeset
|
115 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
|
116 } |
|
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
117 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
118 /* Parse a multibyte character string STR of length LENGTH (>= 2) set |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
119 BYTES to the length of actual multibyte sequence, CHARSET, C1, and |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
120 C2 to such values that MAKE_CHAR can make the multibyte character |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
121 from them. |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
122 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
123 It is assumed that *STR is one of base leading codes and the |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
124 following (LENGTH - 1) bytes satisfy !CHAR_HEAD_P. |
| 25584 | 125 |
| 126 This macro should be called only from SPLIT_MULTIBYTE_SEQ. */ | |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
127 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
128 #define SPLIT_CHARACTER_SEQ(str, length, bytes, charset, c1, c2) \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
129 do { \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
130 (bytes) = 1; \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
131 (charset) = (str)[0]; \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
132 if ((charset) >= LEADING_CODE_PRIVATE_11 \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
133 && (charset) <= LEADING_CODE_PRIVATE_22) \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
134 (charset) = (str)[(bytes)++]; \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
135 if ((bytes) < (length)) \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
136 { \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
137 (c1) = (str)[(bytes)++] & 0x7F; \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
138 if ((bytes) < (length)) \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
139 (c2) = (str)[(bytes)++] & 0x7F; \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
140 else \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
141 (c2) = -1; \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
142 } \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
143 else \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
144 (c1) = (c2) = -1; \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
145 } while (0) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
146 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
147 /* Parse string STR of length LENGTH and check if a multibyte |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
148 characters is at STR. Set BYTES to the actual length, CHARSET, C1, |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
149 C2 to proper values for that character. */ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
150 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
151 #define SPLIT_MULTIBYTE_SEQ(str, length, bytes, charset, c1, c2) \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
152 do { \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
153 int i; \ |
| 25584 | 154 if (ASCII_BYTE_P ((str)[0])) \ |
| 155 i = 1; \ | |
| 156 else \ | |
| 157 for (i = 1; i < (length) && ! CHAR_HEAD_P ((str)[i]); i++); \ | |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
158 if (i == 1) \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
159 (bytes) = 1, (charset) = CHARSET_ASCII, (c1) = (str)[0] ; \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
160 else \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
161 { \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
162 if (i > BYTES_BY_CHAR_HEAD ((str)[0])) \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
163 i = BYTES_BY_CHAR_HEAD ((str)[0]); \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
164 SPLIT_CHARACTER_SEQ (str, i, bytes, charset, c1, c2); \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
165 } \ |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
166 } while (0) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
167 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
168 /* 1 if CHARSET, C1, and C2 compose a valid character, else 0. */ |
| 25584 | 169 #define CHAR_COMPONENTS_VALID_P(charset, c1, c2) \ |
|
25611
9c9d13747ffb
(CHAR_COMPONENTS_VALID_P): Fix for ASCII.
Kenichi Handa <handa@m17n.org>
parents:
25610
diff
changeset
|
170 (charset == CHARSET_ASCII \ |
|
9c9d13747ffb
(CHAR_COMPONENTS_VALID_P): Fix for ASCII.
Kenichi Handa <handa@m17n.org>
parents:
25610
diff
changeset
|
171 ? ((c1) >= 0 && (c1) <= 0x7F) \ |
|
9c9d13747ffb
(CHAR_COMPONENTS_VALID_P): Fix for ASCII.
Kenichi Handa <handa@m17n.org>
parents:
25610
diff
changeset
|
172 : (CHARSET_DIMENSION (charset) == 1 \ |
|
9c9d13747ffb
(CHAR_COMPONENTS_VALID_P): Fix for ASCII.
Kenichi Handa <handa@m17n.org>
parents:
25610
diff
changeset
|
173 ? ((c1) >= 0x20 && (c1) <= 0x7F) \ |
|
9c9d13747ffb
(CHAR_COMPONENTS_VALID_P): Fix for ASCII.
Kenichi Handa <handa@m17n.org>
parents:
25610
diff
changeset
|
174 : ((c1) >= 0x20 && (c1) <= 0x7F && (c2) >= 0x20 && (c2) <= 0x7F))) |
|
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
175 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
176 /* Store multi-byte form of the character C in STR. The caller should |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
177 allocate at least 4-byte area at STR in advance. Returns the |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
178 length of the multi-byte form. If C is an invalid character code, |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
179 signal an error. |
| 17052 | 180 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
181 Use macro `CHAR_STRING (C, STR)' instead of calling this function |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
182 directly if C can be an ASCII character. */ |
| 17052 | 183 |
| 184 int | |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
185 char_to_string (c, str) |
| 17052 | 186 int c; |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
187 unsigned char *str; |
| 17052 | 188 { |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
189 unsigned char *p = str; |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
190 |
|
25250
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
191 if (c & CHAR_MODIFIER_MASK) /* This includes the case C is negative. */ |
|
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
192 { |
|
25250
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
193 /* Multibyte character can't have a modifier bit. */ |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
194 if (! SINGLE_BYTE_CHAR_P ((c & ~CHAR_MODIFIER_MASK))) |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
195 invalid_character (c); |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
196 |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
197 /* For Meta, Shift, and Control modifiers, we need special care. */ |
|
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
198 if (c & CHAR_META) |
|
25250
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
199 { |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
200 /* Move the meta bit to the right place for a string. */ |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
201 c = (c & ~CHAR_META) | 0x80; |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
202 } |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
203 if (c & CHAR_SHIFT) |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
204 { |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
205 /* Shift modifier is valid only with [A-Za-z]. */ |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
206 if ((c & 0377) >= 'A' && (c & 0377) <= 'Z') |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
207 c &= ~CHAR_SHIFT; |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
208 else if ((c & 0377) >= 'a' && (c & 0377) <= 'z') |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
209 c = (c & ~CHAR_SHIFT) - ('a' - 'A'); |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
210 } |
|
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
211 if (c & CHAR_CTL) |
|
25250
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
212 { |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
213 /* Simulate the code in lread.c. */ |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
214 /* Allow `\C- ' and `\C-?'. */ |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
215 if (c == (CHAR_CTL | ' ')) |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
216 c = 0; |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
217 else if (c == (CHAR_CTL | '?')) |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
218 c = 127; |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
219 /* ASCII control chars are made from letters (both cases), |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
220 as well as the non-letters within 0100...0137. */ |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
221 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132) |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
222 c &= (037 | (~0177 & ~CHAR_CTL)); |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
223 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137) |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
224 c &= (037 | (~0177 & ~CHAR_CTL)); |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
225 } |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
226 |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
227 /* If C still has any modifier bits, it is an invalid character. */ |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
228 if (c & CHAR_MODIFIER_MASK) |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
229 invalid_character (c); |
|
2228d0a678ef
(non_ascii_char_to_string): Handle modifier bits as
Kenichi Handa <handa@m17n.org>
parents:
23978
diff
changeset
|
230 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
231 *p++ = c; |
|
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
232 } |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
233 else if (c < MAX_CHAR) |
| 17052 | 234 { |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
235 int charset, c1, c2; |
| 17052 | 236 |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
237 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2); |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
238 |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
239 if (charset >= LEADING_CODE_EXT_11) |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
240 *p++ = (charset < LEADING_CODE_EXT_12 |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
241 ? LEADING_CODE_PRIVATE_11 |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
242 : (charset < LEADING_CODE_EXT_21 |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
243 ? LEADING_CODE_PRIVATE_12 |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
244 : (charset < LEADING_CODE_EXT_22 |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
245 ? LEADING_CODE_PRIVATE_21 |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
246 : LEADING_CODE_PRIVATE_22))); |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
247 *p++ = charset; |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
248 if (c1 > 0 && c1 < 32 || c2 > 0 && c2 < 32) |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
249 invalid_character (c); |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
250 if (c1) |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
251 { |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
252 *p++ = c1 | 0x80; |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
253 if (c2 > 0) |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
254 *p++ = c2 | 0x80; |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
255 } |
| 17052 | 256 } |
| 257 | |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
258 return (p -str); |
| 17052 | 259 } |
| 260 | |
| 25584 | 261 /* Return the non-ASCII character corresponding to multi-byte form at |
| 262 STR of length LEN. If ACTUAL_LEN is not NULL, store the byte | |
| 263 length of the multibyte form in *ACTUAL_LEN. | |
|
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
264 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
265 Use macros STRING_CHAR or STRING_CHAR_AND_LENGTH instead of calling |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
266 this function directly if you want ot handle ASCII characters as |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
267 well. */ |
| 17052 | 268 |
| 21514 | 269 int |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
270 string_to_char (str, len, actual_len) |
|
21419
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21255
diff
changeset
|
271 const unsigned char *str; |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
272 int len, *actual_len; |
| 17052 | 273 { |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
274 int c, bytes, charset, c1, c2; |
|
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
275 |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
276 SPLIT_MULTIBYTE_SEQ (str, len, bytes, charset, c1, c2); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
277 c = MAKE_CHAR (charset, c1, c2); |
| 17052 | 278 if (actual_len) |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
279 *actual_len = bytes; |
| 17052 | 280 return c; |
| 281 } | |
| 282 | |
| 25584 | 283 /* Return the length of the multi-byte form at string STR of length LEN. |
| 284 Use the macro MULTIBYTE_FORM_LENGTH instead. */ | |
| 17052 | 285 int |
| 286 multibyte_form_length (str, len) | |
|
21419
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21255
diff
changeset
|
287 const unsigned char *str; |
| 17052 | 288 int len; |
| 289 { | |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
290 int bytes; |
| 17052 | 291 |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
292 PARSE_MULTIBYTE_SEQ (str, len, bytes); |
|
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
293 return bytes; |
| 17052 | 294 } |
| 295 | |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
296 /* Check multibyte form at string STR of length LEN and set variables |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
297 pointed by CHARSET, C1, and C2 to charset and position codes of the |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
298 character at STR, and return 0. If there's no multibyte character, |
| 17052 | 299 return -1. This should be used only in the macro SPLIT_STRING |
| 300 which checks range of STR in advance. */ | |
| 301 | |
| 21514 | 302 int |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
303 split_string (str, len, charset, c1, c2) |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
304 const unsigned char *str; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
305 unsigned char *c1, *c2; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
306 int len, *charset; |
| 17052 | 307 { |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
308 register int bytes, cs, code1, code2 = -1; |
| 17052 | 309 |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
310 SPLIT_MULTIBYTE_SEQ (str, len, bytes, cs, code1, code2); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
311 if (cs == CHARSET_ASCII) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
312 return -1; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
313 *charset = cs; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
314 *c1 = code1; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
315 *c2 = code2; |
|
26327
74566592a2d6
(split_non_ascii_string): Define return value.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
316 return 0; |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
317 } |
| 17052 | 318 |
| 25584 | 319 /* Return 1 iff character C has valid printable glyph. |
| 320 Use the macro CHAR_PRINTABLE_P instead. */ | |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
321 int |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
322 char_printable_p (c) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
323 int c; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
324 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
325 int charset, c1, c2, chars; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
326 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
327 if (SINGLE_BYTE_CHAR_P (c)) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
328 return 1; |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
329 if (c >= MAX_CHAR) |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
330 return 0; |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
331 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
332 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
333 if (! CHARSET_DEFINED_P (charset)) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
334 return 0; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
335 if (CHARSET_CHARS (charset) == 94 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
336 ? c1 <= 32 || c1 >= 127 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
337 : c1 < 32) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
338 return 0; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
339 if (CHARSET_DIMENSION (charset) == 2 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
340 && (CHARSET_CHARS (charset) == 94 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
341 ? c2 <= 32 || c2 >= 127 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
342 : c2 < 32)) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
343 return 0; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
344 return 1; |
| 17052 | 345 } |
| 346 | |
|
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
347 /* 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
|
348 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
|
349 (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
|
350 found in TABLE, return C. */ |
| 21514 | 351 int |
|
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
352 translate_char (table, c, charset, c1, c2) |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
353 Lisp_Object table; |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
354 int c, charset, c1, c2; |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
355 { |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
356 Lisp_Object ch; |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
357 int alt_charset, alt_c1, alt_c2, dimension; |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
358 |
|
25610
5f9f35400f70
Reset MSBs of arguments of MAKE_CHAR.
Kenichi Handa <handa@m17n.org>
parents:
25584
diff
changeset
|
359 if (c < 0) c = MAKE_CHAR (charset, (c1 & 0x7F) , (c2 & 0x7F)); |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
360 if (!CHAR_TABLE_P (table) |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
361 || (ch = Faref (table, make_number (c)), !NATNUMP (ch))) |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
362 return c; |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
363 |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
364 SPLIT_CHAR (XFASTINT (ch), alt_charset, alt_c1, alt_c2); |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
365 dimension = CHARSET_DIMENSION (alt_charset); |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
366 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
|
367 /* CH is not a generic character, just return it. */ |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
368 return XFASTINT (ch); |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
369 |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
370 /* 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
|
371 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
|
372 if (charset < 0) |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
373 SPLIT_CHAR (c, charset, c1, c2); |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
374 if (dimension != CHARSET_DIMENSION (charset)) |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
375 /* 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
|
376 return c; |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
377 return MAKE_CHAR (alt_charset, c1, c2); |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
378 } |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
379 |
|
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
380 /* 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
|
381 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
|
382 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
|
383 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
|
384 |
| 21514 | 385 int |
|
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
386 unibyte_char_to_multibyte (c) |
|
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
387 int c; |
|
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
388 { |
|
23928
b718a88bb2b1
(unibyte_char_to_multibyte): Don't convert 7-bit ASCII characters via
Eli Zaretskii <eliz@gnu.org>
parents:
23883
diff
changeset
|
389 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
|
390 { |
|
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
391 int c_save = c; |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
392 |
|
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
393 if (! NILP (Vnonascii_translation_table)) |
|
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
394 { |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
395 c = XINT (Faref (Vnonascii_translation_table, make_number (c))); |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
396 if (c >= 0400 && ! char_valid_p (c, 0)) |
|
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
397 c = c_save + DEFAULT_NONASCII_INSERT_OFFSET; |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
398 } |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
399 else if (c >= 0240 && nonascii_insert_offset > 0) |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
400 { |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
401 c += nonascii_insert_offset; |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
402 if (c < 0400 || ! char_valid_p (c, 0)) |
|
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
403 c = c_save + DEFAULT_NONASCII_INSERT_OFFSET; |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
404 } |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
405 else if (c >= 0240) |
|
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
406 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
|
407 } |
|
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
408 return c; |
|
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
409 } |
|
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
410 |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
411 |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
412 /* 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
|
413 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
|
414 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
|
415 Vnonascii_translation_table, i.e. what given by: |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
416 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
|
417 |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
418 int |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
419 multibyte_char_to_unibyte (c, rev_tbl) |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
420 int c; |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
421 Lisp_Object rev_tbl; |
|
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 if (!SINGLE_BYTE_CHAR_P (c)) |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
424 { |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
425 int c_save = c; |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
426 |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
427 if (! CHAR_TABLE_P (rev_tbl) |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
428 && CHAR_TABLE_P (Vnonascii_translation_table)) |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
429 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
|
430 make_number (0)); |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
431 if (CHAR_TABLE_P (rev_tbl)) |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
432 { |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
433 Lisp_Object temp; |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
434 temp = Faref (rev_tbl, make_number (c)); |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
435 if (INTEGERP (temp)) |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
436 c = XINT (temp); |
|
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
437 if (c >= 256) |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
438 c = (c_save & 0177) + 0200; |
|
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
439 } |
|
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
440 else |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
441 { |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
442 if (nonascii_insert_offset > 0) |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
443 c -= nonascii_insert_offset; |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
444 if (c < 128 || c >= 256) |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
445 c = (c_save & 0177) + 0200; |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
446 } |
|
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
447 } |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
448 |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
449 return c; |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
450 } |
|
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
451 |
|
20705
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
452 |
| 17052 | 453 /* Update the table Vcharset_table with the given arguments (see the |
| 454 document of `define-charset' for the meaning of each argument). | |
| 455 Several other table contents are also updated. The caller should | |
| 456 check the validity of CHARSET-ID and the remaining arguments in | |
| 457 advance. */ | |
| 458 | |
| 459 void | |
| 460 update_charset_table (charset_id, dimension, chars, width, direction, | |
| 461 iso_final_char, iso_graphic_plane, | |
| 462 short_name, long_name, description) | |
| 463 Lisp_Object charset_id, dimension, chars, width, direction; | |
| 464 Lisp_Object iso_final_char, iso_graphic_plane; | |
| 465 Lisp_Object short_name, long_name, description; | |
| 466 { | |
| 467 int charset = XINT (charset_id); | |
| 468 int bytes; | |
| 469 unsigned char leading_code_base, leading_code_ext; | |
| 470 | |
|
17322
a7d9b8e167ca
(non_ascii_char_to_string, update_charset_table,
Kenichi Handa <handa@m17n.org>
parents:
17186
diff
changeset
|
471 if (NILP (CHARSET_TABLE_ENTRY (charset))) |
|
a7d9b8e167ca
(non_ascii_char_to_string, update_charset_table,
Kenichi Handa <handa@m17n.org>
parents:
17186
diff
changeset
|
472 CHARSET_TABLE_ENTRY (charset) |
|
a7d9b8e167ca
(non_ascii_char_to_string, update_charset_table,
Kenichi Handa <handa@m17n.org>
parents:
17186
diff
changeset
|
473 = Fmake_vector (make_number (CHARSET_MAX_IDX), Qnil); |
| 17052 | 474 |
| 475 /* Get byte length of multibyte form, base leading-code, and | |
| 476 extended leading-code of the charset. See the comment under the | |
| 477 title "GENERAL NOTE on CHARACTER SET (CHARSET)" in charset.h. */ | |
| 478 bytes = XINT (dimension); | |
| 479 if (charset < MIN_CHARSET_PRIVATE_DIMENSION1) | |
| 480 { | |
| 481 /* Official charset, it doesn't have an extended leading-code. */ | |
| 482 if (charset != CHARSET_ASCII) | |
| 483 bytes += 1; /* For a base leading-code. */ | |
| 484 leading_code_base = charset; | |
| 485 leading_code_ext = 0; | |
| 486 } | |
| 487 else | |
| 488 { | |
| 489 /* Private charset. */ | |
| 490 bytes += 2; /* For base and extended leading-codes. */ | |
| 491 leading_code_base | |
| 492 = (charset < LEADING_CODE_EXT_12 | |
| 493 ? LEADING_CODE_PRIVATE_11 | |
| 494 : (charset < LEADING_CODE_EXT_21 | |
| 495 ? LEADING_CODE_PRIVATE_12 | |
| 496 : (charset < LEADING_CODE_EXT_22 | |
| 497 ? LEADING_CODE_PRIVATE_21 | |
| 498 : LEADING_CODE_PRIVATE_22))); | |
| 499 leading_code_ext = charset; | |
| 500 } | |
| 501 | |
|
23628
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
502 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
|
503 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
|
504 |
| 17052 | 505 CHARSET_TABLE_INFO (charset, CHARSET_ID_IDX) = charset_id; |
| 506 CHARSET_TABLE_INFO (charset, CHARSET_BYTES_IDX) = make_number (bytes); | |
| 507 CHARSET_TABLE_INFO (charset, CHARSET_DIMENSION_IDX) = dimension; | |
| 508 CHARSET_TABLE_INFO (charset, CHARSET_CHARS_IDX) = chars; | |
| 509 CHARSET_TABLE_INFO (charset, CHARSET_WIDTH_IDX) = width; | |
| 510 CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX) = direction; | |
| 511 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_BASE_IDX) | |
| 512 = make_number (leading_code_base); | |
| 513 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_EXT_IDX) | |
| 514 = make_number (leading_code_ext); | |
| 515 CHARSET_TABLE_INFO (charset, CHARSET_ISO_FINAL_CHAR_IDX) = iso_final_char; | |
| 516 CHARSET_TABLE_INFO (charset, CHARSET_ISO_GRAPHIC_PLANE_IDX) | |
| 517 = iso_graphic_plane; | |
| 518 CHARSET_TABLE_INFO (charset, CHARSET_SHORT_NAME_IDX) = short_name; | |
| 519 CHARSET_TABLE_INFO (charset, CHARSET_LONG_NAME_IDX) = long_name; | |
| 520 CHARSET_TABLE_INFO (charset, CHARSET_DESCRIPTION_IDX) = description; | |
| 521 CHARSET_TABLE_INFO (charset, CHARSET_PLIST_IDX) = Qnil; | |
| 522 | |
| 523 { | |
| 524 /* If we have already defined a charset which has the same | |
| 525 DIMENSION, CHARS and ISO-FINAL-CHAR but the different | |
| 526 DIRECTION, we must update the entry REVERSE-CHARSET of both | |
| 527 charsets. If there's no such charset, the value of the entry | |
| 528 is set to nil. */ | |
| 529 int i; | |
| 530 | |
|
17186
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
531 for (i = 0; i <= MAX_CHARSET; i++) |
| 17052 | 532 if (!NILP (CHARSET_TABLE_ENTRY (i))) |
| 533 { | |
| 534 if (CHARSET_DIMENSION (i) == XINT (dimension) | |
| 535 && CHARSET_CHARS (i) == XINT (chars) | |
| 536 && CHARSET_ISO_FINAL_CHAR (i) == XINT (iso_final_char) | |
| 537 && CHARSET_DIRECTION (i) != XINT (direction)) | |
| 538 { | |
| 539 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX) | |
| 540 = make_number (i); | |
| 541 CHARSET_TABLE_INFO (i, CHARSET_REVERSE_CHARSET_IDX) = charset_id; | |
| 542 break; | |
| 543 } | |
| 544 } | |
|
17186
65bc06706714
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17121
diff
changeset
|
545 if (i > MAX_CHARSET) |
| 17052 | 546 /* No such a charset. */ |
| 547 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX) | |
| 548 = make_number (-1); | |
| 549 } | |
| 550 | |
| 551 if (charset != CHARSET_ASCII | |
| 552 && charset < MIN_CHARSET_PRIVATE_DIMENSION1) | |
| 553 { | |
| 554 width_by_char_head[leading_code_base] = XINT (width); | |
| 555 | |
| 556 /* Update table emacs_code_class. */ | |
| 557 emacs_code_class[charset] = (bytes == 2 | |
| 558 ? EMACS_leading_code_2 | |
| 559 : (bytes == 3 | |
| 560 ? EMACS_leading_code_3 | |
| 561 : EMACS_leading_code_4)); | |
| 562 } | |
| 563 | |
| 564 /* Update table iso_charset_table. */ | |
| 565 if (ISO_CHARSET_TABLE (dimension, chars, iso_final_char) < 0) | |
| 566 ISO_CHARSET_TABLE (dimension, chars, iso_final_char) = charset; | |
| 567 } | |
| 568 | |
| 569 #ifdef emacs | |
| 570 | |
| 571 /* Return charset id of CHARSET_SYMBOL, or return -1 if CHARSET_SYMBOL | |
| 572 is invalid. */ | |
| 573 int | |
| 574 get_charset_id (charset_symbol) | |
| 575 Lisp_Object charset_symbol; | |
| 576 { | |
| 577 Lisp_Object val; | |
| 578 int charset; | |
| 579 | |
| 580 return ((SYMBOLP (charset_symbol) | |
| 581 && (val = Fget (charset_symbol, Qcharset), VECTORP (val)) | |
| 582 && (charset = XINT (XVECTOR (val)->contents[CHARSET_ID_IDX]), | |
| 583 CHARSET_VALID_P (charset))) | |
| 584 ? charset : -1); | |
| 585 } | |
| 586 | |
| 587 /* Return an identification number for a new private charset of | |
| 588 DIMENSION and WIDTH. If there's no more room for the new charset, | |
| 589 return 0. */ | |
| 590 Lisp_Object | |
| 591 get_new_private_charset_id (dimension, width) | |
| 592 int dimension, width; | |
| 593 { | |
| 594 int charset, from, to; | |
| 595 | |
| 596 if (dimension == 1) | |
| 597 { | |
| 598 if (width == 1) | |
| 599 from = LEADING_CODE_EXT_11, to = LEADING_CODE_EXT_12; | |
| 600 else | |
| 601 from = LEADING_CODE_EXT_12, to = LEADING_CODE_EXT_21; | |
| 602 } | |
| 603 else | |
| 604 { | |
| 605 if (width == 1) | |
| 606 from = LEADING_CODE_EXT_21, to = LEADING_CODE_EXT_22; | |
| 607 else | |
|
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
608 from = LEADING_CODE_EXT_22, to = LEADING_CODE_EXT_MAX + 1; |
| 17052 | 609 } |
| 610 | |
| 611 for (charset = from; charset < to; charset++) | |
| 612 if (!CHARSET_DEFINED_P (charset)) break; | |
| 613 | |
| 614 return make_number (charset < to ? charset : 0); | |
| 615 } | |
| 616 | |
| 617 DEFUN ("define-charset", Fdefine_charset, Sdefine_charset, 3, 3, 0, | |
| 618 "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
|
619 If CHARSET-ID is nil, it is decided automatically, which means CHARSET is\n\ |
| 17052 | 620 treated as a private charset.\n\ |
| 621 INFO-VECTOR is a vector of the format:\n\ | |
| 622 [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE\n\ | |
| 623 SHORT-NAME LONG-NAME DESCRIPTION]\n\ | |
| 624 The meanings of each elements is as follows:\n\ | |
| 625 DIMENSION (integer) is the number of bytes to represent a character: 1 or 2.\n\ | |
| 626 CHARS (integer) is the number of characters in a dimension: 94 or 96.\n\ | |
| 627 WIDTH (integer) is the number of columns a character in the charset\n\ | |
| 628 occupies on the screen: one of 0, 1, and 2.\n\ | |
| 629 \n\ | |
| 630 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
|
631 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
|
632 render from right to left.\n\ |
| 17052 | 633 \n\ |
| 634 ISO-FINAL-CHAR (character) is the final character of the\n\ | |
| 635 corresponding ISO 2022 charset.\n\ | |
| 636 \n\ | |
| 637 ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked\n\ | |
| 638 while encoding to variants of ISO 2022 coding system, one of the\n\ | |
| 639 following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR).\n\ | |
| 640 \n\ | |
| 641 SHORT-NAME (string) is the short name to refer to the charset.\n\ | |
| 642 \n\ | |
| 643 LONG-NAME (string) is the long name to refer to the charset.\n\ | |
| 644 \n\ | |
| 645 DESCRIPTION (string) is the description string of the charset.") | |
| 646 (charset_id, charset_symbol, info_vector) | |
| 647 Lisp_Object charset_id, charset_symbol, info_vector; | |
| 648 { | |
| 649 Lisp_Object *vec; | |
| 650 | |
| 651 if (!NILP (charset_id)) | |
| 652 CHECK_NUMBER (charset_id, 0); | |
| 653 CHECK_SYMBOL (charset_symbol, 1); | |
| 654 CHECK_VECTOR (info_vector, 2); | |
| 655 | |
| 656 if (! NILP (charset_id)) | |
| 657 { | |
| 658 if (! CHARSET_VALID_P (XINT (charset_id))) | |
| 659 error ("Invalid CHARSET: %d", XINT (charset_id)); | |
| 660 else if (CHARSET_DEFINED_P (XINT (charset_id))) | |
| 661 error ("Already defined charset: %d", XINT (charset_id)); | |
| 662 } | |
| 663 | |
| 664 vec = XVECTOR (info_vector)->contents; | |
| 665 if (XVECTOR (info_vector)->size != 9 | |
| 666 || !INTEGERP (vec[0]) || !(XINT (vec[0]) == 1 || XINT (vec[0]) == 2) | |
| 667 || !INTEGERP (vec[1]) || !(XINT (vec[1]) == 94 || XINT (vec[1]) == 96) | |
| 668 || !INTEGERP (vec[2]) || !(XINT (vec[2]) == 1 || XINT (vec[2]) == 2) | |
| 669 || !INTEGERP (vec[3]) || !(XINT (vec[3]) == 0 || XINT (vec[3]) == 1) | |
| 670 || !INTEGERP (vec[4]) || !(XINT (vec[4]) >= '0' && XINT (vec[4]) <= '~') | |
| 671 || !INTEGERP (vec[5]) || !(XINT (vec[5]) == 0 || XINT (vec[5]) == 1) | |
| 672 || !STRINGP (vec[6]) | |
| 673 || !STRINGP (vec[7]) | |
| 674 || !STRINGP (vec[8])) | |
| 675 error ("Invalid info-vector argument for defining charset %s", | |
| 676 XSYMBOL (charset_symbol)->name->data); | |
| 677 | |
| 678 if (NILP (charset_id)) | |
| 679 { | |
| 680 charset_id = get_new_private_charset_id (XINT (vec[0]), XINT (vec[2])); | |
| 681 if (XINT (charset_id) == 0) | |
| 682 error ("There's no room for a new private charset %s", | |
| 683 XSYMBOL (charset_symbol)->name->data); | |
| 684 } | |
| 685 | |
| 686 update_charset_table (charset_id, vec[0], vec[1], vec[2], vec[3], | |
| 687 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
|
688 Fput (charset_symbol, Qcharset, CHARSET_TABLE_ENTRY (XINT (charset_id))); |
| 17052 | 689 CHARSET_SYMBOL (XINT (charset_id)) = charset_symbol; |
| 690 Vcharset_list = Fcons (charset_symbol, Vcharset_list); | |
| 691 return Qnil; | |
| 692 } | |
| 693 | |
|
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
694 DEFUN ("generic-character-list", Fgeneric_character_list, |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
695 Sgeneric_character_list, 0, 0, 0, |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
696 "Return a list of all possible generic characters.\n\ |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
697 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
|
698 () |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
699 { |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
700 return Vgeneric_character_list; |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
701 } |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
702 |
|
20435
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
703 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
|
704 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
|
705 "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
|
706 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
|
707 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
|
708 \n\ |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
709 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
|
710 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
|
711 return nil.") |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
712 (dimension, chars) |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
713 Lisp_Object dimension, chars; |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
714 { |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
715 int final_char; |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
716 |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
717 CHECK_NUMBER (dimension, 0); |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
718 CHECK_NUMBER (chars, 1); |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
719 if (XINT (dimension) != 1 && XINT (dimension) != 2) |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
720 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
|
721 XINT (dimension)); |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
722 if (XINT (chars) != 94 && XINT (chars) != 96) |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
723 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
|
724 XINT (chars)); |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
725 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
|
726 { |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
727 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
|
728 break; |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
729 } |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
730 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
|
731 } |
|
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
732 |
| 17052 | 733 DEFUN ("declare-equiv-charset", Fdeclare_equiv_charset, Sdeclare_equiv_charset, |
| 734 4, 4, 0, | |
| 735 "Declare a charset of DIMENSION, CHARS, FINAL-CHAR is the same as CHARSET.\n\ | |
| 736 CHARSET should be defined by `defined-charset' in advance.") | |
| 737 (dimension, chars, final_char, charset_symbol) | |
| 738 Lisp_Object dimension, chars, final_char, charset_symbol; | |
| 739 { | |
| 740 int charset; | |
| 741 | |
| 742 CHECK_NUMBER (dimension, 0); | |
| 743 CHECK_NUMBER (chars, 1); | |
| 744 CHECK_NUMBER (final_char, 2); | |
| 745 CHECK_SYMBOL (charset_symbol, 3); | |
| 746 | |
| 747 if (XINT (dimension) != 1 && XINT (dimension) != 2) | |
| 748 error ("Invalid DIMENSION %d, it should be 1 or 2", XINT (dimension)); | |
| 749 if (XINT (chars) != 94 && XINT (chars) != 96) | |
| 750 error ("Invalid CHARS %d, it should be 94 or 96", XINT (chars)); | |
| 751 if (XINT (final_char) < '0' || XFASTINT (final_char) > '~') | |
| 752 error ("Invalid FINAL-CHAR %c, it should be `0'..`~'", XINT (chars)); | |
| 753 if ((charset = get_charset_id (charset_symbol)) < 0) | |
| 754 error ("Invalid charset %s", XSYMBOL (charset_symbol)->name->data); | |
| 755 | |
| 756 ISO_CHARSET_TABLE (dimension, chars, final_char) = charset; | |
| 757 return Qnil; | |
| 758 } | |
| 759 | |
| 760 /* Return number of different charsets in STR of length LEN. In | |
| 761 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
|
762 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
|
763 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
|
764 |
| 23883 | 765 If MULTIBYTE is zero, do not check multibyte characters, i.e. if |
| 766 any ASCII codes (7-bit) are found, CHARSET[0] is set to 1, if any | |
| 767 8-bit codes are found CHARSET[1] is set to 1. */ | |
| 17052 | 768 |
| 769 int | |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
770 find_charset_in_str (str, len, charsets, table, multibyte) |
|
17880
06f58d8a59ba
(Ffind_charset_region): Change the declaration of
Kenichi Handa <handa@m17n.org>
parents:
17863
diff
changeset
|
771 unsigned char *str; |
|
06f58d8a59ba
(Ffind_charset_region): Change the declaration of
Kenichi Handa <handa@m17n.org>
parents:
17863
diff
changeset
|
772 int len, *charsets; |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
773 Lisp_Object table; |
| 23883 | 774 int multibyte; |
| 17052 | 775 { |
|
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
776 register int num = 0, c; |
| 17052 | 777 |
| 23883 | 778 if (! multibyte) |
| 779 { | |
| 780 unsigned char *endp = str + len; | |
| 781 int maskbits = 0; | |
| 782 | |
| 783 while (str < endp && maskbits != 3) | |
| 784 maskbits |= (*str++ < 0x80 ? 1 : 2); | |
| 785 if (maskbits & 1) | |
| 786 { | |
| 787 charsets[0] = 1; | |
| 788 num++; | |
| 789 } | |
| 790 if (maskbits & 2) | |
| 791 { | |
| 792 charsets[1] = 1; | |
| 793 num++; | |
| 794 } | |
| 795 return num; | |
| 796 } | |
| 797 | |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
798 if (! CHAR_TABLE_P (table)) |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
799 table = Qnil; |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
800 |
| 17052 | 801 while (len > 0) |
| 802 { | |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
803 int bytes, charset, c1, c2; |
|
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
804 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
805 SPLIT_MULTIBYTE_SEQ (str, len, bytes, charset, c1, c2); |
|
20228
acb7aa0aa71f
(find_charset_in_str): Handle the case that STR
Kenichi Handa <handa@m17n.org>
parents:
20188
diff
changeset
|
806 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
807 if (! NILP (table)) |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
808 { |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
809 int c1 = translate_char (table, -1, charset, c1, c2); |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
810 if (c1 >= 0) |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
811 charset = CHAR_CHARSET (c); |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
812 } |
| 17052 | 813 |
| 814 if (!charsets[charset]) | |
| 815 { | |
| 816 charsets[charset] = 1; | |
| 817 num += 1; | |
| 818 } | |
| 819 str += bytes; | |
| 820 len -= bytes; | |
| 821 } | |
| 822 return num; | |
| 823 } | |
| 824 | |
| 825 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
|
826 2, 3, 0, |
| 17052 | 827 "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
|
828 BEG and END are buffer positions.\n\ |
| 23883 | 829 Optional arg TABLE if non-nil is a translation table to look up.\n\ |
| 830 \n\ | |
| 831 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
|
832 `unknown' is included in the returned list.\n\ |
| 23883 | 833 \n\ |
| 834 If the current buffer is unibyte, the returned list contains\n\ | |
| 835 `ascii' if any 7-bit characters are found,\n\ | |
| 836 and `unknown' if any 8-bit characters are found.") | |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
837 (beg, end, table) |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
838 Lisp_Object beg, end, table; |
| 17052 | 839 { |
|
17880
06f58d8a59ba
(Ffind_charset_region): Change the declaration of
Kenichi Handa <handa@m17n.org>
parents:
17863
diff
changeset
|
840 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
|
841 int from, from_byte, to, stop, stop_byte, i; |
| 17052 | 842 Lisp_Object val; |
| 23883 | 843 int undefined; |
| 844 int multibyte = !NILP (current_buffer->enable_multibyte_characters); | |
| 17052 | 845 |
| 846 validate_region (&beg, &end); | |
| 847 from = XFASTINT (beg); | |
| 848 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
|
849 |
| 17052 | 850 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
|
851 { |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
852 stop = GPT; |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
853 stop_byte = GPT_BYTE; |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
854 } |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
855 else |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
856 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
|
857 |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
858 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
|
859 |
|
17880
06f58d8a59ba
(Ffind_charset_region): Change the declaration of
Kenichi Handa <handa@m17n.org>
parents:
17863
diff
changeset
|
860 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int)); |
| 17052 | 861 while (1) |
| 862 { | |
|
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
863 find_charset_in_str (BYTE_POS_ADDR (from_byte), stop_byte - from_byte, |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
864 charsets, table, multibyte); |
| 17052 | 865 if (stop < to) |
|
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
866 { |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
867 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
|
868 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
|
869 } |
| 17052 | 870 else |
| 871 break; | |
| 872 } | |
|
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
873 |
| 17052 | 874 val = Qnil; |
| 23883 | 875 undefined = 0; |
| 876 for (i = (multibyte ? MAX_CHARSET : 1); i >= 0; i--) | |
| 17052 | 877 if (charsets[i]) |
| 23883 | 878 { |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
879 if (CHARSET_DEFINED_P (i)) |
| 23883 | 880 val = Fcons (CHARSET_SYMBOL (i), val); |
| 881 else | |
| 882 undefined = 1; | |
| 883 } | |
| 884 if (undefined) | |
| 885 val = Fcons (Qunknown, val); | |
| 17052 | 886 return val; |
| 887 } | |
| 888 | |
| 889 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
|
890 1, 2, 0, |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
891 "Return a list of charsets in STR.\n\ |
| 23883 | 892 Optional arg TABLE if non-nil is a translation table to look up.\n\ |
| 893 \n\ | |
| 894 If the region contains invalid multiybte characters,\n\ | |
| 895 `unknown' is included in the returned list.\n\ | |
| 896 \n\ | |
| 897 If STR is unibyte, the returned list contains\n\ | |
| 898 `ascii' if any 7-bit characters are found,\n\ | |
| 899 and `unknown' if any 8-bit characters are found.") | |
|
17727
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
900 (str, table) |
|
9d39361ce928
(unify_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
17366
diff
changeset
|
901 Lisp_Object str, table; |
| 17052 | 902 { |
|
18003
ac148c939dec
(Ffind_charset_string): The variable CHARSETS is
Kenichi Handa <handa@m17n.org>
parents:
17880
diff
changeset
|
903 int charsets[MAX_CHARSET + 1]; |
| 17052 | 904 int i; |
| 905 Lisp_Object val; | |
| 23883 | 906 int undefined; |
| 907 int multibyte; | |
| 17052 | 908 |
| 909 CHECK_STRING (str, 0); | |
| 23883 | 910 multibyte = STRING_MULTIBYTE (str); |
|
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
911 |
|
18003
ac148c939dec
(Ffind_charset_string): The variable CHARSETS is
Kenichi Handa <handa@m17n.org>
parents:
17880
diff
changeset
|
912 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
|
913 find_charset_in_str (XSTRING (str)->data, STRING_BYTES (XSTRING (str)), |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
914 charsets, table, multibyte); |
| 17052 | 915 val = Qnil; |
| 23883 | 916 undefined = 0; |
| 917 for (i = (multibyte ? MAX_CHARSET : 1); i >= 0; i--) | |
| 17052 | 918 if (charsets[i]) |
| 23883 | 919 { |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
920 if (CHARSET_DEFINED_P (i)) |
| 23883 | 921 val = Fcons (CHARSET_SYMBOL (i), val); |
| 922 else | |
| 923 undefined = 1; | |
| 924 } | |
| 925 if (undefined) | |
| 926 val = Fcons (Qunknown, val); | |
| 17052 | 927 return val; |
| 928 } | |
| 929 | |
| 930 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
|
931 "") |
| 17052 | 932 (charset, code1, code2) |
| 933 Lisp_Object charset, code1, code2; | |
| 934 { | |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
935 int charset_id, c1, c2; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
936 |
| 17052 | 937 CHECK_NUMBER (charset, 0); |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
938 charset_id = XINT (charset); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
939 if (!CHARSET_DEFINED_P (charset_id)) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
940 error ("Invalid charset ID: %d", XINT (charset)); |
| 17052 | 941 |
| 942 if (NILP (code1)) | |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
943 c1 = 0; |
| 17052 | 944 else |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
945 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
946 CHECK_NUMBER (code1, 1); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
947 c1 = XINT (code1); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
948 } |
| 17052 | 949 if (NILP (code2)) |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
950 c2 = 0; |
| 17052 | 951 else |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
952 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
953 CHECK_NUMBER (code2, 2); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
954 c2 = XINT (code2); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
955 } |
| 17052 | 956 |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
957 if (c1 < 0 || c1 > 0xFF || c2 < 0 || c2 > 0xFF) |
|
26632
493539fc5bb2
(Fmake_char_internal): Print the charset ID when
Eli Zaretskii <eliz@gnu.org>
parents:
26327
diff
changeset
|
958 error ("Invalid code points for charset ID %d: %d %d", charset_id, c1, c2); |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
959 c1 &= 0x7F; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
960 c2 &= 0x7F; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
961 if (c1 == 0 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
962 ? c2 != 0 |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
963 : (c2 == 0 |
| 25584 | 964 ? !CHAR_COMPONENTS_VALID_P (charset, c1, 0x20) |
| 965 : !CHAR_COMPONENTS_VALID_P (charset, c1, c2))) | |
|
26632
493539fc5bb2
(Fmake_char_internal): Print the charset ID when
Eli Zaretskii <eliz@gnu.org>
parents:
26327
diff
changeset
|
966 error ("Invalid code points for charset ID %d: %d %d", charset_id, c1, c2); |
| 17052 | 967 |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
968 return make_number (MAKE_CHAR (charset_id, c1, c2)); |
| 17052 | 969 } |
| 970 | |
| 971 DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0, | |
| 23883 | 972 "Return list of charset and one or two position-codes of CHAR.\n\ |
| 973 If CHAR is invalid as a character code,\n\ | |
| 974 return a list of symbol `unknown' and CHAR.") | |
| 17052 | 975 (ch) |
| 976 Lisp_Object ch; | |
| 977 { | |
| 978 Lisp_Object val; | |
| 23883 | 979 int c, charset, c1, c2; |
| 17052 | 980 |
| 981 CHECK_NUMBER (ch, 0); | |
| 23883 | 982 c = XFASTINT (ch); |
| 983 if (!CHAR_VALID_P (c, 1)) | |
| 984 return Fcons (Qunknown, Fcons (ch, Qnil)); | |
| 17052 | 985 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
|
986 return (c2 >= 0 |
| 17052 | 987 ? Fcons (CHARSET_SYMBOL (charset), |
| 988 Fcons (make_number (c1), Fcons (make_number (c2), Qnil))) | |
| 989 : Fcons (CHARSET_SYMBOL (charset), Fcons (make_number (c1), Qnil))); | |
| 990 } | |
| 991 | |
| 992 DEFUN ("char-charset", Fchar_charset, Schar_charset, 1, 1, 0, | |
| 993 "Return charset of CHAR.") | |
| 994 (ch) | |
| 995 Lisp_Object ch; | |
| 996 { | |
| 997 CHECK_NUMBER (ch, 0); | |
| 998 | |
| 999 return CHARSET_SYMBOL (CHAR_CHARSET (XINT (ch))); | |
| 1000 } | |
| 1001 | |
|
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1002 DEFUN ("charset-after", Fcharset_after, Scharset_after, 0, 1, 0, |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1003 "Return charset of a character in the current buffer at position POS.\n\ |
|
23932
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1004 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
|
1005 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
|
1006 (pos) |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1007 Lisp_Object pos; |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1008 { |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1009 register int pos_byte, bytes, charset, c1, c2; |
|
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1010 register unsigned char *p; |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1011 |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1012 if (NILP (pos)) |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1013 pos_byte = PT_BYTE; |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1014 else if (MARKERP (pos)) |
|
23932
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1015 { |
|
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1016 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
|
1017 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
|
1018 return Qnil; |
|
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1019 } |
|
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1020 else |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1021 { |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1022 CHECK_NUMBER (pos, 0); |
|
23932
08e1d4876918
(Fcharset_after): Check range. If POS is out of
Kenichi Handa <handa@m17n.org>
parents:
23928
diff
changeset
|
1023 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
|
1024 return Qnil; |
|
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1025 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
|
1026 } |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1027 p = BYTE_POS_ADDR (pos_byte); |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1028 if (BASE_LEADING_CODE_P (*p)) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1029 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1030 SPLIT_MULTIBYTE_SEQ (p, Z_BYTE - pos_byte, bytes, charset, c1, c2); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1031 if (charset < 0) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1032 charset = 1; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1033 } |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1034 else |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1035 charset = CHARSET_ASCII; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1036 |
|
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1037 return CHARSET_SYMBOL (charset); |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1038 } |
|
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1039 |
| 17052 | 1040 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
|
1041 "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
|
1042 \n\ |
|
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1043 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
|
1044 by their DIMENSION, CHARS, and FINAL-CHAR,\n\ |
|
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1045 where as Emacs distinguishes them by charset symbol.\n\ |
|
cf404f800d2c
(Fiso_charset): Doc-string modified.
Kenichi Handa <handa@m17n.org>
parents:
20720
diff
changeset
|
1046 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
|
1047 DIMENSION, CHARS, and FINAL-CHAR.") |
| 17052 | 1048 (dimension, chars, final_char) |
| 1049 Lisp_Object dimension, chars, final_char; | |
| 1050 { | |
| 1051 int charset; | |
| 1052 | |
| 1053 CHECK_NUMBER (dimension, 0); | |
| 1054 CHECK_NUMBER (chars, 1); | |
| 1055 CHECK_NUMBER (final_char, 2); | |
| 1056 | |
| 1057 if ((charset = ISO_CHARSET_TABLE (dimension, chars, final_char)) < 0) | |
| 1058 return Qnil; | |
| 1059 return CHARSET_SYMBOL (charset); | |
| 1060 } | |
| 1061 | |
|
20152
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1062 /* 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
|
1063 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
|
1064 valid normal character. Do not call this function directly, |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1065 instead use macro CHAR_VALID_P. */ |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1066 int |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1067 char_valid_p (c, genericp) |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1068 int c, genericp; |
|
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 int charset, c1, c2; |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1071 |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1072 if (c < 0) |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1073 return 0; |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1074 if (SINGLE_BYTE_CHAR_P (c)) |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1075 return 1; |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1076 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2); |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1077 if (genericp) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1078 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1079 if (c1) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1080 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1081 if (c2 <= 0) c2 = 0x20; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1082 } |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1083 else |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1084 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1085 if (c2 <= 0) c1 = c2 = 0x20; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1086 } |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1087 } |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1088 return (CHARSET_DEFINED_P (charset) |
| 25584 | 1089 && CHAR_COMPONENTS_VALID_P (charset, c1, c2)); |
|
20152
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1090 } |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1091 |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1092 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
|
1093 "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
|
1094 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
|
1095 a valid generic character.") |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1096 (object, genericp) |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1097 Lisp_Object object, genericp; |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1098 { |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1099 if (! NATNUMP (object)) |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1100 return Qnil; |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1101 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
|
1102 } |
|
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1103 |
|
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1104 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
|
1105 Sunibyte_char_to_multibyte, 1, 1, 0, |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1106 "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
|
1107 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
|
1108 or `nonascii-insert-offset' (which see).") |
|
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1109 (ch) |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1110 Lisp_Object ch; |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1111 { |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1112 int c; |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1113 |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1114 CHECK_NUMBER (ch, 0); |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1115 c = XINT (ch); |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1116 if (c < 0 || c >= 0400) |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1117 error ("Invalid unibyte character: %d", c); |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1118 c = unibyte_char_to_multibyte (c); |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1119 if (c < 0) |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1120 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
|
1121 return make_number (c); |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1122 } |
|
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1123 |
|
23060
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1124 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
|
1125 Smultibyte_char_to_unibyte, 1, 1, 0, |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1126 "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
|
1127 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
|
1128 or `nonascii-insert-offset' (which see).") |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1129 (ch) |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1130 Lisp_Object ch; |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1131 { |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1132 int c; |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1133 |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1134 CHECK_NUMBER (ch, 0); |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1135 c = XINT (ch); |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1136 if (! CHAR_VALID_P (c, 0)) |
|
23060
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1137 error ("Invalid multibyte character: %d", c); |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1138 c = multibyte_char_to_unibyte (c, Qnil); |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1139 if (c < 0) |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1140 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
|
1141 return make_number (c); |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1142 } |
|
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1143 |
| 17052 | 1144 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
|
1145 "Return 1 regardless of the argument CHAR.\n\ |
| 23576 | 1146 This is now an obsolete function. We keep it just for backward compatibility.") |
| 17052 | 1147 (ch) |
| 1148 Lisp_Object ch; | |
| 1149 { | |
| 1150 Lisp_Object val; | |
| 1151 | |
| 1152 CHECK_NUMBER (ch, 0); | |
|
23131
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1153 return make_number (1); |
|
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1154 } |
|
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 /* 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
|
1157 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
|
1158 int |
|
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1159 char_bytes (c) |
|
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1160 int c; |
|
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1161 { |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1162 int charset; |
|
23131
f7e486faa1ad
(Fchar_bytes): Now always return 1.
Kenichi Handa <handa@m17n.org>
parents:
23060
diff
changeset
|
1163 |
|
23767
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
1164 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
|
1165 return 1; |
|
1dfb6d38354f
(non_ascii_char_to_string): If C has modifier bits,
Kenichi Handa <handa@m17n.org>
parents:
23720
diff
changeset
|
1166 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1167 charset = CHAR_CHARSET (c); |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1168 return (CHARSET_DEFINED_P (charset) ? CHARSET_BYTES (charset) : 1); |
| 17052 | 1169 } |
| 1170 | |
| 1171 /* Return the width of character of which multi-byte form starts with | |
| 1172 C. The width is measured by how many columns occupied on the | |
| 1173 screen when displayed in the current buffer. */ | |
| 1174 | |
| 1175 #define ONE_BYTE_CHAR_WIDTH(c) \ | |
| 1176 (c < 0x20 \ | |
| 1177 ? (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
|
1178 ? XFASTINT (current_buffer->tab_width) \ |
| 17052 | 1179 : (c == '\n' ? 0 : (NILP (current_buffer->ctl_arrow) ? 4 : 2))) \ |
| 1180 : (c < 0x7f \ | |
| 1181 ? 1 \ | |
| 1182 : (c == 0x7F \ | |
| 1183 ? (NILP (current_buffer->ctl_arrow) ? 4 : 2) \ | |
| 1184 : ((! NILP (current_buffer->enable_multibyte_characters) \ | |
| 1185 && BASE_LEADING_CODE_P (c)) \ | |
| 1186 ? WIDTH_BY_CHAR_HEAD (c) \ | |
|
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
1187 : 4)))) |
| 17052 | 1188 |
| 1189 DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0, | |
| 1190 "Return width of CHAR when displayed in the current buffer.\n\ | |
| 1191 The width is measured by how many columns it occupies on the screen.") | |
| 1192 (ch) | |
| 1193 Lisp_Object ch; | |
| 1194 { | |
|
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1195 Lisp_Object val, disp; |
| 17052 | 1196 int c; |
|
18537
6a726658dfa9
(Fchar_width): Check if the current buffer has display
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
1197 struct Lisp_Char_Table *dp = buffer_display_table (); |
| 17052 | 1198 |
| 1199 CHECK_NUMBER (ch, 0); | |
| 1200 | |
|
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1201 c = XINT (ch); |
|
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1202 |
|
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1203 /* 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
|
1204 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
|
1205 |
|
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1206 if (VECTORP (disp)) |
|
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1207 XSETINT (val, XVECTOR (disp)->size); |
|
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1208 else if (SINGLE_BYTE_CHAR_P (c)) |
|
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1209 XSETINT (val, ONE_BYTE_CHAR_WIDTH (c)); |
| 17052 | 1210 else |
| 1211 { | |
| 1212 int charset = CHAR_CHARSET (c); | |
| 1213 | |
| 1214 XSETFASTINT (val, CHARSET_WIDTH (charset)); | |
| 1215 } | |
| 1216 return val; | |
| 1217 } | |
| 1218 | |
| 1219 /* Return width of string STR of length LEN when displayed in the | |
| 1220 current buffer. The width is measured by how many columns it | |
| 1221 occupies on the screen. */ | |
|
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1222 |
| 17052 | 1223 int |
| 1224 strwidth (str, len) | |
| 1225 unsigned char *str; | |
| 1226 int len; | |
| 1227 { | |
| 1228 unsigned char *endp = str + len; | |
| 1229 int width = 0; | |
|
20362
67bcb068070c
(strwidth): Remove extra argument to buffer_display_table.
Kenichi Handa <handa@m17n.org>
parents:
20228
diff
changeset
|
1230 struct Lisp_Char_Table *dp = buffer_display_table (); |
| 17052 | 1231 |
|
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1232 while (str < endp) |
|
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1233 { |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1234 Lisp_Object disp; |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1235 int thislen; |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1236 int c = STRING_CHAR_AND_LENGTH (str, endp - str, thislen); |
| 17052 | 1237 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1238 /* Get the way the display table would display it. */ |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1239 if (dp) |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1240 disp = DISP_CHAR_VECTOR (dp, c); |
|
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1241 else |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1242 disp = Qnil; |
|
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1243 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1244 if (VECTORP (disp)) |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1245 width += XVECTOR (disp)->size; |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1246 else |
|
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1247 width += ONE_BYTE_CHAR_WIDTH (*str); |
|
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1248 |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1249 str += thislen; |
|
17818
76c6740bd736
(strwidth, Fchar_width): Handle display table.
Richard M. Stallman <rms@gnu.org>
parents:
17727
diff
changeset
|
1250 } |
| 17052 | 1251 return width; |
| 1252 } | |
| 1253 | |
| 1254 DEFUN ("string-width", Fstring_width, Sstring_width, 1, 1, 0, | |
| 1255 "Return width of STRING when displayed in the current buffer.\n\ | |
| 1256 Width is measured by how many columns it occupies on the screen.\n\ | |
| 19384 | 1257 When calculating width of a multibyte character in STRING,\n\ |
| 1258 only the base leading-code is considered; the validity of\n\ | |
| 1259 the following bytes is not checked.") | |
| 17052 | 1260 (str) |
| 1261 Lisp_Object str; | |
| 1262 { | |
| 1263 Lisp_Object val; | |
| 1264 | |
| 1265 CHECK_STRING (str, 0); | |
|
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21063
diff
changeset
|
1266 XSETFASTINT (val, strwidth (XSTRING (str)->data, |
|
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21063
diff
changeset
|
1267 STRING_BYTES (XSTRING (str)))); |
| 17052 | 1268 return val; |
| 1269 } | |
| 1270 | |
| 1271 DEFUN ("char-direction", Fchar_direction, Schar_direction, 1, 1, 0, | |
| 1272 "Return the direction of CHAR.\n\ | |
| 1273 The returned value is 0 for left-to-right and 1 for right-to-left.") | |
| 1274 (ch) | |
| 1275 Lisp_Object ch; | |
| 1276 { | |
| 1277 int charset; | |
| 1278 | |
| 1279 CHECK_NUMBER (ch, 0); | |
| 1280 charset = CHAR_CHARSET (XFASTINT (ch)); | |
| 1281 if (!CHARSET_DEFINED_P (charset)) | |
|
20933
5ceea9d50194
(invalid_character): New function.
Kenichi Handa <handa@m17n.org>
parents:
20890
diff
changeset
|
1282 invalid_character (XINT (ch)); |
| 17052 | 1283 return CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX); |
| 1284 } | |
| 1285 | |
|
19415
309b9a0d8a45
(Fchars_in_region): Renamed form Fcount_chars_region.
Kenichi Handa <handa@m17n.org>
parents:
19384
diff
changeset
|
1286 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
|
1287 "Return number of characters between BEG and END.") |
| 19384 | 1288 (beg, end) |
| 1289 Lisp_Object beg, end; | |
| 1290 { | |
|
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1291 int from, to; |
| 19384 | 1292 |
|
22739
f0c8af6c2dfd
(Fchars_in_region): Coerce markers.
Richard M. Stallman <rms@gnu.org>
parents:
22703
diff
changeset
|
1293 CHECK_NUMBER_COERCE_MARKER (beg, 0); |
|
f0c8af6c2dfd
(Fchars_in_region): Coerce markers.
Richard M. Stallman <rms@gnu.org>
parents:
22703
diff
changeset
|
1294 CHECK_NUMBER_COERCE_MARKER (end, 1); |
|
f0c8af6c2dfd
(Fchars_in_region): Coerce markers.
Richard M. Stallman <rms@gnu.org>
parents:
22703
diff
changeset
|
1295 |
| 19384 | 1296 from = min (XFASTINT (beg), XFASTINT (end)); |
|
19444
752afe97eaa4
(Fchars_in_region): Fix gap handling.
Richard M. Stallman <rms@gnu.org>
parents:
19415
diff
changeset
|
1297 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
|
1298 |
|
21519
9b26f9300d41
(Fchars_in_region): Fix mixing of Lisp_Object and int.
Andreas Schwab <schwab@suse.de>
parents:
21514
diff
changeset
|
1299 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
|
1300 } |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1301 |
|
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1302 /* 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
|
1303 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
|
1304 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
|
1305 we treat each byte as a character. */ |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1306 |
|
20534
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1307 int |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1308 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
|
1309 unsigned char *ptr; |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1310 int nbytes; |
|
066251bcf9f7
(Fchars_in_string): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20435
diff
changeset
|
1311 { |
|
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1312 /* 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
|
1313 if (current_buffer == 0 |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1314 || 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
|
1315 return nbytes; |
|
20188
d4ad4463384d
(Fchars_in_string): Pay attention to
Kenichi Handa <handa@m17n.org>
parents:
20152
diff
changeset
|
1316 |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1317 return multibyte_chars_in_text (ptr, nbytes); |
| 19384 | 1318 } |
| 1319 | |
|
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1320 /* 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
|
1321 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
|
1322 It ignores enable-multibyte-characters. */ |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1323 |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1324 int |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1325 multibyte_chars_in_text (ptr, nbytes) |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1326 unsigned char *ptr; |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1327 int nbytes; |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1328 { |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1329 unsigned char *endp; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1330 int chars, bytes; |
|
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1331 |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1332 endp = ptr + nbytes; |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1333 chars = 0; |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1334 |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1335 while (ptr < endp) |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1336 { |
|
25506
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1337 if (BASE_LEADING_CODE_P (*ptr)) |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1338 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1339 PARSE_MULTIBYTE_SEQ (ptr, nbytes, bytes); |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1340 ptr += bytes; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1341 nbytes -= bytes; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1342 } |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1343 else |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1344 { |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1345 ptr++; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1346 nbytes--; |
|
ba0ad349e792
(SPLIT_COMPOSITE_SEQ): New macro.
Kenichi Handa <handa@m17n.org>
parents:
25250
diff
changeset
|
1347 } |
|
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1348 chars++; |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1349 } |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1350 |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1351 return chars; |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1352 } |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1353 |
|
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1354 DEFUN ("string", Fstring, Sstring, 1, MANY, 0, |
| 17052 | 1355 "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
|
1356 (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
|
1357 int n; |
| 17052 | 1358 Lisp_Object *args; |
| 1359 { | |
|
17366
f7809ff2c65f
(ONE_BYTE_CHAR_WIDTH, Fconcat_chars): Don't use Lisp_Object as integer.
Karl Heuer <kwzh@gnu.org>
parents:
17322
diff
changeset
|
1360 int i; |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1361 unsigned char *buf = (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH * n); |
| 17052 | 1362 unsigned char *p = buf; |
| 1363 Lisp_Object val; | |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1364 int c; |
| 17052 | 1365 |
| 1366 for (i = 0; i < n; i++) | |
| 1367 { | |
| 1368 if (!INTEGERP (args[i])) | |
|
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
1369 CHECK_NUMBER (args[i], 0); |
| 17052 | 1370 c = XINT (args[i]); |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1371 p += CHAR_STRING (c, p); |
| 17052 | 1372 } |
| 1373 | |
|
23427
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
1374 /* 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
|
1375 combining problem. */ |
|
4acd4faa545a
(Fstring): Call make_string instead of
Kenichi Handa <handa@m17n.org>
parents:
23397
diff
changeset
|
1376 val = make_string (buf, p - buf); |
| 17052 | 1377 return val; |
| 1378 } | |
| 1379 | |
| 1380 #endif /* emacs */ | |
| 1381 | |
| 21514 | 1382 int |
| 17052 | 1383 charset_id_internal (charset_name) |
| 1384 char *charset_name; | |
| 1385 { | |
|
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
1386 Lisp_Object val; |
| 17052 | 1387 |
|
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
1388 val= Fget (intern (charset_name), Qcharset); |
| 17052 | 1389 if (!VECTORP (val)) |
| 1390 error ("Charset %s is not defined", charset_name); | |
| 1391 | |
| 1392 return (XINT (XVECTOR (val)->contents[0])); | |
| 1393 } | |
| 1394 | |
| 1395 DEFUN ("setup-special-charsets", Fsetup_special_charsets, | |
| 1396 Ssetup_special_charsets, 0, 0, 0, "Internal use only.") | |
| 1397 () | |
| 1398 { | |
| 1399 charset_latin_iso8859_1 = charset_id_internal ("latin-iso8859-1"); | |
| 1400 charset_jisx0208_1978 = charset_id_internal ("japanese-jisx0208-1978"); | |
| 1401 charset_jisx0208 = charset_id_internal ("japanese-jisx0208"); | |
| 1402 charset_katakana_jisx0201 = charset_id_internal ("katakana-jisx0201"); | |
| 1403 charset_latin_jisx0201 = charset_id_internal ("latin-jisx0201"); | |
| 1404 charset_big5_1 = charset_id_internal ("chinese-big5-1"); | |
| 1405 charset_big5_2 = charset_id_internal ("chinese-big5-2"); | |
| 1406 return Qnil; | |
| 1407 } | |
| 1408 | |
| 21514 | 1409 void |
| 17052 | 1410 init_charset_once () |
| 1411 { | |
| 1412 int i, j, k; | |
| 1413 | |
| 1414 staticpro (&Vcharset_table); | |
| 1415 staticpro (&Vcharset_symbol_table); | |
|
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1416 staticpro (&Vgeneric_character_list); |
| 17052 | 1417 |
| 1418 /* This has to be done here, before we call Fmake_char_table. */ | |
| 1419 Qcharset_table = intern ("charset-table"); | |
| 1420 staticpro (&Qcharset_table); | |
| 1421 | |
| 1422 /* Intern this now in case it isn't already done. | |
| 1423 Setting this variable twice is harmless. | |
| 1424 But don't staticpro it here--that is done in alloc.c. */ | |
| 1425 Qchar_table_extra_slots = intern ("char-table-extra-slots"); | |
| 1426 | |
| 1427 /* Now we are ready to set up this property, so we can | |
| 1428 create the charset table. */ | |
| 1429 Fput (Qcharset_table, Qchar_table_extra_slots, make_number (0)); | |
| 1430 Vcharset_table = Fmake_char_table (Qcharset_table, Qnil); | |
| 1431 | |
| 23883 | 1432 Qunknown = intern ("unknown"); |
| 1433 staticpro (&Qunknown); | |
| 1434 Vcharset_symbol_table = Fmake_vector (make_number (MAX_CHARSET + 1), | |
| 1435 Qunknown); | |
| 17052 | 1436 |
| 1437 /* Setup tables. */ | |
| 1438 for (i = 0; i < 2; i++) | |
| 1439 for (j = 0; j < 2; j++) | |
| 1440 for (k = 0; k < 128; k++) | |
| 1441 iso_charset_table [i][j][k] = -1; | |
| 1442 | |
|
23656
031653c4634a
(init_charset_once): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23654
diff
changeset
|
1443 for (i = 0; i < 256; i++) |
| 17052 | 1444 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
|
1445 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
|
1446 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
|
1447 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
|
1448 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
|
1449 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
|
1450 BYTES_BY_CHAR_HEAD (i) = 3; |
| 17052 | 1451 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 3; |
| 1452 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 3; | |
| 1453 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 4; | |
| 1454 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
|
1455 /* The followings don't reflect the actual bytes, but just to tell |
| 17052 | 1456 that it is a start of a multibyte character. */ |
|
26844
9e9a0735c824
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
26632
diff
changeset
|
1457 BYTES_BY_CHAR_HEAD (0x80) = 2; |
|
23628
4a0a107fac9e
(string_to_non_ascii_char): Change the check for the
Kenichi Handa <handa@m17n.org>
parents:
23576
diff
changeset
|
1458 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
|
1459 BYTES_BY_CHAR_HEAD (0x9F) = 2; |
| 17052 | 1460 |
| 1461 for (i = 0; i < 128; i++) | |
| 1462 WIDTH_BY_CHAR_HEAD (i) = 1; | |
| 1463 for (; i < 256; i++) | |
| 1464 WIDTH_BY_CHAR_HEAD (i) = 4; | |
| 1465 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 1; | |
| 1466 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 2; | |
| 1467 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 1; | |
| 1468 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
|
1469 |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1470 { |
|
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
1471 Lisp_Object val; |
|
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1472 |
|
22927
209acf11198c
(multibyte_char_to_unibyte): New function.
Kenichi Handa <handa@m17n.org>
parents:
22774
diff
changeset
|
1473 val = Qnil; |
|
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1474 for (i = 0x81; i < 0x90; i++) |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1475 val = Fcons (make_number ((i - 0x70) << 7), val); |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1476 for (; i < 0x9A; i++) |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1477 val = Fcons (make_number ((i - 0x8F) << 14), val); |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1478 for (i = 0xA0; i < 0xF0; i++) |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1479 val = Fcons (make_number ((i - 0x70) << 7), val); |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1480 for (; i < 0xFF; i++) |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1481 val = Fcons (make_number ((i - 0xE0) << 14), val); |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1482 Vgeneric_character_list = Fnreverse (val); |
|
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1483 } |
|
23154
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
1484 |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
1485 nonascii_insert_offset = 0; |
|
a9cbf64603ca
(unibyte_char_to_multibyte):
Kenichi Handa <handa@m17n.org>
parents:
23140
diff
changeset
|
1486 Vnonascii_translation_table = Qnil; |
| 17052 | 1487 } |
| 1488 | |
| 1489 #ifdef emacs | |
| 1490 | |
| 21514 | 1491 void |
| 17052 | 1492 syms_of_charset () |
| 1493 { | |
| 1494 Qascii = intern ("ascii"); | |
| 1495 staticpro (&Qascii); | |
| 1496 | |
| 1497 Qcharset = intern ("charset"); | |
| 1498 staticpro (&Qcharset); | |
| 1499 | |
| 1500 /* Define ASCII charset now. */ | |
| 1501 update_charset_table (make_number (CHARSET_ASCII), | |
| 1502 make_number (1), make_number (94), | |
| 1503 make_number (1), | |
| 1504 make_number (0), | |
| 1505 make_number ('B'), | |
| 1506 make_number (0), | |
| 1507 build_string ("ASCII"), | |
| 1508 build_string ("ASCII"), | |
| 1509 build_string ("ASCII (ISO646 IRV)")); | |
| 1510 CHARSET_SYMBOL (CHARSET_ASCII) = Qascii; | |
| 1511 Fput (Qascii, Qcharset, CHARSET_TABLE_ENTRY (CHARSET_ASCII)); | |
| 1512 | |
|
23489
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
1513 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
|
1514 staticpro (&Qauto_fill_chars); |
|
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
1515 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
|
1516 |
| 17052 | 1517 defsubr (&Sdefine_charset); |
|
22703
15e0119749cf
(Vgeneric_character_list): New variable.
Kenichi Handa <handa@m17n.org>
parents:
22524
diff
changeset
|
1518 defsubr (&Sgeneric_character_list); |
|
20435
099812ea310f
(Fget_unused_iso_final_char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20362
diff
changeset
|
1519 defsubr (&Sget_unused_iso_final_char); |
| 17052 | 1520 defsubr (&Sdeclare_equiv_charset); |
| 1521 defsubr (&Sfind_charset_region); | |
| 1522 defsubr (&Sfind_charset_string); | |
| 1523 defsubr (&Smake_char_internal); | |
| 1524 defsubr (&Ssplit_char); | |
| 1525 defsubr (&Schar_charset); | |
|
21445
4c0b4a1025cd
(string_to_non_ascii_char): Include garbage bytes (if
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
1526 defsubr (&Scharset_after); |
| 17052 | 1527 defsubr (&Siso_charset); |
|
20152
9a3343c36e83
(char_valid_p): New function
Kenichi Handa <handa@m17n.org>
parents:
19983
diff
changeset
|
1528 defsubr (&Schar_valid_p); |
|
21034
f3128abaf8aa
(DEFAULT_NONASCII_INSERT_OFFSET): Macro definition is
Kenichi Handa <handa@m17n.org>
parents:
20933
diff
changeset
|
1529 defsubr (&Sunibyte_char_to_multibyte); |
|
23060
5036ee3de0ac
(Fmultibyte_char_to_unibyte): New function.
Richard M. Stallman <rms@gnu.org>
parents:
22927
diff
changeset
|
1530 defsubr (&Smultibyte_char_to_unibyte); |
| 17052 | 1531 defsubr (&Schar_bytes); |
| 1532 defsubr (&Schar_width); | |
| 1533 defsubr (&Sstring_width); | |
| 1534 defsubr (&Schar_direction); | |
|
19415
309b9a0d8a45
(Fchars_in_region): Renamed form Fcount_chars_region.
Kenichi Handa <handa@m17n.org>
parents:
19384
diff
changeset
|
1535 defsubr (&Schars_in_region); |
|
20614
a4800f9842e4
(multibyte_chars_in_text): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20575
diff
changeset
|
1536 defsubr (&Sstring); |
| 17052 | 1537 defsubr (&Ssetup_special_charsets); |
| 1538 | |
| 1539 DEFVAR_LISP ("charset-list", &Vcharset_list, | |
| 1540 "List of charsets ever defined."); | |
| 1541 Vcharset_list = Fcons (Qascii, Qnil); | |
| 1542 | |
|
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
1543 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector, |
|
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
1544 "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
|
1545 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
|
1546 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
|
1547 |
| 17052 | 1548 DEFVAR_INT ("leading-code-private-11", &leading_code_private_11, |
| 1549 "Leading-code of private TYPE9N charset of column-width 1."); | |
| 1550 leading_code_private_11 = LEADING_CODE_PRIVATE_11; | |
| 1551 | |
| 1552 DEFVAR_INT ("leading-code-private-12", &leading_code_private_12, | |
| 1553 "Leading-code of private TYPE9N charset of column-width 2."); | |
| 1554 leading_code_private_12 = LEADING_CODE_PRIVATE_12; | |
| 1555 | |
| 1556 DEFVAR_INT ("leading-code-private-21", &leading_code_private_21, | |
| 1557 "Leading-code of private TYPE9Nx9N charset of column-width 1."); | |
| 1558 leading_code_private_21 = LEADING_CODE_PRIVATE_21; | |
| 1559 | |
| 1560 DEFVAR_INT ("leading-code-private-22", &leading_code_private_22, | |
| 1561 "Leading-code of private TYPE9Nx9N charset of column-width 2."); | |
| 1562 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
|
1563 |
|
a949dc65fbea
(nonascii_insert_offset): Variable moved from cmds.c.
Richard M. Stallman <rms@gnu.org>
parents:
20636
diff
changeset
|
1564 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
|
1565 "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
|
1566 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
|
1567 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
|
1568 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
|
1569 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
|
1570 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
|
1571 for your choice of character set.\n\ |
|
22185
80a2aa51a6e1
Change term "character translation table" to
Kenichi Handa <handa@m17n.org>
parents:
22168
diff
changeset
|
1572 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
|
1573 nonascii_insert_offset = 0; |
|
20720
f084bb8d535f
(min_composite_char): New variable.
Kenichi Handa <handa@m17n.org>
parents:
20705
diff
changeset
|
1574 |
|
22121
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
1575 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
|
1576 "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
|
1577 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
|
1578 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
|
1579 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
|
1580 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
|
1581 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
|
1582 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
|
1583 See also the docstring of `make-translation-table'."); |
|
6e79a15594ab
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21718
diff
changeset
|
1584 Vnonascii_translation_table = Qnil; |
|
20890
c7cfd531cf2b
(Vnonascii_translate_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20833
diff
changeset
|
1585 |
|
23489
09201cebfa21
(Vauto_fill_chars, Qauto_fill_chars): New variables.
Kenichi Handa <handa@m17n.org>
parents:
23427
diff
changeset
|
1586 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
|
1587 "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
|
1588 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
|
1589 Vauto_fill_chars = Fmake_char_table (Qauto_fill_chars, Qnil); |
| 23576 | 1590 CHAR_TABLE_SET (Vauto_fill_chars, make_number (' '), Qt); |
| 1591 CHAR_TABLE_SET (Vauto_fill_chars, make_number ('\n'), Qt); | |
| 17052 | 1592 } |
| 1593 | |
| 1594 #endif /* emacs */ |
