annotate src/chartab.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 6719134a07c2
children 2f8bb876ab1d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
1 /* Declarations having to do with Mule char tables.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
2 Copyright (C) 1992 Free Software Foundation, Inc.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
3 Copyright (C) 1995 Sun Microsystems, Inc.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
4
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
5 This file is part of XEmacs.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
6
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
10 later version.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
11
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
15 for more details.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
16
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
21
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
22 /* Synched up with: Mule 2.3. Not synched with FSF.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
23
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
24 This file was written independently of the FSF implementation,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
25 and is not compatible. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
26
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
27 #ifndef INCLUDED_chartab_h_
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
28 #define INCLUDED_chartab_h_
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
29
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
30 /************************************************************************/
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
31 /* Char Tables */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
32 /************************************************************************/
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
33
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
34 /* Under Mule, we use a complex representation (see below).
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
35 When not under Mule, there are only 256 possible characters
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
36 so we just represent them directly. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
37
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
38 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
39
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
40 struct Lisp_Char_Table_Entry
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
41 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
42 struct lcrecord_header header;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
43
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
44 /* In the interests of simplicity, we just use a fixed 96-entry
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
45 table. If we felt like being smarter, we could make this
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
46 variable-size and add an offset value into this structure. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
47 Lisp_Object level2[96];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
48 };
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
49 typedef struct Lisp_Char_Table_Entry Lisp_Char_Table_Entry;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
50
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
51 DECLARE_LRECORD (char_table_entry, Lisp_Char_Table_Entry);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
52 #define XCHAR_TABLE_ENTRY(x) \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
53 XRECORD (x, char_table_entry, Lisp_Char_Table_Entry)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
54 #define XSETCHAR_TABLE_ENTRY(x, p) XSETRECORD (x, p, char_table_entry)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
55 #define CHAR_TABLE_ENTRYP(x) RECORDP (x, char_table_entry)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
56 /* #define CHECK_CHAR_TABLE_ENTRY(x) CHECK_RECORD (x, char_table_entry)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
57 char table entries should never escape to Lisp */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
58
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
59 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
60
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
61 enum char_table_type
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
62 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
63 CHAR_TABLE_TYPE_GENERIC,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
64 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
65 CHAR_TABLE_TYPE_CATEGORY,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
66 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
67 CHAR_TABLE_TYPE_SYNTAX,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
68 CHAR_TABLE_TYPE_DISPLAY,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
69 CHAR_TABLE_TYPE_CHAR
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
70 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
71
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
72 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
73 #define NUM_ASCII_CHARS 160
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
74 #else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
75 #define NUM_ASCII_CHARS 256
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
76 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
77
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
78 struct Lisp_Char_Table
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
79 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
80 struct lcrecord_header header;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
81
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
82 Lisp_Object ascii[NUM_ASCII_CHARS];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
83
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
84 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
85 /* We basically duplicate the Mule vectors-of-vectors implementation.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
86 We can do this because we know a great deal about the sorts of
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
87 things we are going to be indexing.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
88
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
89 The current implementation is as follows:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
90
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
91 ascii[0-159] is used for ASCII and Control-1 characters.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
92
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
93 level1[0 .. (NUM_LEADING_BYTES-1)] indexes charsets by leading
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
94 byte (subtract MIN_LEADING_BYTE from the leading byte). If the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
95 value of this is not an opaque, then it specifies a value for all
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
96 characters in the charset. Otherwise, it will be a
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
97 96-Lisp-Object opaque that we created, specifying a value for
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
98 each row. If the value of this is not an opaque, then it
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
99 specifies a value for all characters in the row. Otherwise, it
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
100 will be a 96-Lisp-Object opaque that we created, specifying a
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
101 value for each character.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
102
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
103 NOTE: 1) This will fail if some C routine passes an opaque to
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
104 Fput_char_table(). Currently this is not a problem
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
105 since all char tables that are created are Lisp-visible
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
106 and thus no one should ever be putting an opaque in
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
107 a char table. Another possibility is to consider
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
108 adding a type to */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
109
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
110 Lisp_Object level1[NUM_LEADING_BYTES];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
111
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
112 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
113
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
114 enum char_table_type type;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
115
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
116 /* stuff used for syntax tables */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
117 Lisp_Object mirror_table;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
118 Lisp_Object next_table; /* DO NOT mark through this. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
119 };
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
120 typedef struct Lisp_Char_Table Lisp_Char_Table;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
121
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
122 DECLARE_LRECORD (char_table, Lisp_Char_Table);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
123 #define XCHAR_TABLE(x) XRECORD (x, char_table, Lisp_Char_Table)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
124 #define XSETCHAR_TABLE(x, p) XSETRECORD (x, p, char_table)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
125 #define CHAR_TABLEP(x) RECORDP (x, char_table)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
126 #define CHECK_CHAR_TABLE(x) CHECK_RECORD (x, char_table)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
127 #define CONCHECK_CHAR_TABLE(x) CONCHECK_RECORD (x, char_table)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
128
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
129 #define CHAR_TABLE_TYPE(ct) ((ct)->type)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
130 #define XCHAR_TABLE_TYPE(ct) CHAR_TABLE_TYPE (XCHAR_TABLE (ct))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
131
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
132 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
133
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
134 Lisp_Object get_non_ascii_char_table_value (Lisp_Char_Table *ct,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
135 int leading_byte,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
136 Emchar c);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
137
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 110
diff changeset
138 INLINE Lisp_Object
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
139 CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (Lisp_Char_Table *ct, Emchar ch);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
140 INLINE Lisp_Object
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
141 CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (Lisp_Char_Table *ct, Emchar ch)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
142 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
143 unsigned char lb = CHAR_LEADING_BYTE (ch);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
144 if (!CHAR_TABLE_ENTRYP ((ct)->level1[lb - MIN_LEADING_BYTE]))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
145 return (ct)->level1[lb - MIN_LEADING_BYTE];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
146 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
147 return get_non_ascii_char_table_value (ct, lb, ch);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
148 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
149
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
150 #define CHAR_TABLE_VALUE_UNSAFE(ct, ch) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
151 ((ch) < NUM_ASCII_CHARS \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
152 ? (ct)->ascii[ch] \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
153 : CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (ct, ch))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
154
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
155 #else /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
156
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
157 #define CHAR_TABLE_VALUE_UNSAFE(ct, ch) ((ct)->ascii[(unsigned char) (ch)])
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
158
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
159 #endif /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
160
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
161 enum chartab_range_type
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
162 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
163 CHARTAB_RANGE_ALL,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
164 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
165 CHARTAB_RANGE_CHARSET,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
166 CHARTAB_RANGE_ROW,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
167 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
168 CHARTAB_RANGE_CHAR
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
169 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
170
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
171 struct chartab_range
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
172 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
173 enum chartab_range_type type;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
174 Emchar ch;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
175 Lisp_Object charset;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
176 int row;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
177 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
178
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
179 void fill_char_table (Lisp_Char_Table *ct, Lisp_Object value);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
180 void put_char_table (Lisp_Char_Table *ct, struct chartab_range *range,
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
181 Lisp_Object val);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
182 Lisp_Object get_char_table (Emchar, Lisp_Char_Table *);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
183 int map_char_table (Lisp_Char_Table *ct,
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
184 struct chartab_range *range,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
185 int (*fn) (struct chartab_range *range,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
186 Lisp_Object val, void *arg),
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
187 void *arg);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
188 void prune_syntax_tables (void);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
189
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
190 EXFUN (Fcopy_char_table, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
191 EXFUN (Fmake_char_table, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
192 EXFUN (Fput_char_table, 3);
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 377
diff changeset
193 EXFUN (Fget_char_table, 2);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
194
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
195 extern Lisp_Object Vall_syntax_tables;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
196
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
197
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
198
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
199 #ifdef MULE
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 104
diff changeset
200 int check_category_char(Emchar ch, Lisp_Object ctbl,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 104
diff changeset
201 unsigned int designator, unsigned int not);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
202
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
203 extern Lisp_Object Vstandard_category_table;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
204
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
205 #define CATEGORY_DESIGNATORP(x) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
206 (CHARP (x) && XCHAR (x) >= 32 && XCHAR (x) <= 126)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
207
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
208 #define CHECK_CATEGORY_DESIGNATOR(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
209 if (!CATEGORY_DESIGNATORP (x)) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
210 dead_wrong_type_argument (Qcategory_designator_p, x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
211 } while (0)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
212
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
213 #define CONCHECK_CATEGORY_DESIGNATOR(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
214 if (!CATEGORY_DESIGNATORP (x)) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
215 x = wrong_type_argument (Qcategory_designator_p, x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
216 } while (0)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
217
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
218 #define CATEGORY_TABLE_VALUEP(x) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
219 (NILP (x) || (BIT_VECTORP (x) && (bit_vector_length (XBIT_VECTOR (x)) == 95)))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
220
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
221 #define CHECK_CATEGORY_TABLE_VALUE(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
222 if (!CATEGORY_TABLE_VALUEP (x)) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
223 dead_wrong_type_argument (Qcategory_table_value_p, x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
224 } while (0)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
225
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
226 #define CONCHECK_CATEGORY_TABLE_VALUE(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
227 if (!CATEGORY_TABLE_VALUEP (x)) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
228 x = wrong_type_argument (Qcategory_table_value_p, x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
229 } while (0)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
230
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
231 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
232
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
233 #endif /* INCLUDED_chartab_h_ */