Mercurial > emacs
annotate src/category.c @ 107157:6a11e3b311d8
Change a custom default to ease the mail->message transition.
* message.el (message-default-mail-headers): Change the default value
to ease the transition from mail-mode to message-mode. (Bug#5555)
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Mon, 15 Feb 2010 18:48:08 -0800 |
parents | 1d1d5d9bd884 |
children | 2bc9a0c04c87 376148b31b5e |
rev | line source |
---|---|
17052 | 1 /* GNU Emacs routines to deal with category tables. |
106815 | 2 Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
74605
diff
changeset
|
3 Free Software Foundation, Inc. |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
73927
diff
changeset
|
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
106815 | 5 2005, 2006, 2007, 2008, 2009, 2010 |
67658 | 6 National Institute of Advanced Industrial Science and Technology (AIST) |
7 Registration Number H14PRO021 | |
89483 | 8 Copyright (C) 2003 |
88359 | 9 National Institute of Advanced Industrial Science and Technology (AIST) |
10 Registration Number H13PRO009 | |
17052 | 11 |
12 This file is part of GNU Emacs. | |
13 | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
14 GNU Emacs is free software: you can redistribute it and/or modify |
17052 | 15 it under the terms of the GNU General Public License as published by |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
16 the Free Software Foundation, either version 3 of the License, or |
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
17 (at your option) any later version. |
17052 | 18 |
19 GNU Emacs is distributed in the hope that it will be useful, | |
20 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 GNU General Public License for more details. | |
23 | |
24 You should have received a copy of the GNU General Public License | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
25 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
17052 | 26 |
27 | |
28 /* Here we handle three objects: category, category set, and category | |
29 table. Read comments in the file category.h to understand them. */ | |
30 | |
31 #include <config.h> | |
32 #include <ctype.h> | |
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100951
diff
changeset
|
33 #include <setjmp.h> |
17052 | 34 #include "lisp.h" |
35 #include "buffer.h" | |
88359 | 36 #include "character.h" |
17052 | 37 #include "charset.h" |
38 #include "category.h" | |
39748
42b7a798ff79
Include keymap.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
34984
diff
changeset
|
39 #include "keymap.h" |
17052 | 40 |
41 /* The version number of the latest category table. Each category | |
42 table has a unique version number. It is assigned a new number | |
43 also when it is modified. When a regular expression is compiled | |
44 into the struct re_pattern_buffer, the version number of the | |
45 category table (of the current buffer) at that moment is also | |
46 embedded in the structure. | |
47 | |
48 For the moment, we are not using this feature. */ | |
49 static int category_table_version; | |
50 | |
51 Lisp_Object Qcategory_table, Qcategoryp, Qcategorysetp, Qcategory_table_p; | |
52 | |
53 /* Variables to determine word boundary. */ | |
54 Lisp_Object Vword_combining_categories, Vword_separating_categories; | |
55 | |
56 /* Temporary internal variable used in macro CHAR_HAS_CATEGORY. */ | |
57 Lisp_Object _temp_category_set; | |
58 | |
59 | |
60 /* Category set staff. */ | |
61 | |
99975
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
62 static Lisp_Object hash_get_category_set P_ ((Lisp_Object, Lisp_Object)); |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
63 |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
64 static Lisp_Object |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
65 hash_get_category_set (table, category_set) |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
66 Lisp_Object table, category_set; |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
67 { |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
68 Lisp_Object val; |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
69 struct Lisp_Hash_Table *h; |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
70 int i; |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
71 unsigned hash; |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
72 |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
73 if (NILP (XCHAR_TABLE (table)->extras[1])) |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
74 XCHAR_TABLE (table)->extras[1] |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
75 = make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE), |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
76 make_float (DEFAULT_REHASH_SIZE), |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
77 make_float (DEFAULT_REHASH_THRESHOLD), |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
78 Qnil, Qnil, Qnil); |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
79 h = XHASH_TABLE (XCHAR_TABLE (table)->extras[1]); |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
80 i = hash_lookup (h, category_set, &hash); |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
81 if (i >= 0) |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
82 return HASH_KEY (h, i); |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
83 hash_put (h, category_set, Qnil, hash); |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
84 return category_set; |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
85 } |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
86 |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
87 |
17052 | 88 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
|
89 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
|
90 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
|
91 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
|
92 those categories. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
93 (categories) |
17052 | 94 Lisp_Object categories; |
95 { | |
96 Lisp_Object val; | |
97 int len; | |
98 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
99 CHECK_STRING (categories); |
17052 | 100 val = MAKE_CATEGORY_SET; |
101 | |
20612
5a0922f8c841
(Fmake_category_set): Don't allow multibyte string.
Richard M. Stallman <rms@gnu.org>
parents:
20189
diff
changeset
|
102 if (STRING_MULTIBYTE (categories)) |
63694
8f10ba0f0a86
(Fmake_category_set): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents:
54091
diff
changeset
|
103 error ("Multibyte string in `make-category-set'"); |
20612
5a0922f8c841
(Fmake_category_set): Don't allow multibyte string.
Richard M. Stallman <rms@gnu.org>
parents:
20189
diff
changeset
|
104 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
41643
diff
changeset
|
105 len = SCHARS (categories); |
17052 | 106 while (--len >= 0) |
107 { | |
17369
566b26e1930e
(Fmake_category_set): Use XSETFASTINT.
Karl Heuer <kwzh@gnu.org>
parents:
17324
diff
changeset
|
108 Lisp_Object category; |
17052 | 109 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
41643
diff
changeset
|
110 XSETFASTINT (category, SREF (categories, len)); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
111 CHECK_CATEGORY (category); |
17052 | 112 SET_CATEGORY_SET (val, category, Qt); |
113 } | |
114 return val; | |
115 } | |
116 | |
117 | |
118 /* Category staff. */ | |
119 | |
120 Lisp_Object check_category_table (); | |
121 | |
122 DEFUN ("define-category", Fdefine_category, Sdefine_category, 2, 3, 0, | |
54091
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
123 doc: /* Define CATEGORY as a category which is described by DOCSTRING. |
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
124 CATEGORY should be an ASCII printing character in the range ` ' to `~'. |
99117
2810c8ec19d6
(Fdefine_category): Docstring modified for DOCSTRING.
Kenichi Handa <handa@m17n.org>
parents:
99016
diff
changeset
|
125 DOCSTRING is the documentation string of the category. The first line |
2810c8ec19d6
(Fdefine_category): Docstring modified for DOCSTRING.
Kenichi Handa <handa@m17n.org>
parents:
99016
diff
changeset
|
126 should be a terse text (preferably less than 16 characters), |
2810c8ec19d6
(Fdefine_category): Docstring modified for DOCSTRING.
Kenichi Handa <handa@m17n.org>
parents:
99016
diff
changeset
|
127 and the rest lines should be the full description. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
128 The category is defined only in category table TABLE, which defaults to |
54091
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
129 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
|
130 (category, docstring, table) |
17052 | 131 Lisp_Object category, docstring, table; |
132 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
133 CHECK_CATEGORY (category); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
134 CHECK_STRING (docstring); |
17052 | 135 table = check_category_table (table); |
136 | |
137 if (!NILP (CATEGORY_DOCSTRING (table, XFASTINT (category)))) | |
138 error ("Category `%c' is already defined", XFASTINT (category)); | |
105744
b0a732611398
* keymap.c (Fmake_sparse_keymap): Purecopy the name.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
139 if (!NILP (Vpurify_flag)) |
b0a732611398
* keymap.c (Fmake_sparse_keymap): Purecopy the name.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
140 docstring = Fpurecopy (docstring); |
17052 | 141 CATEGORY_DOCSTRING (table, XFASTINT (category)) = docstring; |
142 | |
143 return Qnil; | |
144 } | |
145 | |
146 DEFUN ("category-docstring", Fcategory_docstring, Scategory_docstring, 1, 2, 0, | |
54091
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
147 doc: /* Return the documentation string of CATEGORY, as defined in TABLE. |
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
148 TABLE should be a category table and defaults to the current buffer's |
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
149 category table. */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
150 (category, table) |
17052 | 151 Lisp_Object category, table; |
152 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
153 CHECK_CATEGORY (category); |
17052 | 154 table = check_category_table (table); |
155 | |
156 return CATEGORY_DOCSTRING (table, XFASTINT (category)); | |
157 } | |
158 | |
159 DEFUN ("get-unused-category", Fget_unused_category, Sget_unused_category, | |
160 0, 1, 0, | |
54091
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
161 doc: /* Return a category which is not yet defined in TABLE. |
41038
a882905d8a96
(Fget_unused_category): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
162 If no category remains available, return nil. |
54091
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
163 The optional argument TABLE specifies which category table to modify; |
41038
a882905d8a96
(Fget_unused_category): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
164 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
|
165 (table) |
17052 | 166 Lisp_Object table; |
167 { | |
168 int i; | |
169 | |
170 table = check_category_table (table); | |
171 | |
172 for (i = ' '; i <= '~'; i++) | |
173 if (NILP (CATEGORY_DOCSTRING (table, i))) | |
174 return make_number (i); | |
175 | |
176 return Qnil; | |
177 } | |
178 | |
179 | |
180 /* Category-table staff. */ | |
181 | |
182 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
|
183 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
|
184 (arg) |
17052 | 185 Lisp_Object arg; |
186 { | |
187 if (CHAR_TABLE_P (arg) | |
17324
ed53084a1655
(category-table-p): Check only type and purpose.
Kenichi Handa <handa@m17n.org>
parents:
17187
diff
changeset
|
188 && EQ (XCHAR_TABLE (arg)->purpose, Qcategory_table)) |
17052 | 189 return Qt; |
190 return Qnil; | |
191 } | |
192 | |
193 /* If TABLE is nil, return the current category table. If TABLE is | |
194 not nil, check the validity of TABLE as a category table. If | |
195 valid, return TABLE itself, but if not valid, signal an error of | |
196 wrong-type-argument. */ | |
197 | |
198 Lisp_Object | |
199 check_category_table (table) | |
200 Lisp_Object table; | |
201 { | |
202 if (NILP (table)) | |
203 return current_buffer->category_table; | |
71829
8adcaaf366b4
(check_category_table): Use CHECK_TYPE.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
204 CHECK_TYPE (!NILP (Fcategory_table_p (table)), Qcategory_table_p, table); |
17052 | 205 return table; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
206 } |
17052 | 207 |
208 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
|
209 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
|
210 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
|
211 () |
17052 | 212 { |
213 return current_buffer->category_table; | |
214 } | |
215 | |
216 DEFUN ("standard-category-table", Fstandard_category_table, | |
217 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
|
218 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
|
219 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
|
220 () |
17052 | 221 { |
222 return Vstandard_category_table; | |
223 } | |
224 | |
88359 | 225 |
226 static void | |
89483 | 227 copy_category_entry (table, c, val) |
228 Lisp_Object table, c, val; | |
88359 | 229 { |
89380
9320c2f4f351
(copy_category_entry): Fix for the case that RANGE is an integer.
Kenichi Handa <handa@m17n.org>
parents:
88850
diff
changeset
|
230 val = Fcopy_sequence (val); |
89483 | 231 if (CONSP (c)) |
232 char_table_set_range (table, XINT (XCAR (c)), XINT (XCDR (c)), val); | |
89380
9320c2f4f351
(copy_category_entry): Fix for the case that RANGE is an integer.
Kenichi Handa <handa@m17n.org>
parents:
88850
diff
changeset
|
233 else |
89483 | 234 char_table_set (table, XINT (c), val); |
88359 | 235 } |
236 | |
17052 | 237 /* Return a copy of category table TABLE. We can't simply use the |
238 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
|
239 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
|
240 binding TABLE to a sub char table. */ |
17052 | 241 |
242 Lisp_Object | |
17324
ed53084a1655
(category-table-p): Check only type and purpose.
Kenichi Handa <handa@m17n.org>
parents:
17187
diff
changeset
|
243 copy_category_table (table) |
17052 | 244 Lisp_Object table; |
245 { | |
88359 | 246 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
|
247 |
88359 | 248 if (! NILP (XCHAR_TABLE (table)->defalt)) |
249 XCHAR_TABLE (table)->defalt | |
250 = Fcopy_sequence (XCHAR_TABLE (table)->defalt); | |
251 XCHAR_TABLE (table)->extras[0] | |
252 = Fcopy_sequence (XCHAR_TABLE (table)->extras[0]); | |
89483 | 253 map_char_table (copy_category_entry, Qnil, table, table); |
17324
ed53084a1655
(category-table-p): Check only type and purpose.
Kenichi Handa <handa@m17n.org>
parents:
17187
diff
changeset
|
254 |
17052 | 255 return table; |
256 } | |
257 | |
258 DEFUN ("copy-category-table", Fcopy_category_table, Scopy_category_table, | |
259 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
|
260 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
|
261 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
|
262 (table) |
17052 | 263 Lisp_Object table; |
264 { | |
265 if (!NILP (table)) | |
266 check_category_table (table); | |
267 else | |
268 table = Vstandard_category_table; | |
269 | |
20189
16f5b56c2f68
(copy_category_table): Copy also the first extra slot
Kenichi Handa <handa@m17n.org>
parents:
19659
diff
changeset
|
270 return copy_category_table (table); |
17052 | 271 } |
272 | |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
273 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
|
274 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
|
275 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
|
276 () |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
277 { |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
278 Lisp_Object val; |
88359 | 279 int i; |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
280 |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
281 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
|
282 XCHAR_TABLE (val)->defalt = MAKE_CATEGORY_SET; |
89483 | 283 for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++) |
88359 | 284 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
|
285 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
|
286 Fmake_vector (make_number (95), Qnil)); |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
287 return val; |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
288 } |
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
289 |
17052 | 290 DEFUN ("set-category-table", Fset_category_table, Sset_category_table, 1, 1, 0, |
54091
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
291 doc: /* Specify TABLE as the category table for the current buffer. |
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
292 Return TABLE. */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
293 (table) |
17052 | 294 Lisp_Object table; |
295 { | |
28315
16ed41346de7
(Fset_category_table): Use new macros for per-buffer
Gerd Moellmann <gerd@gnu.org>
parents:
26841
diff
changeset
|
296 int idx; |
17052 | 297 table = check_category_table (table); |
298 current_buffer->category_table = table; | |
299 /* Indicate that this buffer now has a specified category table. */ | |
28351 | 300 idx = PER_BUFFER_VAR_IDX (category_table); |
301 SET_PER_BUFFER_VALUE_P (current_buffer, idx, 1); | |
17052 | 302 return table; |
303 } | |
304 | |
305 | |
88359 | 306 Lisp_Object |
307 char_category_set (c) | |
308 int c; | |
309 { | |
310 return CHAR_TABLE_REF (current_buffer->category_table, c); | |
311 } | |
312 | |
17052 | 313 DEFUN ("char-category-set", Fchar_category_set, Schar_category_set, 1, 1, 0, |
73927
e74524ea3f55
(Fchar_category_set): Improve arg/docstring consistency.
Juanma Barranquero <lekktu@gmail.com>
parents:
71829
diff
changeset
|
314 doc: /* Return the category set of CHAR. |
e74524ea3f55
(Fchar_category_set): Improve arg/docstring consistency.
Juanma Barranquero <lekktu@gmail.com>
parents:
71829
diff
changeset
|
315 usage: (char-category-set CHAR) */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
316 (ch) |
17052 | 317 Lisp_Object ch; |
318 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
319 CHECK_NUMBER (ch); |
17052 | 320 return CATEGORY_SET (XFASTINT (ch)); |
321 } | |
322 | |
323 DEFUN ("category-set-mnemonics", Fcategory_set_mnemonics, | |
324 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
|
325 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
|
326 CATEGORY-SET is a bool-vector, and the categories \"in\" it are those |
54091
15dabc5988ff
(Fdefine_category, Fcategory_docstring)
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
327 that are indexes where t occurs in the bool-vector. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
328 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
|
329 (category_set) |
17052 | 330 Lisp_Object category_set; |
331 { | |
332 int i, j; | |
333 char str[96]; | |
334 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
335 CHECK_CATEGORY_SET (category_set); |
17052 | 336 |
337 j = 0; | |
338 for (i = 32; i < 127; i++) | |
339 if (CATEGORY_MEMBER (i, category_set)) | |
340 str[j++] = i; | |
341 str[j] = '\0'; | |
342 | |
343 return build_string (str); | |
344 } | |
345 | |
346 void | |
347 set_category_set (category_set, category, val) | |
348 Lisp_Object category_set, category, val; | |
349 { | |
350 do { | |
351 int idx = XINT (category) / 8; | |
352 unsigned char bits = 1 << (XINT (category) % 8); | |
353 | |
354 if (NILP (val)) | |
355 XCATEGORY_SET (category_set)->data[idx] &= ~bits; | |
356 else | |
357 XCATEGORY_SET (category_set)->data[idx] |= bits; | |
358 } while (0); | |
359 } | |
360 | |
361 DEFUN ("modify-category-entry", Fmodify_category_entry, | |
362 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
|
363 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
|
364 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
|
365 the current buffer's category table. |
6bd578d2b8af
(Fmodify_category_entry): Doc fix. Remove unused
Dave Love <fx@gnu.org>
parents:
88359
diff
changeset
|
366 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
|
367 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
|
368 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
|
369 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
|
370 (character, category, table, reset) |
20825
1b98a0ab1bee
(Fmodify_category_entry): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
20612
diff
changeset
|
371 Lisp_Object character, category, table, reset; |
17052 | 372 { |
373 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
|
374 Lisp_Object category_set; |
88359 | 375 int start, end; |
376 int from, to; | |
17052 | 377 |
88359 | 378 if (INTEGERP (character)) |
379 { | |
380 CHECK_CHARACTER (character); | |
381 start = end = XFASTINT (character); | |
382 } | |
383 else | |
384 { | |
385 CHECK_CONS (character); | |
89483 | 386 CHECK_CHARACTER_CAR (character); |
387 CHECK_CHARACTER_CDR (character); | |
88359 | 388 start = XFASTINT (XCAR (character)); |
389 end = XFASTINT (XCDR (character)); | |
390 } | |
391 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
392 CHECK_CATEGORY (category); |
17052 | 393 table = check_category_table (table); |
394 | |
395 if (NILP (CATEGORY_DOCSTRING (table, XFASTINT (category)))) | |
396 error ("Undefined category: %c", XFASTINT (category)); | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
397 |
17052 | 398 set_value = NILP (reset) ? Qt : Qnil; |
399 | |
88359 | 400 while (start <= end) |
17052 | 401 { |
99975
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
402 from = start, to = end; |
88359 | 403 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
|
404 if (CATEGORY_MEMBER (XFASTINT (category), category_set) != NILP (reset)) |
88359 | 405 { |
88741
a93a8b796b91
(Fmodify_category_entry): Don't modify the contents
Kenichi Handa <handa@m17n.org>
parents:
88622
diff
changeset
|
406 category_set = Fcopy_sequence (category_set); |
a93a8b796b91
(Fmodify_category_entry): Don't modify the contents
Kenichi Handa <handa@m17n.org>
parents:
88622
diff
changeset
|
407 SET_CATEGORY_SET (category_set, category, set_value); |
99975
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
408 category_set = hash_get_category_set (table, category_set); |
dddfb4772d33
(hash_get_category_set): New function.
Kenichi Handa <handa@m17n.org>
parents:
99197
diff
changeset
|
409 char_table_set_range (table, start, to, category_set); |
88359 | 410 } |
411 start = to + 1; | |
17052 | 412 } |
413 | |
414 return Qnil; | |
415 } | |
416 | |
417 /* Return 1 if there is a word boundary between two word-constituent | |
418 characters C1 and C2 if they appear in this order, else return 0. | |
419 Use the macro WORD_BOUNDARY_P instead of calling this function | |
420 directly. */ | |
421 | |
422 int | |
423 word_boundary_p (c1, c2) | |
424 int c1, c2; | |
425 { | |
426 Lisp_Object category_set1, category_set2; | |
427 Lisp_Object tail; | |
428 int default_result; | |
429 | |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
430 if (EQ (CHAR_TABLE_REF (Vchar_script_table, c1), |
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
431 CHAR_TABLE_REF (Vchar_script_table, c2))) |
17052 | 432 { |
433 tail = Vword_separating_categories; | |
434 default_result = 0; | |
435 } | |
436 else | |
437 { | |
438 tail = Vword_combining_categories; | |
439 default_result = 1; | |
440 } | |
441 | |
442 category_set1 = CATEGORY_SET (c1); | |
443 if (NILP (category_set1)) | |
444 return default_result; | |
445 category_set2 = CATEGORY_SET (c2); | |
446 if (NILP (category_set2)) | |
447 return default_result; | |
448 | |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
23755
diff
changeset
|
449 for (; CONSP (tail); tail = XCDR (tail)) |
17052 | 450 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
23755
diff
changeset
|
451 Lisp_Object elt = XCAR (tail); |
17052 | 452 |
453 if (CONSP (elt) | |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
454 && (NILP (XCAR (elt)) |
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
455 || (CATEGORYP (XCAR (elt)) |
105983
0bc34ff12a2d
(word_boundary_p): Adjusted for the change of the
Kenichi Handa <handa@m17n.org>
parents:
105877
diff
changeset
|
456 && CATEGORY_MEMBER (XFASTINT (XCAR (elt)), category_set1) |
0bc34ff12a2d
(word_boundary_p): Adjusted for the change of the
Kenichi Handa <handa@m17n.org>
parents:
105877
diff
changeset
|
457 && ! CATEGORY_MEMBER (XFASTINT (XCAR (elt)), category_set2))) |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
458 && (NILP (XCDR (elt)) |
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
459 || (CATEGORYP (XCDR (elt)) |
105983
0bc34ff12a2d
(word_boundary_p): Adjusted for the change of the
Kenichi Handa <handa@m17n.org>
parents:
105877
diff
changeset
|
460 && ! CATEGORY_MEMBER (XFASTINT (XCDR (elt)), category_set1) |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
461 && CATEGORY_MEMBER (XFASTINT (XCDR (elt)), category_set2)))) |
17052 | 462 return !default_result; |
463 } | |
464 return default_result; | |
465 } | |
466 | |
467 | |
21514 | 468 void |
17052 | 469 init_category_once () |
470 { | |
471 /* This has to be done here, before we call Fmake_char_table. */ | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105744
diff
changeset
|
472 Qcategory_table = intern_c_string ("category-table"); |
17052 | 473 staticpro (&Qcategory_table); |
474 | |
475 /* Intern this now in case it isn't already done. | |
476 Setting this variable twice is harmless. | |
477 But don't staticpro it here--that is done in alloc.c. */ | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105744
diff
changeset
|
478 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots"); |
17052 | 479 |
480 /* Now we are ready to set up this property, so we can | |
481 create category tables. */ | |
482 Fput (Qcategory_table, Qchar_table_extra_slots, make_number (2)); | |
483 | |
484 Vstandard_category_table = Fmake_char_table (Qcategory_table, Qnil); | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
485 /* Set a category set which contains nothing to the default. */ |
17052 | 486 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
|
487 Fset_char_table_extra_slot (Vstandard_category_table, make_number (0), |
17052 | 488 Fmake_vector (make_number (95), Qnil)); |
489 } | |
490 | |
21514 | 491 void |
17052 | 492 syms_of_category () |
493 { | |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105744
diff
changeset
|
494 Qcategoryp = intern_c_string ("categoryp"); |
17052 | 495 staticpro (&Qcategoryp); |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105744
diff
changeset
|
496 Qcategorysetp = intern_c_string ("categorysetp"); |
17052 | 497 staticpro (&Qcategorysetp); |
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105744
diff
changeset
|
498 Qcategory_table_p = intern_c_string ("category-table-p"); |
17052 | 499 staticpro (&Qcategory_table_p); |
500 | |
501 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
|
502 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
|
503 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
504 Emacs treats a sequence of word constituent characters as a single |
78501 | 505 word (i.e. finds no word boundary between them) only if they belong to |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
506 the same script. But, exceptions are allowed in the following cases. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
507 |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
508 \(1) The case that characters are in different scripts is controlled |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
509 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
|
510 |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
511 Emacs finds no word boundary between characters of different scripts |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
512 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
|
513 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
514 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
|
515 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
|
516 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
|
517 |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
518 For instance, to tell that Han characters followed by Hiragana |
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
519 characters can form a single word, the element `(?C . ?H)' should be |
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
520 in this list. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
521 |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
522 \(2) The case that character are in the same script is controlled by |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
523 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
|
524 |
99197
7548cef42245
(syms_of_category): Fix typo in docstring.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
99117
diff
changeset
|
525 Emacs finds a word boundary between characters of the same script |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
526 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
|
527 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
528 More precisely, if an element of this list is a cons of category CAT1 |
105983
0bc34ff12a2d
(word_boundary_p): Adjusted for the change of the
Kenichi Handa <handa@m17n.org>
parents:
105877
diff
changeset
|
529 and CAT2, and a multibyte character C1 which has CAT1 but not CAT2 is |
0bc34ff12a2d
(word_boundary_p): Adjusted for the change of the
Kenichi Handa <handa@m17n.org>
parents:
105877
diff
changeset
|
530 followed by C2 which has CAT2 but not CAT1, there's a word boundary |
0bc34ff12a2d
(word_boundary_p): Adjusted for the change of the
Kenichi Handa <handa@m17n.org>
parents:
105877
diff
changeset
|
531 between C1 and C2. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
532 |
99016
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
533 For instance, to tell that there's a word boundary between Hiragana |
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
534 and Katakana (both are in the same script `kana'), |
3092df1e1b8a
(word_boundary_p): Check scripts instead of charset.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
535 the element `(?H . ?K) should be in this list. */); |
17052 | 536 |
537 Vword_combining_categories = Qnil; | |
538 | |
539 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
|
540 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
|
541 See the documentation of the variable `word-combining-categories'. */); |
17052 | 542 |
543 Vword_separating_categories = Qnil; | |
544 | |
545 defsubr (&Smake_category_set); | |
546 defsubr (&Sdefine_category); | |
547 defsubr (&Scategory_docstring); | |
548 defsubr (&Sget_unused_category); | |
549 defsubr (&Scategory_table_p); | |
550 defsubr (&Scategory_table); | |
551 defsubr (&Sstandard_category_table); | |
552 defsubr (&Scopy_category_table); | |
26841
dfead1ef574c
(word_boundary_p): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
25835
diff
changeset
|
553 defsubr (&Smake_category_table); |
17052 | 554 defsubr (&Sset_category_table); |
555 defsubr (&Schar_category_set); | |
556 defsubr (&Scategory_set_mnemonics); | |
557 defsubr (&Smodify_category_entry); | |
558 | |
559 category_table_version = 0; | |
560 } | |
52401 | 561 |
562 /* arch-tag: 74ebf524-121b-4d9c-bd68-07f8d708b211 | |
563 (do not change this comment) */ |