remove `declare' macro
[bpt/emacs.git] / src / category.c
CommitLineData
4ed46869 1/* GNU Emacs routines to deal with category tables.
95df8112 2
ba318903 3Copyright (C) 1998, 2001-2014 Free Software Foundation, Inc.
95df8112
GM
4Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008, 2009, 2010, 2011
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H14PRO021
8Copyright (C) 2003
9 National Institute of Advanced Industrial Science and Technology (AIST)
10 Registration Number H13PRO009
4ed46869
KH
11
12This file is part of GNU Emacs.
13
9ec0b715 14GNU Emacs is free software: you can redistribute it and/or modify
4ed46869 15it under the terms of the GNU General Public License as published by
9ec0b715
GM
16the Free Software Foundation, either version 3 of the License, or
17(at your option) any later version.
4ed46869
KH
18
19GNU Emacs is distributed in the hope that it will be useful,
20but WITHOUT ANY WARRANTY; without even the implied warranty of
21MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22GNU General Public License for more details.
23
24You should have received a copy of the GNU General Public License
9ec0b715 25along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
4ed46869
KH
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>
f162bcc3 32
4ed46869 33#include "lisp.h"
ea012abd 34#include "character.h"
e5560ff7 35#include "buffer.h"
4ed46869
KH
36#include "charset.h"
37#include "category.h"
e35f6ff7 38#include "keymap.h"
4ed46869 39
39eb03f1 40/* This setter is used only in this file, so it can be private. */
b0ab8123 41static void
39eb03f1
PE
42bset_category_table (struct buffer *b, Lisp_Object val)
43{
44 b->INTERNAL_FIELD (category_table) = val;
45}
46
4ed46869
KH
47/* The version number of the latest category table. Each category
48 table has a unique version number. It is assigned a new number
49 also when it is modified. When a regular expression is compiled
50 into the struct re_pattern_buffer, the version number of the
51 category table (of the current buffer) at that moment is also
52 embedded in the structure.
53
54 For the moment, we are not using this feature. */
55static int category_table_version;
56
955cbe7b 57static Lisp_Object Qcategory_table, Qcategoryp, Qcategorysetp, Qcategory_table_p;
4ed46869
KH
58\f
59/* Category set staff. */
60
cd486875 61static Lisp_Object
971de7fb 62hash_get_category_set (Lisp_Object table, Lisp_Object category_set)
cd486875 63{
cd486875 64 struct Lisp_Hash_Table *h;
d3411f89 65 ptrdiff_t i;
0de4bb68 66 EMACS_UINT hash;
cd486875
KH
67
68 if (NILP (XCHAR_TABLE (table)->extras[1]))
34dabdb7 69 set_char_table_extras
a098c930 70 (table, 1,
b7432bb2 71 make_hash_table (hashtest_equal, make_number (DEFAULT_HASH_SIZE),
a098c930
DA
72 make_float (DEFAULT_REHASH_SIZE),
73 make_float (DEFAULT_REHASH_THRESHOLD),
b7432bb2 74 Qnil));
cd486875
KH
75 h = XHASH_TABLE (XCHAR_TABLE (table)->extras[1]);
76 i = hash_lookup (h, category_set, &hash);
77 if (i >= 0)
78 return HASH_KEY (h, i);
79 hash_put (h, category_set, Qnil, hash);
80 return category_set;
81}
82
df5b4930
PE
83/* Make CATEGORY_SET include (if VAL) or exclude (if !VAL) CATEGORY. */
84
85static void
86set_category_set (Lisp_Object category_set, EMACS_INT category, bool val)
87{
88 bool_vector_set (category_set, category, val);
89}
cd486875 90
4ed46869 91DEFUN ("make-category-set", Fmake_category_set, Smake_category_set, 1, 1, 0,
fdb82f93
PJ
92 doc: /* Return a newly created category-set which contains CATEGORIES.
93CATEGORIES is a string of category mnemonics.
94The value is a bool-vector which has t at the indices corresponding to
95those categories. */)
5842a27b 96 (Lisp_Object categories)
4ed46869
KH
97{
98 Lisp_Object val;
99 int len;
100
b7826503 101 CHECK_STRING (categories);
4ed46869
KH
102 val = MAKE_CATEGORY_SET;
103
115afec3 104 if (STRING_MULTIBYTE (categories))
95030461 105 error ("Multibyte string in `make-category-set'");
115afec3 106
d5db4077 107 len = SCHARS (categories);
4ed46869
KH
108 while (--len >= 0)
109 {
df5b4930
PE
110 unsigned char cat = SREF (categories, len);
111 Lisp_Object category = make_number (cat);
4ed46869 112
b7826503 113 CHECK_CATEGORY (category);
df5b4930 114 set_category_set (val, cat, 1);
4ed46869
KH
115 }
116 return val;
117}
118
119\f
120/* Category staff. */
121
d85b608f 122static Lisp_Object check_category_table (Lisp_Object table);
4ed46869
KH
123
124DEFUN ("define-category", Fdefine_category, Sdefine_category, 2, 3, 0,
839966f3
KH
125 doc: /* Define CATEGORY as a category which is described by DOCSTRING.
126CATEGORY should be an ASCII printing character in the range ` ' to `~'.
f6d2f045
KH
127DOCSTRING is the documentation string of the category. The first line
128should be a terse text (preferably less than 16 characters),
129and the rest lines should be the full description.
fdb82f93 130The category is defined only in category table TABLE, which defaults to
839966f3 131the current buffer's category table. */)
5842a27b 132 (Lisp_Object category, Lisp_Object docstring, Lisp_Object table)
4ed46869 133{
b7826503
PJ
134 CHECK_CATEGORY (category);
135 CHECK_STRING (docstring);
4ed46869
KH
136 table = check_category_table (table);
137
138 if (!NILP (CATEGORY_DOCSTRING (table, XFASTINT (category))))
5fdb398c 139 error ("Category `%c' is already defined", (int) XFASTINT (category));
905a9ed3
DN
140 if (!NILP (Vpurify_flag))
141 docstring = Fpurecopy (docstring);
f1a95992 142 SET_CATEGORY_DOCSTRING (table, XFASTINT (category), docstring);
4ed46869
KH
143
144 return Qnil;
145}
146
147DEFUN ("category-docstring", Fcategory_docstring, Scategory_docstring, 1, 2, 0,
839966f3
KH
148 doc: /* Return the documentation string of CATEGORY, as defined in TABLE.
149TABLE should be a category table and defaults to the current buffer's
150category table. */)
5842a27b 151 (Lisp_Object category, Lisp_Object table)
4ed46869 152{
b7826503 153 CHECK_CATEGORY (category);
4ed46869
KH
154 table = check_category_table (table);
155
156 return CATEGORY_DOCSTRING (table, XFASTINT (category));
157}
158
159DEFUN ("get-unused-category", Fget_unused_category, Sget_unused_category,
160 0, 1, 0,
839966f3 161 doc: /* Return a category which is not yet defined in TABLE.
0b6694a5 162If no category remains available, return nil.
839966f3 163The optional argument TABLE specifies which category table to modify;
0b6694a5 164it defaults to the current buffer's category table. */)
5842a27b 165 (Lisp_Object table)
4ed46869
KH
166{
167 int i;
4ed46869
KH
168
169 table = check_category_table (table);
170
171 for (i = ' '; i <= '~'; i++)
172 if (NILP (CATEGORY_DOCSTRING (table, i)))
173 return make_number (i);
174
175 return Qnil;
176}
177
178\f
179/* Category-table staff. */
180
181DEFUN ("category-table-p", Fcategory_table_p, Scategory_table_p, 1, 1, 0,
fdb82f93 182 doc: /* Return t if ARG is a category table. */)
5842a27b 183 (Lisp_Object arg)
4ed46869
KH
184{
185 if (CHAR_TABLE_P (arg)
ed8ec86d 186 && EQ (XCHAR_TABLE (arg)->purpose, Qcategory_table))
4ed46869
KH
187 return Qt;
188 return Qnil;
189}
190
191/* If TABLE is nil, return the current category table. If TABLE is
192 not nil, check the validity of TABLE as a category table. If
193 valid, return TABLE itself, but if not valid, signal an error of
194 wrong-type-argument. */
195
d85b608f 196static Lisp_Object
971de7fb 197check_category_table (Lisp_Object table)
4ed46869 198{
4ed46869 199 if (NILP (table))
4b4deea2 200 return BVAR (current_buffer, category_table);
88674269 201 CHECK_TYPE (!NILP (Fcategory_table_p (table)), Qcategory_table_p, table);
4ed46869 202 return table;
177c0ea7 203}
4ed46869
KH
204
205DEFUN ("category-table", Fcategory_table, Scategory_table, 0, 0, 0,
fdb82f93
PJ
206 doc: /* Return the current category table.
207This is the one specified by the current buffer. */)
5842a27b 208 (void)
4ed46869 209{
4b4deea2 210 return BVAR (current_buffer, category_table);
4ed46869
KH
211}
212
213DEFUN ("standard-category-table", Fstandard_category_table,
214 Sstandard_category_table, 0, 0, 0,
fdb82f93
PJ
215 doc: /* Return the standard category table.
216This is the one used for new buffers. */)
5842a27b 217 (void)
4ed46869
KH
218{
219 return Vstandard_category_table;
220}
221
ea012abd
KH
222
223static void
971de7fb 224copy_category_entry (Lisp_Object table, Lisp_Object c, Lisp_Object val)
ea012abd 225{
f4b670ef 226 val = Fcopy_sequence (val);
8f924df7
KH
227 if (CONSP (c))
228 char_table_set_range (table, XINT (XCAR (c)), XINT (XCDR (c)), val);
f4b670ef 229 else
8f924df7 230 char_table_set (table, XINT (c), val);
ea012abd
KH
231}
232
4ed46869
KH
233/* Return a copy of category table TABLE. We can't simply use the
234 function copy-sequence because no contents should be shared between
ed8ec86d 235 the original and the copy. This function is called recursively by
9da95d53 236 binding TABLE to a sub char table. */
4ed46869 237
9f3b5e69 238static Lisp_Object
971de7fb 239copy_category_table (Lisp_Object table)
4ed46869 240{
ea012abd 241 table = copy_char_table (table);
4ed46869 242
ea012abd 243 if (! NILP (XCHAR_TABLE (table)->defalt))
742af32f
PE
244 set_char_table_defalt (table,
245 Fcopy_sequence (XCHAR_TABLE (table)->defalt));
34dabdb7 246 set_char_table_extras
a098c930 247 (table, 0, Fcopy_sequence (XCHAR_TABLE (table)->extras[0]));
8f924df7 248 map_char_table (copy_category_entry, Qnil, table, table);
ed8ec86d 249
4ed46869
KH
250 return table;
251}
252
253DEFUN ("copy-category-table", Fcopy_category_table, Scopy_category_table,
254 0, 1, 0,
fdb82f93
PJ
255 doc: /* Construct a new category table and return it.
256It is a copy of the TABLE, which defaults to the standard category table. */)
5842a27b 257 (Lisp_Object table)
4ed46869
KH
258{
259 if (!NILP (table))
260 check_category_table (table);
261 else
262 table = Vstandard_category_table;
263
9da95d53 264 return copy_category_table (table);
4ed46869
KH
265}
266
70414a3d
KH
267DEFUN ("make-category-table", Fmake_category_table, Smake_category_table,
268 0, 0, 0,
fdb82f93 269 doc: /* Construct a new and empty category table and return it. */)
5842a27b 270 (void)
70414a3d
KH
271{
272 Lisp_Object val;
ea012abd 273 int i;
70414a3d
KH
274
275 val = Fmake_char_table (Qcategory_table, Qnil);
742af32f 276 set_char_table_defalt (val, MAKE_CATEGORY_SET);
8f924df7 277 for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++)
34dabdb7 278 set_char_table_contents (val, i, MAKE_CATEGORY_SET);
70414a3d
KH
279 Fset_char_table_extra_slot (val, make_number (0),
280 Fmake_vector (make_number (95), Qnil));
281 return val;
282}
283
4ed46869 284DEFUN ("set-category-table", Fset_category_table, Sset_category_table, 1, 1, 0,
839966f3
KH
285 doc: /* Specify TABLE as the category table for the current buffer.
286Return TABLE. */)
5842a27b 287 (Lisp_Object table)
4ed46869 288{
6f598a6d 289 int idx;
4ed46869 290 table = check_category_table (table);
39eb03f1 291 bset_category_table (current_buffer, table);
4ed46869 292 /* Indicate that this buffer now has a specified category table. */
f6cd0527
GM
293 idx = PER_BUFFER_VAR_IDX (category_table);
294 SET_PER_BUFFER_VALUE_P (current_buffer, idx, 1);
4ed46869
KH
295 return table;
296}
297
298\f
ea012abd 299Lisp_Object
971de7fb 300char_category_set (int c)
ea012abd 301{
4b4deea2 302 return CHAR_TABLE_REF (BVAR (current_buffer, category_table), c);
ea012abd
KH
303}
304
4ed46869 305DEFUN ("char-category-set", Fchar_category_set, Schar_category_set, 1, 1, 0,
a2c2f196
JB
306 doc: /* Return the category set of CHAR.
307usage: (char-category-set CHAR) */)
5842a27b 308 (Lisp_Object ch)
4ed46869 309{
d311d28c 310 CHECK_CHARACTER (ch);
4ed46869
KH
311 return CATEGORY_SET (XFASTINT (ch));
312}
313
314DEFUN ("category-set-mnemonics", Fcategory_set_mnemonics,
315 Scategory_set_mnemonics, 1, 1, 0,
fdb82f93
PJ
316 doc: /* Return a string containing mnemonics of the categories in CATEGORY-SET.
317CATEGORY-SET is a bool-vector, and the categories \"in\" it are those
839966f3 318that are indexes where t occurs in the bool-vector.
fdb82f93 319The return value is a string containing those same categories. */)
5842a27b 320 (Lisp_Object category_set)
4ed46869
KH
321{
322 int i, j;
323 char str[96];
324
b7826503 325 CHECK_CATEGORY_SET (category_set);
4ed46869
KH
326
327 j = 0;
328 for (i = 32; i < 127; i++)
329 if (CATEGORY_MEMBER (i, category_set))
330 str[j++] = i;
331 str[j] = '\0';
332
333 return build_string (str);
334}
335
4ed46869
KH
336DEFUN ("modify-category-entry", Fmodify_category_entry,
337 Smodify_category_entry, 2, 4, 0,
fdb82f93
PJ
338 doc: /* Modify the category set of CHARACTER by adding CATEGORY to it.
339The category is changed only for table TABLE, which defaults to
8f7e5042
DL
340the current buffer's category table.
341CHARACTER can be either a single character or a cons representing the
342lower and upper ends of an inclusive character range to modify.
fdb82f93
PJ
343If optional fourth argument RESET is non-nil,
344then delete CATEGORY from the category set instead of adding it. */)
5842a27b 345 (Lisp_Object character, Lisp_Object category, Lisp_Object table, Lisp_Object reset)
4ed46869 346{
df5b4930 347 bool set_value; /* Actual value to be set in category sets. */
8f7e5042 348 Lisp_Object category_set;
ea012abd
KH
349 int start, end;
350 int from, to;
4ed46869 351
ea012abd 352 if (INTEGERP (character))
4ed46869 353 {
ea012abd
KH
354 CHECK_CHARACTER (character);
355 start = end = XFASTINT (character);
4ed46869 356 }
ea012abd 357 else
4ed46869 358 {
ea012abd 359 CHECK_CONS (character);
8f924df7
KH
360 CHECK_CHARACTER_CAR (character);
361 CHECK_CHARACTER_CDR (character);
ea012abd
KH
362 start = XFASTINT (XCAR (character));
363 end = XFASTINT (XCDR (character));
4ed46869 364 }
4ed46869 365
b7826503 366 CHECK_CATEGORY (category);
4ed46869 367 table = check_category_table (table);
4ed46869 368
4ed46869 369 if (NILP (CATEGORY_DOCSTRING (table, XFASTINT (category))))
5fdb398c 370 error ("Undefined category: %c", (int) XFASTINT (category));
4ed46869 371
df5b4930 372 set_value = NILP (reset);
4ed46869 373
ea012abd 374 while (start <= end)
4ed46869 375 {
cd486875 376 from = start, to = end;
ea012abd 377 category_set = char_table_ref_and_range (table, start, &from, &to);
0b261f59 378 if (CATEGORY_MEMBER (XFASTINT (category), category_set) != NILP (reset))
ea012abd 379 {
d8887a31 380 category_set = Fcopy_sequence (category_set);
df5b4930 381 set_category_set (category_set, XFASTINT (category), set_value);
cd486875
KH
382 category_set = hash_get_category_set (table, category_set);
383 char_table_set_range (table, start, to, category_set);
ea012abd 384 }
ea012abd 385 start = to + 1;
4ed46869 386 }
4ed46869
KH
387
388 return Qnil;
389}
390\f
17c05d74
PE
391/* Return true if there is a word boundary between two word-constituent
392 characters C1 and C2 if they appear in this order.
4ed46869
KH
393 Use the macro WORD_BOUNDARY_P instead of calling this function
394 directly. */
395
17c05d74 396bool
971de7fb 397word_boundary_p (int c1, int c2)
4ed46869
KH
398{
399 Lisp_Object category_set1, category_set2;
400 Lisp_Object tail;
17c05d74 401 bool default_result;
4ed46869 402
714b2198
KH
403 if (EQ (CHAR_TABLE_REF (Vchar_script_table, c1),
404 CHAR_TABLE_REF (Vchar_script_table, c2)))
4ed46869
KH
405 {
406 tail = Vword_separating_categories;
407 default_result = 0;
408 }
409 else
410 {
411 tail = Vword_combining_categories;
412 default_result = 1;
413 }
414
415 category_set1 = CATEGORY_SET (c1);
416 if (NILP (category_set1))
417 return default_result;
418 category_set2 = CATEGORY_SET (c2);
419 if (NILP (category_set2))
420 return default_result;
421
03699b14 422 for (; CONSP (tail); tail = XCDR (tail))
4ed46869 423 {
03699b14 424 Lisp_Object elt = XCAR (tail);
4ed46869
KH
425
426 if (CONSP (elt)
714b2198
KH
427 && (NILP (XCAR (elt))
428 || (CATEGORYP (XCAR (elt))
8a605fe8
KH
429 && CATEGORY_MEMBER (XFASTINT (XCAR (elt)), category_set1)
430 && ! CATEGORY_MEMBER (XFASTINT (XCAR (elt)), category_set2)))
714b2198
KH
431 && (NILP (XCDR (elt))
432 || (CATEGORYP (XCDR (elt))
8a605fe8 433 && ! CATEGORY_MEMBER (XFASTINT (XCDR (elt)), category_set1)
714b2198 434 && CATEGORY_MEMBER (XFASTINT (XCDR (elt)), category_set2))))
4ed46869
KH
435 return !default_result;
436 }
437 return default_result;
438}
439
440\f
dfcf069d 441void
971de7fb 442init_category_once (void)
4ed46869
KH
443{
444 /* This has to be done here, before we call Fmake_char_table. */
cd3520a4 445 DEFSYM (Qcategory_table, "category-table");
4ed46869
KH
446 Fput (Qcategory_table, Qchar_table_extra_slots, make_number (2));
447
448 Vstandard_category_table = Fmake_char_table (Qcategory_table, Qnil);
177c0ea7 449 /* Set a category set which contains nothing to the default. */
742af32f 450 set_char_table_defalt (Vstandard_category_table, MAKE_CATEGORY_SET);
9da95d53 451 Fset_char_table_extra_slot (Vstandard_category_table, make_number (0),
4ed46869
KH
452 Fmake_vector (make_number (95), Qnil));
453}
454
dfcf069d 455void
971de7fb 456syms_of_category (void)
4ed46869 457{
fe6aa7a1
BT
458#include "category.x"
459
cd3520a4
JB
460 DEFSYM (Qcategoryp, "categoryp");
461 DEFSYM (Qcategorysetp, "categorysetp");
462 DEFSYM (Qcategory_table_p, "category-table-p");
4ed46869 463
29208e82 464 DEFVAR_LISP ("word-combining-categories", Vword_combining_categories,
fdb82f93
PJ
465 doc: /* List of pair (cons) of categories to determine word boundary.
466
467Emacs treats a sequence of word constituent characters as a single
e0f24100 468word (i.e. finds no word boundary between them) only if they belong to
714b2198 469the same script. But, exceptions are allowed in the following cases.
fdb82f93 470
714b2198 471\(1) The case that characters are in different scripts is controlled
fdb82f93
PJ
472by the variable `word-combining-categories'.
473
714b2198 474Emacs finds no word boundary between characters of different scripts
fdb82f93
PJ
475if they have categories matching some element of this list.
476
477More precisely, if an element of this list is a cons of category CAT1
478and CAT2, and a multibyte character C1 which has CAT1 is followed by
479C2 which has CAT2, there's no word boundary between C1 and C2.
480
714b2198
KH
481For instance, to tell that Han characters followed by Hiragana
482characters can form a single word, the element `(?C . ?H)' should be
483in this list.
fdb82f93 484
714b2198 485\(2) The case that character are in the same script is controlled by
fdb82f93
PJ
486the variable `word-separating-categories'.
487
ecdcaa09 488Emacs finds a word boundary between characters of the same script
fdb82f93
PJ
489if they have categories matching some element of this list.
490
491More precisely, if an element of this list is a cons of category CAT1
8a605fe8
KH
492and CAT2, and a multibyte character C1 which has CAT1 but not CAT2 is
493followed by C2 which has CAT2 but not CAT1, there's a word boundary
494between C1 and C2.
fdb82f93 495
714b2198
KH
496For instance, to tell that there's a word boundary between Hiragana
497and Katakana (both are in the same script `kana'),
498the element `(?H . ?K) should be in this list. */);
4ed46869
KH
499
500 Vword_combining_categories = Qnil;
501
29208e82 502 DEFVAR_LISP ("word-separating-categories", Vword_separating_categories,
fdb82f93
PJ
503 doc: /* List of pair (cons) of categories to determine word boundary.
504See the documentation of the variable `word-combining-categories'. */);
4ed46869
KH
505
506 Vword_separating_categories = Qnil;
507
4ed46869
KH
508 category_table_version = 0;
509}