Mercurial > emacs
annotate src/category.c @ 89042:2b9f8973f240
(coding_set_destination): Fix coding->destination for
the case converting a region.
(encode_coding_utf_8): Encode eight-bit chars as single byte.
(encode_coding_object): Fix coding->dst_pos and
coding->dst_pos_byte for the case converting a region.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 21 Aug 2002 12:53:56 +0000 |
parents | 6f9164905a7c |
children | 9320c2f4f351 |
rev | line source |
---|---|
17052 | 1 /* GNU Emacs routines to deal with category tables. |
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
17787
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
17787
diff
changeset
|
3 Licensed to the Free Software Foundation. |
88359 | 4 Copyright (C) 2001, 2002 |
5 National Institute of Advanced Industrial Science and Technology (AIST) | |
6 Registration Number H13PRO009 | |
17052 | 7 |
8 This file is part of GNU Emacs. | |
9 | |
10 GNU Emacs is free software; you can redistribute it and/or modify | |
11 it under the terms of the GNU General Public License as published by | |
12 the Free Software Foundation; either version 2, or (at your option) | |
13 any later version. | |
14 | |
15 GNU Emacs is distributed in the hope that it will be useful, | |
16 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 GNU General Public License for more details. | |
19 | |
20 You should have received a copy of the GNU General Public License | |
21 along with GNU Emacs; see the file COPYING. If not, write to | |
17071 | 22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
23 Boston, MA 02111-1307, USA. */ | |
17052 | 24 |
25 | |
26 /* Here we handle three objects: category, category set, and category | |
27 table. Read comments in the file category.h to understand them. */ | |
28 | |
29 #include <config.h> | |
30 #include <ctype.h> | |
31 #include "lisp.h" | |
32 #include "buffer.h" | |
88359 | 33 #include "character.h" |
17052 | 34 #include "charset.h" |
35 #include "category.h" | |
39748
42b7a798ff79
Include keymap.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
34984
diff
changeset
|
36 #include "keymap.h" |
17052 | 37 |
38 /* The version number of the latest category table. Each category | |
39 table has a unique version number. It is assigned a new number | |
40 also when it is modified. When a regular expression is compiled | |
41 into the struct re_pattern_buffer, the version number of the | |
42 category table (of the current buffer) at that moment is also | |
43 embedded in the structure. | |
44 | |
45 For the moment, we are not using this feature. */ | |
46 static int category_table_version; | |
47 | |
48 Lisp_Object Qcategory_table, Qcategoryp, Qcategorysetp, Qcategory_table_p; | |
49 | |
50 /* Variables to determine word boundary. */ | |
51 Lisp_Object Vword_combining_categories, Vword_separating_categories; | |
52 | |
53 /* Temporary internal variable used in macro CHAR_HAS_CATEGORY. */ | |
54 Lisp_Object _temp_category_set; | |
55 | |
56 | |
57 /* Category set staff. */ | |
58 | |
59 DEFUN ("make-category-set", Fmake_category_set, Smake_category_set, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
60 doc: /* Return a newly created category-set which contains CATEGORIES. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
61 CATEGORIES is a string of category mnemonics. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
62 The value is a bool-vector which has t at the indices corresponding to |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
63 those categories. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
64 (categories) |
17052 | 65 Lisp_Object categories; |
66 { | |
67 Lisp_Object val; | |
68 int len; | |
69 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
70 CHECK_STRING (categories); |
17052 | 71 val = MAKE_CATEGORY_SET; |
72 | |
20612
5a0922f8c841
(Fmake_category_set): Don't allow multibyte string.
Richard M. Stallman <rms@gnu.org>
parents:
20189
diff
changeset
|
73 if (STRING_MULTIBYTE (categories)) |
5a0922f8c841
(Fmake_category_set): Don't allow multibyte string.
Richard M. Stallman <rms@gnu.org>
parents:
20189
diff
changeset
|
74 error ("Multibyte string in make-category-set"); |
5a0922f8c841
(Fmake_category_set): Don't allow multibyte string.
Richard M. Stallman <rms@gnu.org>
parents:
20189
diff
changeset
|
75 |
17052 | 76 len = XSTRING (categories)->size; |
77 while (--len >= 0) | |
78 { | |
17369
566b26e1930e
(Fmake_category_set): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents:
17324
diff
changeset
|
79 Lisp_Object category; |
17052 | 80 |
17369
566b26e1930e
(Fmake_category_set): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents:
17324
diff
changeset
|
81 XSETFASTINT (category, XSTRING (categories)->data[len]); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
82 CHECK_CATEGORY (category); |
17052 | 83 SET_CATEGORY_SET (val, category, Qt); |
84 } | |
85 return val; | |
86 } | |
87 | |
88 | |
89 /* Category staff. */ | |
90 | |
91 Lisp_Object check_category_table (); | |
92 | |
93 DEFUN ("define-category", Fdefine_category, Sdefine_category, 2, 3, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
94 doc: /* Define CHAR as a category which is described by DOCSTRING. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
95 CHAR should be an ASCII printing character in the range ` ' to `~'. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
96 DOCSTRING is a documentation string of the category. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
97 The category is defined only in category table TABLE, which defaults to |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
98 the current buffer's category table. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
99 (category, docstring, table) |
17052 | 100 Lisp_Object category, docstring, table; |
101 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
102 CHECK_CATEGORY (category); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
103 CHECK_STRING (docstring); |
17052 | 104 table = check_category_table (table); |
105 | |
106 if (!NILP (CATEGORY_DOCSTRING (table, XFASTINT (category)))) | |
107 error ("Category `%c' is already defined", XFASTINT (category)); | |
108 CATEGORY_DOCSTRING (table, XFASTINT (category)) = docstring; | |
109 | |
110 return Qnil; | |
111 } | |
112 | |
113 DEFUN ("category-docstring", Fcategory_docstring, Scategory_docstring, 1, 2, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
114 doc: /* Return the documentation string of CATEGORY, as defined in CATEGORY-TABLE. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
115 (category, table) |
17052 | 116 Lisp_Object category, table; |
117 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
118 CHECK_CATEGORY (category); |
17052 | 119 table = check_category_table (table); |
120 | |
121 return CATEGORY_DOCSTRING (table, XFASTINT (category)); | |
122 } | |
123 | |
124 DEFUN ("get-unused-category", Fget_unused_category, Sget_unused_category, | |
125 0, 1, 0, | |
41038
a882905d8a96
(Fget_unused_category): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
126 doc: /* Return a category which is not yet defined in CATEGORY-TABLE. |
a882905d8a96
(Fget_unused_category): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
127 If no category remains available, return nil. |
a882905d8a96
(Fget_unused_category): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
128 The optional argument CATEGORY-TABLE |
a882905d8a96
(Fget_unused_category): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
129 specifies which category table to modify; |
a882905d8a96
(Fget_unused_category): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
130 it defaults to the current buffer's category table. */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
131 (table) |
17052 | 132 Lisp_Object table; |
133 { | |
134 int i; | |
135 | |
136 table = check_category_table (table); | |
137 | |
138 for (i = ' '; i <= '~'; i++) | |
139 if (NILP (CATEGORY_DOCSTRING (table, i))) | |
140 return make_number (i); | |
141 | |
142 return Qnil; | |
143 } | |
144 | |
145 | |
146 /* Category-table staff. */ | |
147 | |
148 DEFUN ("category-table-p", Fcategory_table_p, Scategory_table_p, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
149 doc: /* Return t if ARG is a category table. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
150 (arg) |
17052 | 151 Lisp_Object arg; |
152 { | |
153 if (CHAR_TABLE_P (arg) | |
17324
ed53084a1655
(category-table-p): Check only type and purpose.
Kenichi Handa <handa@m17n.org>
parents:
17187
diff
changeset
|
154 && EQ (XCHAR_TABLE (arg)->purpose, Qcategory_table)) |
17052 | 155 return Qt; |
156 return Qnil; | |
157 } | |
158 | |
159 /* If TABLE is nil, return the current category table. If TABLE is | |
160 not nil, check the validity of TABLE as a category table. If | |
161 valid, return TABLE itself, but if not valid, signal an error of | |
162 wrong-type-argument. */ | |
163 | |
164 Lisp_Object | |
165 check_category_table (table) | |
166 Lisp_Object table; | |
167 { | |
168 register Lisp_Object tem; | |
169 if (NILP (table)) | |
170 return current_buffer->category_table; | |
171 while (tem = Fcategory_table_p (table), NILP (tem)) | |
172 table = wrong_type_argument (Qcategory_table_p, table); | |
173 return table; | |
174 } | |
175 | |
176 DEFUN ("category-table", Fcategory_table, Scategory_table, 0, 0, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
177 doc: /* Return the current category table. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
178 This is the one specified by the current buffer. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
179 () |
17052 | 180 { |
181 return current_buffer->category_table; | |
182 } | |
183 | |
184 DEFUN ("standard-category-table", Fstandard_category_table, | |
185 Sstandard_category_table, 0, 0, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
186 doc: /* Return the standard category table. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
187 This is the one used for new buffers. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
188 () |
17052 | 189 { |
190 return Vstandard_category_table; | |
191 } | |
192 | |
88359 | 193 |
194 static void | |
195 copy_category_entry (table, range, val) | |
196 Lisp_Object table, range, val; | |
197 { | |
198 char_table_set_range (table, XINT (XCAR (range)), XINT (XCDR (range)), | |
199 Fcopy_sequence (val)); | |
200 } | |
201 | |
17052 | 202 /* Return a copy of category table TABLE. We can't simply use the |
203 function copy-sequence because no contents should be shared between | |
17324
ed53084a1655
(category-table-p): Check only type and purpose.
Kenichi Handa <handa@m17n.org>
parents:
17187
diff
changeset
|
204 the original and the copy. This function is called recursively by |
20189
16f5b56c2f68
(copy_category_table): Copy also the first extra slot
Kenichi Handa <handa@m17n.org>
parents:
19659
diff
changeset
|
205 binding TABLE to a sub char table. */ |
17052 | 206 |
207 Lisp_Object | |
17324
ed53084a1655
(category-table-p): Check only type and purpose.
Kenichi Handa <handa@m17n.org>
parents:
17187
diff
changeset
|
208 copy_category_table (table) |
17052 | 209 Lisp_Object table; |
210 { | |
88359 | 211 table = copy_char_table (table); |
20189
16f5b56c2f68
(copy_category_table): Copy also the first extra slot
Kenichi Handa <handa@m17n.org>
parents:
19659
diff
changeset
|
212 |
88359 | 213 if (! NILP (XCHAR_TABLE (table)->defalt)) |
214 XCHAR_TABLE (table)->defalt | |
215 = Fcopy_sequence (XCHAR_TABLE (table)->defalt); | |
216 XCHAR_TABLE (table)->extras[0] | |
217 = Fcopy_sequence (XCHAR_TABLE (table)->extras[0]); | |
17052 | 218 |
88359 | 219 map_char_table (copy_category_entry, Qnil, table, table, 0, NULL); |
17324
ed53084a1655
(category-table-p): Check only type and purpose.
Kenichi Handa <handa@m17n.org>
parents:
17187
diff
changeset
|
220 |
17052 | 221 return table; |
222 } | |
223 | |
224 DEFUN ("copy-category-table", Fcopy_category_table, Scopy_category_table, | |
225 0, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
226 doc: /* Construct a new category table and return it. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
227 It is a copy of the TABLE, which defaults to the standard category table. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
228 (table) |
17052 | 229 Lisp_Object table; |
230 { | |
231 if (!NILP (table)) | |
232 check_category_table (table); | |
233 else | |
234 table = Vstandard_category_table; | |
235 | |
20189
16f5b56c2f68
(copy_category_table): Copy also the first extra slot
Kenichi Handa <handa@m17n.org>
parents:
19659
diff
changeset
|
236 return copy_category_table (table); |
17052 | 237 } |
238 | |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
239 DEFUN ("make-category-table", Fmake_category_table, Smake_category_table, |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
240 0, 0, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
241 doc: /* Construct a new and empty category table and return it. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
242 () |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
243 { |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
244 Lisp_Object val; |
88359 | 245 int i; |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
246 |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
247 val = Fmake_char_table (Qcategory_table, Qnil); |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
248 XCHAR_TABLE (val)->defalt = MAKE_CATEGORY_SET; |
88359 | 249 for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++) |
250 XCHAR_TABLE (val)->contents[i] = MAKE_CATEGORY_SET; | |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
251 Fset_char_table_extra_slot (val, make_number (0), |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
252 Fmake_vector (make_number (95), Qnil)); |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
253 return val; |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
254 } |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
255 |
17052 | 256 DEFUN ("set-category-table", Fset_category_table, Sset_category_table, 1, 1, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
257 doc: /* Specify TABLE as the category table for the current buffer. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
258 (table) |
17052 | 259 Lisp_Object table; |
260 { | |
28315
16ed41346de7
(Fset_category_table): Use new macros for per-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
26841
diff
changeset
|
261 int idx; |
17052 | 262 table = check_category_table (table); |
263 current_buffer->category_table = table; | |
264 /* Indicate that this buffer now has a specified category table. */ | |
28351 | 265 idx = PER_BUFFER_VAR_IDX (category_table); |
266 SET_PER_BUFFER_VALUE_P (current_buffer, idx, 1); | |
17052 | 267 return table; |
268 } | |
269 | |
270 | |
88359 | 271 Lisp_Object |
272 char_category_set (c) | |
273 int c; | |
274 { | |
275 return CHAR_TABLE_REF (current_buffer->category_table, c); | |
276 } | |
277 | |
17052 | 278 DEFUN ("char-category-set", Fchar_category_set, Schar_category_set, 1, 1, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
279 doc: /* Return the category set of CHAR. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
280 (ch) |
17052 | 281 Lisp_Object ch; |
282 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
283 CHECK_NUMBER (ch); |
17052 | 284 return CATEGORY_SET (XFASTINT (ch)); |
285 } | |
286 | |
287 DEFUN ("category-set-mnemonics", Fcategory_set_mnemonics, | |
288 Scategory_set_mnemonics, 1, 1, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
289 doc: /* Return a string containing mnemonics of the categories in CATEGORY-SET. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
290 CATEGORY-SET is a bool-vector, and the categories \"in\" it are those |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
291 that are indexes where t occurs the bool-vector. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
292 The return value is a string containing those same categories. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
293 (category_set) |
17052 | 294 Lisp_Object category_set; |
295 { | |
296 int i, j; | |
297 char str[96]; | |
298 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
299 CHECK_CATEGORY_SET (category_set); |
17052 | 300 |
301 j = 0; | |
302 for (i = 32; i < 127; i++) | |
303 if (CATEGORY_MEMBER (i, category_set)) | |
304 str[j++] = i; | |
305 str[j] = '\0'; | |
306 | |
307 return build_string (str); | |
308 } | |
309 | |
310 void | |
311 set_category_set (category_set, category, val) | |
312 Lisp_Object category_set, category, val; | |
313 { | |
314 do { | |
315 int idx = XINT (category) / 8; | |
316 unsigned char bits = 1 << (XINT (category) % 8); | |
317 | |
318 if (NILP (val)) | |
319 XCATEGORY_SET (category_set)->data[idx] &= ~bits; | |
320 else | |
321 XCATEGORY_SET (category_set)->data[idx] |= bits; | |
322 } while (0); | |
323 } | |
324 | |
325 DEFUN ("modify-category-entry", Fmodify_category_entry, | |
326 Smodify_category_entry, 2, 4, 0, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
327 doc: /* Modify the category set of CHARACTER by adding CATEGORY to it. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
328 The category is changed only for table TABLE, which defaults to |
88622
6bd578d2b8af
(Fmodify_category_entry): Doc fix. Remove unused
Dave Love <fx@gnu.org>
parents:
88359
diff
changeset
|
329 the current buffer's category table. |
6bd578d2b8af
(Fmodify_category_entry): Doc fix. Remove unused
Dave Love <fx@gnu.org>
parents:
88359
diff
changeset
|
330 CHARACTER can be either a single character or a cons representing the |
6bd578d2b8af
(Fmodify_category_entry): Doc fix. Remove unused
Dave Love <fx@gnu.org>
parents:
88359
diff
changeset
|
331 lower and upper ends of an inclusive character range to modify. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
332 If optional fourth argument RESET is non-nil, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
333 then delete CATEGORY from the category set instead of adding it. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
334 (character, category, table, reset) |
20825
1b98a0ab1bee
(Fmodify_category_entry): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
20612
diff
changeset
|
335 Lisp_Object character, category, table, reset; |
17052 | 336 { |
337 Lisp_Object set_value; /* Actual value to be set in category sets. */ | |
88622
6bd578d2b8af
(Fmodify_category_entry): Doc fix. Remove unused
Dave Love <fx@gnu.org>
parents:
88359
diff
changeset
|
338 Lisp_Object category_set; |
88359 | 339 int start, end; |
340 int from, to; | |
17052 | 341 |
88359 | 342 if (INTEGERP (character)) |
343 { | |
344 CHECK_CHARACTER (character); | |
345 start = end = XFASTINT (character); | |
346 } | |
347 else | |
348 { | |
349 CHECK_CONS (character); | |
350 CHECK_CHARACTER (XCAR (character)); | |
351 CHECK_CHARACTER (XCDR (character)); | |
352 start = XFASTINT (XCAR (character)); | |
353 end = XFASTINT (XCDR (character)); | |
354 } | |
355 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
356 CHECK_CATEGORY (category); |
17052 | 357 table = check_category_table (table); |
358 | |
359 if (NILP (CATEGORY_DOCSTRING (table, XFASTINT (category)))) | |
360 error ("Undefined category: %c", XFASTINT (category)); | |
361 | |
362 set_value = NILP (reset) ? Qt : Qnil; | |
363 | |
88359 | 364 while (start <= end) |
17052 | 365 { |
88359 | 366 category_set = char_table_ref_and_range (table, start, &from, &to); |
88850
6f9164905a7c
(Fmodify_category_entry): Fix CATEGORY_MEMBER call.
Dave Love <fx@gnu.org>
parents:
88741
diff
changeset
|
367 if (CATEGORY_MEMBER (XFASTINT (category), category_set) != NILP (reset)) |
88359 | 368 { |
88741
a93a8b796b91
(Fmodify_category_entry): Don't modify the contents
Kenichi Handa <handa@m17n.org>
parents:
88622
diff
changeset
|
369 category_set = Fcopy_sequence (category_set); |
a93a8b796b91
(Fmodify_category_entry): Don't modify the contents
Kenichi Handa <handa@m17n.org>
parents:
88622
diff
changeset
|
370 SET_CATEGORY_SET (category_set, category, set_value); |
88359 | 371 if (to > end) |
372 char_table_set_range (table, start, end, category_set); | |
373 else | |
374 char_table_set_range (table, start, to, category_set); | |
375 } | |
376 start = to + 1; | |
17052 | 377 } |
378 return Qnil; | |
379 } | |
380 | |
381 /* Return 1 if there is a word boundary between two word-constituent | |
382 characters C1 and C2 if they appear in this order, else return 0. | |
383 Use the macro WORD_BOUNDARY_P instead of calling this function | |
384 directly. */ | |
385 | |
386 int | |
387 word_boundary_p (c1, c2) | |
388 int c1, c2; | |
389 { | |
390 Lisp_Object category_set1, category_set2; | |
391 Lisp_Object tail; | |
392 int default_result; | |
393 | |
394 if (CHAR_CHARSET (c1) == CHAR_CHARSET (c2)) | |
395 { | |
396 tail = Vword_separating_categories; | |
397 default_result = 0; | |
398 } | |
399 else | |
400 { | |
401 tail = Vword_combining_categories; | |
402 default_result = 1; | |
403 } | |
404 | |
405 category_set1 = CATEGORY_SET (c1); | |
406 if (NILP (category_set1)) | |
407 return default_result; | |
408 category_set2 = CATEGORY_SET (c2); | |
409 if (NILP (category_set2)) | |
410 return default_result; | |
411 | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
23755
diff
changeset
|
412 for (; CONSP (tail); tail = XCDR (tail)) |
17052 | 413 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
23755
diff
changeset
|
414 Lisp_Object elt = XCAR (tail); |
17052 | 415 |
416 if (CONSP (elt) | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
23755
diff
changeset
|
417 && CATEGORYP (XCAR (elt)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
23755
diff
changeset
|
418 && CATEGORYP (XCDR (elt)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
23755
diff
changeset
|
419 && CATEGORY_MEMBER (XFASTINT (XCAR (elt)), category_set1) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
23755
diff
changeset
|
420 && CATEGORY_MEMBER (XFASTINT (XCDR (elt)), category_set2)) |
17052 | 421 return !default_result; |
422 } | |
423 return default_result; | |
424 } | |
425 | |
426 | |
21514 | 427 void |
17052 | 428 init_category_once () |
429 { | |
430 /* This has to be done here, before we call Fmake_char_table. */ | |
431 Qcategory_table = intern ("category-table"); | |
432 staticpro (&Qcategory_table); | |
433 | |
434 /* Intern this now in case it isn't already done. | |
435 Setting this variable twice is harmless. | |
436 But don't staticpro it here--that is done in alloc.c. */ | |
437 Qchar_table_extra_slots = intern ("char-table-extra-slots"); | |
438 | |
439 /* Now we are ready to set up this property, so we can | |
440 create category tables. */ | |
441 Fput (Qcategory_table, Qchar_table_extra_slots, make_number (2)); | |
442 | |
443 Vstandard_category_table = Fmake_char_table (Qcategory_table, Qnil); | |
444 /* Set a category set which contains nothing to the default. */ | |
445 XCHAR_TABLE (Vstandard_category_table)->defalt = MAKE_CATEGORY_SET; | |
20189
16f5b56c2f68
(copy_category_table): Copy also the first extra slot
Kenichi Handa <handa@m17n.org>
parents:
19659
diff
changeset
|
446 Fset_char_table_extra_slot (Vstandard_category_table, make_number (0), |
17052 | 447 Fmake_vector (make_number (95), Qnil)); |
448 } | |
449 | |
21514 | 450 void |
17052 | 451 syms_of_category () |
452 { | |
453 Qcategoryp = intern ("categoryp"); | |
454 staticpro (&Qcategoryp); | |
455 Qcategorysetp = intern ("categorysetp"); | |
456 staticpro (&Qcategorysetp); | |
457 Qcategory_table_p = intern ("category-table-p"); | |
458 staticpro (&Qcategory_table_p); | |
459 | |
460 DEFVAR_LISP ("word-combining-categories", &Vword_combining_categories, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
461 doc: /* List of pair (cons) of categories to determine word boundary. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
462 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
463 Emacs treats a sequence of word constituent characters as a single |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
464 word (i.e. finds no word boundary between them) iff they belongs to |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
465 the same charset. But, exceptions are allowed in the following cases. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
466 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
467 \(1) The case that characters are in different charsets is controlled |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
468 by the variable `word-combining-categories'. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
469 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
470 Emacs finds no word boundary between characters of different charsets |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
471 if they have categories matching some element of this list. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
472 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
473 More precisely, if an element of this list is a cons of category CAT1 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
474 and CAT2, and a multibyte character C1 which has CAT1 is followed by |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
475 C2 which has CAT2, there's no word boundary between C1 and C2. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
476 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
477 For instance, to tell that ASCII characters and Latin-1 characters can |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
478 form a single word, the element `(?l . ?l)' should be in this list |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
479 because both characters have the category `l' (Latin characters). |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
480 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
481 \(2) The case that character are in the same charset is controlled by |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
482 the variable `word-separating-categories'. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
483 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
484 Emacs find a word boundary between characters of the same charset |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
485 if they have categories matching some element of this list. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
486 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
487 More precisely, if an element of this list is a cons of category CAT1 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
488 and CAT2, and a multibyte character C1 which has CAT1 is followed by |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
489 C2 which has CAT2, there's a word boundary between C1 and C2. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
490 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
491 For instance, to tell that there's a word boundary between Japanese |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
492 Hiragana and Japanese Kanji (both are in the same charset), the |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
493 element `(?H . ?C) should be in this list. */); |
17052 | 494 |
495 Vword_combining_categories = Qnil; | |
496 | |
497 DEFVAR_LISP ("word-separating-categories", &Vword_separating_categories, | |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
498 doc: /* List of pair (cons) of categories to determine word boundary. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
499 See the documentation of the variable `word-combining-categories'. */); |
17052 | 500 |
501 Vword_separating_categories = Qnil; | |
502 | |
503 defsubr (&Smake_category_set); | |
504 defsubr (&Sdefine_category); | |
505 defsubr (&Scategory_docstring); | |
506 defsubr (&Sget_unused_category); | |
507 defsubr (&Scategory_table_p); | |
508 defsubr (&Scategory_table); | |
509 defsubr (&Sstandard_category_table); | |
510 defsubr (&Scopy_category_table); | |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
511 defsubr (&Smake_category_table); |
17052 | 512 defsubr (&Sset_category_table); |
513 defsubr (&Schar_category_set); | |
514 defsubr (&Scategory_set_mnemonics); | |
515 defsubr (&Smodify_category_entry); | |
516 | |
517 category_table_version = 0; | |
518 } |