annotate src/chartab.h @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents 697ef44129c6
children
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
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
27 #ifndef _MULE_CHARTAB_H
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
28 #define _MULE_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
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
40 DECLARE_LRECORD (char_table_entry, struct Lisp_Char_Table_Entry);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
41 #define XCHAR_TABLE_ENTRY(x) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
42 XRECORD (x, char_table_entry, struct Lisp_Char_Table_Entry)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
43 #define XSETCHAR_TABLE_ENTRY(x, p) XSETRECORD (x, p, char_table_entry)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
44 #define CHAR_TABLE_ENTRYP(x) RECORDP (x, char_table_entry)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
45 /* #define CHECK_CHAR_TABLE_ENTRY(x) CHECK_RECORD (x, char_table_entry)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
46 char table entries should never escape to Lisp */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
47
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
48 struct Lisp_Char_Table_Entry
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
49 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
50 struct lcrecord_header header;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
51
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
52 /* In the interests of simplicity, we just use a fixed 96-entry
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
53 table. If we felt like being smarter, we could make this
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
54 variable-size and add an offset value into this structure. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
55 Lisp_Object level2[96];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
56 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
57
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
58 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
59
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
60 DECLARE_LRECORD (char_table, struct Lisp_Char_Table);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
61 #define XCHAR_TABLE(x) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
62 XRECORD (x, char_table, struct Lisp_Char_Table)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
63 #define XSETCHAR_TABLE(x, p) XSETRECORD (x, p, char_table)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
64 #define CHAR_TABLEP(x) RECORDP (x, char_table)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
65 #define CHECK_CHAR_TABLE(x) CHECK_RECORD (x, char_table)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
66 #define CONCHECK_CHAR_TABLE(x) CONCHECK_RECORD (x, char_table)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
67
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
68 #define CHAR_TABLE_TYPE(ct) ((ct)->type)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
69 #define XCHAR_TABLE_TYPE(ct) CHAR_TABLE_TYPE (XCHAR_TABLE (ct))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
70
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
71 enum char_table_type
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
72 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
73 CHAR_TABLE_TYPE_GENERIC,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
74 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
75 CHAR_TABLE_TYPE_CATEGORY,
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 CHAR_TABLE_TYPE_SYNTAX,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
78 CHAR_TABLE_TYPE_DISPLAY,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
79 CHAR_TABLE_TYPE_CHAR
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
80 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
81
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
82 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
83 #define NUM_ASCII_CHARS 160
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
84 #else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
85 #define NUM_ASCII_CHARS 256
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
86 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
87
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
88 struct Lisp_Char_Table
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
89 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
90 struct lcrecord_header header;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
91
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
92 Lisp_Object ascii[NUM_ASCII_CHARS];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
93
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
94 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
95 /* We basically duplicate the Mule vectors-of-vectors implementation.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
96 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
97 things we are going to be indexing.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
98
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
99 The current implementation is as follows:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
100
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
101 ascii[0-159] is used for ASCII and Control-1 characters.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
102
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
103 level1[0 .. (NUM_LEADING_BYTES-1)] indexes charsets by leading
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
104 byte (subtract MIN_LEADING_BYTE from the leading byte). If the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
105 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
106 characters in the charset. Otherwise, it will be a
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
107 96-Lisp-Object opaque that we created, specifying a value for
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
108 each row. If the value of this is not an opaque, then it
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
109 specifies a value for all characters in the row. Otherwise, it
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
110 will be a 96-Lisp-Object opaque that we created, specifying a
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
111 value for each character.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
112
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
113 NOTE: 1) This will fail if some C routine passes an opaque to
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
114 Fput_char_table(). Currently this is not a problem
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
115 since all char tables that are created are Lisp-visible
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
116 and thus no one should ever be putting an opaque in
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
117 a char table. Another possibility is to consider
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
118 adding a type to */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
119
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
120 Lisp_Object level1[NUM_LEADING_BYTES];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
121
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
122 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
123
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
124 enum char_table_type type;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
125
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
126 /* stuff used for syntax tables */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
127 Lisp_Object mirror_table;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
128 Lisp_Object next_table; /* DO NOT mark through this. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
129 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
130
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
131 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
132
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
133 Lisp_Object get_non_ascii_char_table_value (struct Lisp_Char_Table *ct,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
134 int leading_byte,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
135 Emchar c);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
136
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
137 INLINE Lisp_Object
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
138 CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (struct Lisp_Char_Table *ct, Emchar ch);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
139 INLINE Lisp_Object
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
140 CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (struct Lisp_Char_Table *ct, Emchar ch)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
141 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
142 unsigned char lb = CHAR_LEADING_BYTE (ch);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
143 if (!CHAR_TABLE_ENTRYP ((ct)->level1[lb - MIN_LEADING_BYTE]))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
144 return (ct)->level1[lb - MIN_LEADING_BYTE];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
145 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
146 return get_non_ascii_char_table_value (ct, lb, ch);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
147 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
148
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
149 #define CHAR_TABLE_VALUE_UNSAFE(ct, ch) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
150 ((ch) < NUM_ASCII_CHARS \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
151 ? (ct)->ascii[ch] \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
152 : CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (ct, ch))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
153
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
154 #else /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
155
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
156 #define CHAR_TABLE_VALUE_UNSAFE(ct, ch) ((ct)->ascii[(unsigned char) (ch)])
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
157
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
158 #endif /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
159
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
160 enum chartab_range_type
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
161 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
162 CHARTAB_RANGE_ALL,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
163 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
164 CHARTAB_RANGE_CHARSET,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
165 CHARTAB_RANGE_ROW,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
166 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
167 CHARTAB_RANGE_CHAR
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
168 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
169
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
170 struct chartab_range
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
171 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
172 enum chartab_range_type type;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
173 Emchar ch;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
174 Lisp_Object charset;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
175 int row;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
176 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
177
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
178 void fill_char_table (struct Lisp_Char_Table *ct, Lisp_Object value);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
179 void put_char_table (struct Lisp_Char_Table *ct, struct chartab_range *range,
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
180 Lisp_Object val);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
181 Lisp_Object get_char_table (Emchar, struct Lisp_Char_Table *);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
182 int map_char_table (struct Lisp_Char_Table *ct,
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
183 struct chartab_range *range,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
184 int (*fn) (struct chartab_range *range,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
185 Lisp_Object val, void *arg),
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
186 void *arg);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
187 void prune_syntax_tables (void);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
188
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
189 EXFUN (Fcopy_char_table, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
190 EXFUN (Fmake_char_table, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
191 EXFUN (Fput_char_table, 3);
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 377
diff changeset
192 EXFUN (Fget_char_table, 2);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
193
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
194 extern Lisp_Object Vall_syntax_tables;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
195
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 #ifdef MULE
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 104
diff changeset
199 int check_category_char(Emchar ch, Lisp_Object ctbl,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 104
diff changeset
200 unsigned int designator, unsigned int not);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
201
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
202 extern Lisp_Object Vstandard_category_table;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
203
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
204 #define CATEGORY_DESIGNATORP(x) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
205 (CHARP (x) && XCHAR (x) >= 32 && XCHAR (x) <= 126)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
206
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
207 #define CHECK_CATEGORY_DESIGNATOR(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
208 if (!CATEGORY_DESIGNATORP (x)) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
209 dead_wrong_type_argument (Qcategory_designator_p, x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
210 } while (0)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
211
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
212 #define CONCHECK_CATEGORY_DESIGNATOR(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
213 if (!CATEGORY_DESIGNATORP (x)) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
214 x = wrong_type_argument (Qcategory_designator_p, x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
215 } while (0)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
216
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
217 #define CATEGORY_TABLE_VALUEP(x) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
218 (NILP (x) || (BIT_VECTORP (x) && (bit_vector_length (XBIT_VECTOR (x)) == 95)))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
219
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
220 #define CHECK_CATEGORY_TABLE_VALUE(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
221 if (!CATEGORY_TABLE_VALUEP (x)) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
222 dead_wrong_type_argument (Qcategory_table_value_p, x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
223 } while (0)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
224
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
225 #define CONCHECK_CATEGORY_TABLE_VALUE(x) do { \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
226 if (!CATEGORY_TABLE_VALUEP (x)) \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
227 x = wrong_type_argument (Qcategory_table_value_p, x); \
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
228 } while (0)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
229
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
230 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
231
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 404
diff changeset
232 #endif /* _MULE_CHARTAB_H */