annotate src/chartab.h @ 314:341dac730539 r21-0b55

Import from CVS: tag r21-0b55
author cvs
date Mon, 13 Aug 2007 10:44:22 +0200
parents c5d627a313b1
children 19dcec799385
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
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
27 #ifndef _MULE_CHARTAB_H
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
28 #define _MULE_CHARTAB_H
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 DECLARE_LRECORD (char_table_entry, struct Lisp_Char_Table_Entry);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
41 #define XCHAR_TABLE_ENTRY(x) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
42 XRECORD (x, char_table_entry, struct Lisp_Char_Table_Entry)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
43 #define XSETCHAR_TABLE_ENTRY(x, p) XSETRECORD (x, p, char_table_entry)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
44 #define CHAR_TABLE_ENTRYP(x) RECORDP (x, char_table_entry)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
45 #define GC_CHAR_TABLE_ENTRYP(x) GC_RECORDP (x, char_table_entry)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
46 /* #define CHECK_CHAR_TABLE_ENTRY(x) CHECK_RECORD (x, char_table_entry)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
47 char table entries should never escape to Lisp */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
48
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
49 struct Lisp_Char_Table_Entry
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
50 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
51 struct lcrecord_header header;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
52
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
53 /* In the interests of simplicity, we just use a fixed 96-entry
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
54 table. If we felt like being smarter, we could make this
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
55 variable-size and add an offset value into this structure. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
56 Lisp_Object level2[96];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
57 };
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 DECLARE_LRECORD (char_table, struct Lisp_Char_Table);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
62 #define XCHAR_TABLE(x) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
63 XRECORD (x, char_table, struct Lisp_Char_Table)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
64 #define XSETCHAR_TABLE(x, p) XSETRECORD (x, p, char_table)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
65 #define CHAR_TABLEP(x) RECORDP (x, char_table)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
66 #define GC_CHAR_TABLEP(x) GC_RECORDP (x, char_table)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
67 #define CHECK_CHAR_TABLE(x) CHECK_RECORD (x, char_table)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
68 #define CONCHECK_CHAR_TABLE(x) CONCHECK_RECORD (x, char_table)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
69
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
70 #define CHAR_TABLE_TYPE(ct) ((ct)->type)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
71 #define XCHAR_TABLE_TYPE(ct) CHAR_TABLE_TYPE (XCHAR_TABLE (ct))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
72
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
73 enum char_table_type
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
74 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
75 CHAR_TABLE_TYPE_GENERIC,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
76 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
77 CHAR_TABLE_TYPE_CATEGORY,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
78 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
79 CHAR_TABLE_TYPE_SYNTAX,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
80 CHAR_TABLE_TYPE_DISPLAY,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
81 CHAR_TABLE_TYPE_CHAR
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
82 };
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 #define NUM_ASCII_CHARS 160
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
86 #else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
87 #define NUM_ASCII_CHARS 256
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
88 #endif
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 Lisp_Char_Table
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
91 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
92 struct lcrecord_header header;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
93
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
94 Lisp_Object ascii[NUM_ASCII_CHARS];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
95
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
96 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
97 /* We basically duplicate the Mule vectors-of-vectors implementation.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
98 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
99 things we are going to be indexing.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
100
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
101 The current implementation is as follows:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
102
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
103 ascii[0-159] is used for ASCII and Control-1 characters.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
104
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
105 level1[0 .. (NUM_LEADING_BYTES-1)] indexes charsets by leading
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
106 byte (subtract MIN_LEADING_BYTE from the leading byte). If the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
107 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
108 characters in the charset. Otherwise, it will be a
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
109 96-Lisp-Object opaque that we created, specifying a value for
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
110 each row. If the value of this is not an opaque, then it
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
111 specifies a value for all characters in the row. Otherwise, it
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
112 will be a 96-Lisp-Object opaque that we created, specifying a
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
113 value for each character.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
114
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
115 NOTE: 1) This will fail if some C routine passes an opaque to
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
116 Fput_char_table(). Currently this is not a problem
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
117 since all char tables that are created are Lisp-visible
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
118 and thus no one should ever be putting an opaque in
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
119 a char table. Another possibility is to consider
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
120 adding a type to */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
121
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
122 Lisp_Object level1[NUM_LEADING_BYTES];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
123
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
124 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
125
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
126 enum char_table_type type;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
127
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
128 /* stuff used for syntax tables */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
129 Lisp_Object mirror_table;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
130 Lisp_Object next_table; /* DO NOT mark through this. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
131 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
132
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
133 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
134
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
135 Lisp_Object get_non_ascii_char_table_value (struct Lisp_Char_Table *ct,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
136 int leading_byte,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
137 Emchar c);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
138
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 110
diff changeset
139 INLINE Lisp_Object
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 110
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 INLINE Lisp_Object
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
142 CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (struct Lisp_Char_Table *ct, Emchar ch)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
143 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
144 unsigned char lb = CHAR_LEADING_BYTE (ch);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
145 if (!CHAR_TABLE_ENTRYP ((ct)->level1[lb - MIN_LEADING_BYTE]))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
146 return (ct)->level1[lb - MIN_LEADING_BYTE];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
147 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
148 return get_non_ascii_char_table_value (ct, lb, ch);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
149 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
150
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
151 #define CHAR_TABLE_VALUE_UNSAFE(ct, ch) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
152 ((ch) < NUM_ASCII_CHARS \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
153 ? (ct)->ascii[ch] \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
154 : CHAR_TABLE_NON_ASCII_VALUE_UNSAFE (ct, ch))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
155
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
156 #else /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
157
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
158 #define CHAR_TABLE_VALUE_UNSAFE(ct, ch) ((ct)->ascii[(unsigned char) (ch)])
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
159
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
160 #endif /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
161
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
162 enum chartab_range_type
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
163 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
164 CHARTAB_RANGE_ALL,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
165 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
166 CHARTAB_RANGE_CHARSET,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
167 CHARTAB_RANGE_ROW,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
168 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
169 CHARTAB_RANGE_CHAR
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
170 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
171
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
172 struct chartab_range
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
173 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
174 enum chartab_range_type type;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
175 Emchar ch;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
176 Lisp_Object charset;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
177 int row;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
178 };
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
179
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
180 void fill_char_table (struct Lisp_Char_Table *ct, Lisp_Object value);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
181 void put_char_table (struct Lisp_Char_Table *ct, struct chartab_range *range,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
182 Lisp_Object val);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
183 int map_char_table (struct Lisp_Char_Table *ct,
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);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
188 void prune_syntax_tables (int (*obj_marked_p) (Lisp_Object));
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);
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
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
232 #endif /* _MULE_CHARTAB_H */