annotate src/specifier.c @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents 41dbb7a9d5f2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Specifier implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Design by Ben Wing;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 Original version by Chuck Thompson;
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
27 rewritten by Ben Wing;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
28 Magic specifiers by Kirill Katsnelson;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
29 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "specifier.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "window.h"
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
40 #include "chartab.h"
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
41 #include "rangetab.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Lisp_Object Qspecifierp;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
44 Lisp_Object Qprepend, Qappend, Qremove_tag_set_prepend, Qremove_tag_set_append;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 Lisp_Object Qremove_locale, Qremove_locale_type, Qremove_all;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Lisp_Object Qfallback;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 /* Qinteger, Qboolean, Qgeneric defined in general.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Lisp_Object Qnatnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Lisp_Object Qconsole_type, Qdevice_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
53 static Lisp_Object Vuser_defined_tags;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
55 typedef struct specifier_type_entry specifier_type_entry;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 struct specifier_type_entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Lisp_Object symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 struct specifier_methods *meths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
62 typedef struct
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
64 Dynarr_declare (specifier_type_entry);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 } specifier_type_entry_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
67 static specifier_type_entry_dynarr *the_specifier_type_entry_dynarr;
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
68
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
69 static const struct lrecord_description ste_description_1[] = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
70 { XD_LISP_OBJECT, offsetof(specifier_type_entry, symbol), 1 },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
71 { XD_STRUCT_PTR, offsetof(specifier_type_entry, meths), 1, &specifier_methods_description },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
72 { XD_END }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
73 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
74
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
75 static const struct struct_description ste_description = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
76 sizeof(specifier_type_entry),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
77 ste_description_1
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
78 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
79
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
80 static const struct lrecord_description sted_description_1[] = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
81 XD_DYNARR_DESC(specifier_type_entry_dynarr, &ste_description),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
82 { XD_END }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
83 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
84
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
85 static const struct struct_description sted_description = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
86 sizeof(specifier_type_entry_dynarr),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
87 sted_description_1
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
88 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
90 static Lisp_Object Vspecifier_type_list;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
91
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
92 static Lisp_Object Vcached_specifiers;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 /* Do NOT mark through this, or specifiers will never be GC'd. */
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
94 static Lisp_Object Vall_specifiers;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
95
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
96 static Lisp_Object Vunlock_ghost_specifiers;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 /* #### The purpose of this is to check for inheritance loops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 in specifiers that can inherit from other specifiers, but it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 not yet implemented.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
102 #### Look into this for 19.14. */
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
103 /* static Lisp_Object_dynarr current_specifiers; */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 static void recompute_cached_specifier_everywhere (Lisp_Object specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
107 EXFUN (Fspecifier_specs, 4);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
108 EXFUN (Fremove_specifier, 4);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
109
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* Specifier object methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 /* Remove dead objects from the specified assoc list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 cleanup_assoc_list (Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 Lisp_Object loop, prev, retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 loop = retval = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 while (!NILP (loop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 Lisp_Object entry = XCAR (loop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Lisp_Object key = XCAR (entry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 /* remember, dead windows can become alive again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 if (!WINDOWP (key) && object_dead_p (key))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* Removing the head. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 retval = XCDR (retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 Fsetcdr (prev, XCDR (loop));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 prev = loop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 loop = XCDR (loop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 /* Remove dead objects from the various lists so that they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 don't keep getting marked as long as this specifier exists and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 therefore wasting memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 cleanup_specifiers (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 for (rest = Vall_specifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 !NILP (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 rest = XSPECIFIER (rest)->next_specifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
165 struct Lisp_Specifier *sp = XSPECIFIER (rest);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 /* This effectively changes the specifier specs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 However, there's no need to call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 recompute_cached_specifier_everywhere() or the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 after-change methods because the only specs we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 are removing are for dead objects, and they can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 never have any effect on the specifier values:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 specifiers can only be instantiated over live
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 objects, and you can't derive a dead object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 from a live one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 sp->device_specs = cleanup_assoc_list (sp->device_specs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 sp->frame_specs = cleanup_assoc_list (sp->frame_specs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 sp->buffer_specs = cleanup_assoc_list (sp->buffer_specs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 /* windows are handled specially because dead windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 can be resurrected */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 kill_specifier_buffer_locals (Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 for (rest = Vall_specifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 !NILP (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 rest = XSPECIFIER (rest)->next_specifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
192 struct Lisp_Specifier *sp = XSPECIFIER (rest);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 /* Make sure we're actually going to be changing something.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 Fremove_specifier() always calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 recompute_cached_specifier_everywhere() (#### but should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 be smarter about this). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 if (!NILP (assq_no_quit (buffer, sp->buffer_specs)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 Fremove_specifier (rest, buffer, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 static Lisp_Object
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
204 mark_specifier (Lisp_Object obj)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
206 struct Lisp_Specifier *specifier = XSPECIFIER (obj);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
207
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
208 mark_object (specifier->global_specs);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
209 mark_object (specifier->device_specs);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
210 mark_object (specifier->frame_specs);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
211 mark_object (specifier->window_specs);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
212 mark_object (specifier->buffer_specs);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
213 mark_object (specifier->magic_parent);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
214 mark_object (specifier->fallback);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
215 if (!GHOST_SPECIFIER_P (XSPECIFIER (obj)))
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
216 MAYBE_SPECMETH (specifier, mark, (obj));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 /* The idea here is that the specifier specs point to locales
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (windows, buffers, frames, and devices), and we want to make sure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 that the specs disappear automatically when the associated locale
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 is no longer in use. For all but windows, "no longer in use"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 corresponds exactly to when the object is deleted (non-deleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 objects are always held permanently in special lists, and deleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 objects are never on these lists and never reusable). To handle
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 this, we just have cleanup_specifiers() called periodically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (at the beginning of garbage collection); it removes all dead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 objects.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 For windows, however, it's trickier because dead objects can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 converted to live ones again if the dead object is in a window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 configuration. Therefore, for windows, "no longer in use"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 corresponds to when the window object is garbage-collected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 We now use weak lists for this purpose.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 void
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
240 prune_specifiers (void)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 Lisp_Object rest, prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 for (rest = Vall_specifiers;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
245 !NILP (rest);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 rest = XSPECIFIER (rest)->next_specifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 {
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
248 if (! marked_p (rest))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
250 struct Lisp_Specifier* sp = XSPECIFIER (rest);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
251 /* A bit of assertion that we're removing both parts of the
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
252 magic one altogether */
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
253 assert (!MAGIC_SPECIFIER_P(sp)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
254 || (BODILY_SPECIFIER_P(sp) && marked_p (sp->fallback))
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
255 || (GHOST_SPECIFIER_P(sp) && marked_p (sp->magic_parent)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 /* This specifier is garbage. Remove it from the list. */
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
257 if (NILP (prev))
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
258 Vall_specifiers = sp->next_specifier;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 else
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
260 XSPECIFIER (prev)->next_specifier = sp->next_specifier;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 }
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
262 else
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
263 prev = rest;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 print_specifier (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
270 struct Lisp_Specifier *sp = XSPECIFIER (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 char buf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 Lisp_Object the_specs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 error ("printing unreadable object #<%s-specifier 0x%x>",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 sp->methods->name, sp->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 sprintf (buf, "#<%s-specifier global=", sp->methods->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 specbind (Qprint_string_length, make_int (100));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 specbind (Qprint_length, make_int (5));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 the_specs = Fspecifier_specs (obj, Qglobal, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 if (NILP (the_specs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 /* there are no global specs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 write_c_string ("<unspecified>", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 print_internal (the_specs, printcharfun, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 if (!NILP (sp->fallback))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 write_c_string (" fallback=", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 print_internal (sp->fallback, printcharfun, escapeflag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 sprintf (buf, " 0x%x>", sp->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 finalize_specifier (void *header, int for_disksave)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
302 struct Lisp_Specifier *sp = (struct Lisp_Specifier *) header;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 /* don't be snafued by the disksave finalization. */
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
304 if (!for_disksave && !GHOST_SPECIFIER_P(sp) && sp->caching)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 xfree (sp->caching);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 sp->caching = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
312 specifier_equal (Lisp_Object obj1, Lisp_Object obj2, int depth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
314 struct Lisp_Specifier *s1 = XSPECIFIER (obj1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
315 struct Lisp_Specifier *s2 = XSPECIFIER (obj2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 int retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 Lisp_Object old_inhibit_quit = Vinhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 /* This function can be called from within redisplay.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 internal_equal can trigger a quit. That leads to Bad Things. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 Vinhibit_quit = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 depth++;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
324 retval =
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
325 (s1->methods == s2->methods &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
326 internal_equal (s1->global_specs, s2->global_specs, depth) &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
327 internal_equal (s1->device_specs, s2->device_specs, depth) &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
328 internal_equal (s1->frame_specs, s2->frame_specs, depth) &&
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
329 internal_equal (s1->window_specs, s2->window_specs, depth) &&
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
330 internal_equal (s1->buffer_specs, s2->buffer_specs, depth) &&
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
331 internal_equal (s1->fallback, s2->fallback, depth));
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
332
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
333 if (retval && HAS_SPECMETH_P (s1, equal))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
334 retval = SPECMETH (s1, equal, (obj1, obj2, depth - 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 Vinhibit_quit = old_inhibit_quit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 static unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 specifier_hash (Lisp_Object obj, int depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
343 struct Lisp_Specifier *s = XSPECIFIER (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 /* specifier hashing is a bit problematic because there are so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 many places where data can be stored. We pick what are perhaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 the most likely places where interesting stuff will be. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
348 return HASH5 ((HAS_SPECMETH_P (s, hash) ?
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
349 SPECMETH (s, hash, (obj, depth)) : 0),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (unsigned long) s->methods,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 internal_hash (s->global_specs, depth + 1),
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
352 internal_hash (s->frame_specs, depth + 1),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 internal_hash (s->buffer_specs, depth + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
356 static size_t
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
357 sizeof_specifier (CONST void *header)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
359 if (GHOST_SPECIFIER_P ((struct Lisp_Specifier *) header))
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
360 return offsetof (struct Lisp_Specifier, data);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
361 else
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
362 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
363 CONST struct Lisp_Specifier *p = (CONST struct Lisp_Specifier *) header;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
364 return offsetof (struct Lisp_Specifier, data) + p->methods->extra_data_size;
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
365 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
368 static const struct lrecord_description specifier_methods_description_1[] = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
369 { XD_LISP_OBJECT, offsetof(struct specifier_methods, predicate_symbol), 1 },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
370 { XD_END }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
371 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
372
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
373 const struct struct_description specifier_methods_description = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
374 sizeof(struct specifier_methods),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
375 specifier_methods_description_1
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
376 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
377
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
378 static const struct lrecord_description specifier_caching_description_1[] = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
379 { XD_END }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
380 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
381
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
382 static const struct struct_description specifier_caching_description = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
383 sizeof(struct specifier_caching),
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
384 specifier_caching_description_1
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
385 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
386
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
387 static const struct lrecord_description specifier_description[] = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
388 { XD_STRUCT_PTR, offsetof(struct Lisp_Specifier, methods), 1, &specifier_methods_description },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
389 { XD_LO_LINK, offsetof(struct Lisp_Specifier, next_specifier) },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
390 { XD_LISP_OBJECT, offsetof(struct Lisp_Specifier, global_specs), 5 },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
391 { XD_STRUCT_PTR, offsetof(struct Lisp_Specifier, caching), 1, &specifier_caching_description },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
392 { XD_LISP_OBJECT, offsetof(struct Lisp_Specifier, magic_parent), 2 },
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
393 { XD_SPECIFIER_END }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
394 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
395
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
396 const struct lrecord_description specifier_empty_extra_description[] = {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
397 { XD_END }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
398 };
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
399
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
400 DEFINE_LRECORD_SEQUENCE_IMPLEMENTATION ("specifier", specifier,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
401 mark_specifier, print_specifier,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
402 finalize_specifier,
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
403 specifier_equal, specifier_hash,
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
404 specifier_description,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
405 sizeof_specifier,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
406 struct Lisp_Specifier);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 /* Creating specifiers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 static struct specifier_methods *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 decode_specifier_type (Lisp_Object type, Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 for (i = 0; i < Dynarr_length (the_specifier_type_entry_dynarr); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 if (EQ (type, Dynarr_at (the_specifier_type_entry_dynarr, i).symbol))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 return Dynarr_at (the_specifier_type_entry_dynarr, i).meths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 maybe_signal_simple_error ("Invalid specifier type", type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 Qspecifier, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 valid_specifier_type_p (Lisp_Object type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
432 return decode_specifier_type (type, ERROR_ME_NOT) != 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
435 DEFUN ("valid-specifier-type-p", Fvalid_specifier_type_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 Given a SPECIFIER-TYPE, return non-nil if it is valid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 Valid types are 'generic, 'integer, boolean, 'color, 'font, 'image,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 'face-boolean, and 'toolbar.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
439 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
440 (specifier_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
442 return valid_specifier_type_p (specifier_type) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
445 DEFUN ("specifier-type-list", Fspecifier_type_list, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 Return a list of valid specifier types.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
447 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
448 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 return Fcopy_sequence (Vspecifier_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 add_entry_to_specifier_type_list (Lisp_Object symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 struct specifier_methods *meths)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 struct specifier_type_entry entry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 entry.symbol = symbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 entry.meths = meths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 Dynarr_add (the_specifier_type_entry_dynarr, entry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 Vspecifier_type_list = Fcons (symbol, Vspecifier_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 static Lisp_Object
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
466 make_specifier_internal (struct specifier_methods *spec_meths,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
467 size_t data_size, int call_create_meth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
469 Lisp_Object specifier;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
470 struct Lisp_Specifier *sp = (struct Lisp_Specifier *)
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
471 alloc_lcrecord (offsetof (struct Lisp_Specifier, data) +
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
472 data_size, &lrecord_specifier);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 sp->methods = spec_meths;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 sp->global_specs = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 sp->device_specs = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 sp->frame_specs = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 sp->window_specs = make_weak_list (WEAK_LIST_KEY_ASSOC);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 sp->buffer_specs = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 sp->fallback = Qnil;
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
481 sp->magic_parent = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 sp->caching = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 sp->next_specifier = Vall_specifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 XSETSPECIFIER (specifier, sp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 Vall_specifiers = specifier;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
488 if (call_create_meth)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
489 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
490 struct gcpro gcpro1;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
491 GCPRO1 (specifier);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
492 MAYBE_SPECMETH (XSPECIFIER (specifier), create, (specifier));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
493 UNGCPRO;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
494 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
495 return specifier;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
496 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
497
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
498 static Lisp_Object
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
499 make_specifier (struct specifier_methods *meths)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
500 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
501 return make_specifier_internal (meths, meths->extra_data_size, 1);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
502 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
503
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
504 Lisp_Object
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
505 make_magic_specifier (Lisp_Object type)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
506 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
507 /* This function can GC */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
508 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
509 Lisp_Object bodily, ghost;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
510 struct gcpro gcpro1;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
511
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
512 bodily = make_specifier (meths);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
513 GCPRO1 (bodily);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
514 ghost = make_specifier_internal (meths, 0, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 UNGCPRO;
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
516
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
517 /* Connect guys together */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
518 XSPECIFIER(bodily)->magic_parent = Qt;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
519 XSPECIFIER(bodily)->fallback = ghost;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
520 XSPECIFIER(ghost)->magic_parent = bodily;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
521
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
522 return bodily;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
525 DEFUN ("make-specifier", Fmake_specifier, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
526 Return a new specifier object of type TYPE.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 A specifier is an object that can be used to keep track of a property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 whose value can be per-buffer, per-window, per-frame, or per-device,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
530 and can further be restricted to a particular console-type or device-class.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
531 Specifiers are used, for example, for the various built-in properties of a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
532 face; this allows a face to have different values in different frames,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
533 buffers, etc. For more information, see `specifier-instance',
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 `specifier-specs', and `add-spec-to-specifier'; or, for a detailed
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
535 description of specifiers, including how they are instantiated over a
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
536 particular domain (i.e. how their value in that domain is determined),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
537 see the chapter on specifiers in the XEmacs Lisp Reference Manual.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 TYPE specifies the particular type of specifier, and should be one of
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
540 the symbols 'generic, 'integer, 'boolean, 'color, 'font, 'image,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
541 'face-boolean, or 'toolbar.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
542
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
543 For more information on particular types of specifiers, see the functions
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
544 `generic-specifier-p', `integer-specifier-p', `boolean-specifier-p',
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
545 `color-specifier-p', `font-specifier-p', `image-specifier-p',
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
546 `face-boolean-specifier-p', and `toolbar-specifier-p'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
547 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
548 (type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 /* This function can GC */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
551 struct specifier_methods *meths = decode_specifier_type (type,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
552 ERROR_ME);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 return make_specifier (meths);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
557 DEFUN ("specifierp", Fspecifierp, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
558 Return t if OBJECT is a specifier.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 A specifier is an object that can be used to keep track of a property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 whose value can be per-buffer, per-window, per-frame, or per-device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 and can further be restricted to a particular console-type or device-class.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 See `make-specifier'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
564 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
565 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
567 return SPECIFIERP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
570 DEFUN ("specifier-type", Fspecifier_type, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 Return the type of SPECIFIER.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
572 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
573 (specifier))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 return intern (XSPECIFIER (specifier)->methods->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 /* Locales and domains */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
584 DEFUN ("valid-specifier-locale-p", Fvalid_specifier_locale_p, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
585 Return t if LOCALE is a valid specifier locale.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
586 Valid locales are devices, frames, windows, buffers, and 'global.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
587 \(nil is not valid.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
588 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
589 (locale))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 /* This cannot GC. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
592 return ((DEVICEP (locale) && DEVICE_LIVE_P (XDEVICE (locale))) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
593 (FRAMEP (locale) && FRAME_LIVE_P (XFRAME (locale))) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
594 (BUFFERP (locale) && BUFFER_LIVE_P (XBUFFER (locale))) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
595 /* dead windows are allowed because they may become live
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
596 windows again when a window configuration is restored */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
597 WINDOWP (locale) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
598 EQ (locale, Qglobal))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
599 ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
602 DEFUN ("valid-specifier-domain-p", Fvalid_specifier_domain_p, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
603 Return t if DOMAIN is a valid specifier domain.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 A domain is used to instance a specifier (i.e. determine the specifier's
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
605 value in that domain). Valid domains are windows, frames, and devices.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
606 \(nil is not valid.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
607 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
608 (domain))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 /* This cannot GC. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
611 return ((DEVICEP (domain) && DEVICE_LIVE_P (XDEVICE (domain))) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
612 (FRAMEP (domain) && FRAME_LIVE_P (XFRAME (domain))) ||
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
613 (WINDOWP (domain) && WINDOW_LIVE_P (XWINDOW (domain))))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
614 ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
617 DEFUN ("valid-specifier-locale-type-p", Fvalid_specifier_locale_type_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 Given a specifier LOCALE-TYPE, return non-nil if it is valid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 Valid locale types are 'global, 'device, 'frame, 'window, and 'buffer.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
620 \(Note, however, that in functions that accept either a locale or a locale
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 type, 'global is considered an individual locale.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
622 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
623 (locale_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 /* This cannot GC. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
626 return (EQ (locale_type, Qglobal) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
627 EQ (locale_type, Qdevice) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
628 EQ (locale_type, Qframe) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
629 EQ (locale_type, Qwindow) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
630 EQ (locale_type, Qbuffer)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 check_valid_locale_or_locale_type (Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 if (EQ (locale, Qall) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 !NILP (Fvalid_specifier_locale_p (locale)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 !NILP (Fvalid_specifier_locale_type_p (locale)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 signal_simple_error ("Invalid specifier locale or locale type", locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
644 DEFUN ("specifier-locale-type-from-locale", Fspecifier_locale_type_from_locale,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
645 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 Given a specifier LOCALE, return its type.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
647 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
648 (locale))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 if (NILP (Fvalid_specifier_locale_p (locale)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 signal_simple_error ("Invalid specifier locale", locale);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
653 if (DEVICEP (locale)) return Qdevice;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
654 if (FRAMEP (locale)) return Qframe;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
655 if (WINDOWP (locale)) return Qwindow;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
656 if (BUFFERP (locale)) return Qbuffer;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 assert (EQ (locale, Qglobal));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 return Qglobal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
661 static Lisp_Object
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 decode_locale (Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 if (NILP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 return Qglobal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 else if (!NILP (Fvalid_specifier_locale_p (locale)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 return locale;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 signal_simple_error ("Invalid specifier locale", locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 static enum spec_locale_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 decode_locale_type (Lisp_Object locale_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 /* This cannot GC. */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
679 if (EQ (locale_type, Qglobal)) return LOCALE_GLOBAL;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
680 if (EQ (locale_type, Qdevice)) return LOCALE_DEVICE;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
681 if (EQ (locale_type, Qframe)) return LOCALE_FRAME;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
682 if (EQ (locale_type, Qwindow)) return LOCALE_WINDOW;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
683 if (EQ (locale_type, Qbuffer)) return LOCALE_BUFFER;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
684
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 signal_simple_error ("Invalid specifier locale type", locale_type);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
686 return LOCALE_GLOBAL; /* not reached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 decode_locale_list (Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 /* The return value of this function must be GCPRO'd. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 if (NILP (locale))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
695 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
696 return list1 (Qall);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
697 }
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
698 else if (CONSP (locale))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
699 {
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
700 Lisp_Object elt;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
701 EXTERNAL_LIST_LOOP_2 (elt, locale)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
702 check_valid_locale_or_locale_type (elt);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
703 return locale;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
704 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
707 check_valid_locale_or_locale_type (locale);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
708 return list1 (locale);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 static enum spec_locale_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 locale_type_from_locale (Lisp_Object locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 return decode_locale_type (Fspecifier_locale_type_from_locale (locale));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 check_valid_domain (Lisp_Object domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 if (NILP (Fvalid_specifier_domain_p (domain)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 signal_simple_error ("Invalid specifier domain", domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
725 static Lisp_Object
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 decode_domain (Lisp_Object domain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 if (NILP (domain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 return Fselected_window (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 check_valid_domain (domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 return domain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 /* Tags */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
739 DEFUN ("valid-specifier-tag-p", Fvalid_specifier_tag_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 Return non-nil if TAG is a valid specifier tag.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 See also `valid-specifier-tag-set-p'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
742 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
743 (tag))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
745 return (valid_console_type_p (tag) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
746 valid_device_class_p (tag) ||
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
747 !NILP (assq_no_quit (tag, Vuser_defined_tags))) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
750 DEFUN ("valid-specifier-tag-set-p", Fvalid_specifier_tag_set_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 Return non-nil if TAG-SET is a valid specifier tag set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 A specifier tag set is an entity that is attached to an instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 and can be used to restrict the scope of that instantiator to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 particular device class or device type and/or to mark instantiators
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 added by a particular package so that they can be later removed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 A specifier tag set consists of a list of zero of more specifier tags,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 each of which is a symbol that is recognized by XEmacs as a tag.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
760 \(The valid device types and device classes are always tags, as are
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
761 any tags defined by `define-specifier-tag'.) It is called a "tag set"
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
762 \(as opposed to a list) because the order of the tags or the number of
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 times a particular tag occurs does not matter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 Each tag has a predicate associated with it, which specifies whether
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 that tag applies to a particular device. The tags which are device types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 and classes match devices of that type or class. User-defined tags can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 have any predicate, or none (meaning that all devices match). When
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 attempting to instance a specifier, a particular instantiator is only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 considered if the device of the domain being instanced over matches
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 all tags in the tag set attached to that instantiator.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 Most of the time, a tag set is not specified, and the instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 gets a null tag set, which matches all devices.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
775 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
776 (tag_set))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 for (rest = tag_set; !NILP (rest); rest = XCDR (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 if (!CONSP (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 if (NILP (Fvalid_specifier_tag_p (XCAR (rest))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 decode_specifier_tag_set (Lisp_Object tag_set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 /* The return value of this function must be GCPRO'd. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 if (!NILP (Fvalid_specifier_tag_p (tag_set)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 return list1 (tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 if (NILP (Fvalid_specifier_tag_set_p (tag_set)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 signal_simple_error ("Invalid specifier tag-set", tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 return tag_set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 canonicalize_tag_set (Lisp_Object tag_set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 int len = XINT (Flength (tag_set));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 Lisp_Object *tags, rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 int i, j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 /* We assume in this function that the tag_set has already been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 validated, so there are no surprises. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 if (len == 0 || len == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 /* most common case */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 return tag_set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
816 tags = alloca_array (Lisp_Object, len);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 LIST_LOOP (rest, tag_set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 tags[i++] = XCAR (rest);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
821
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 /* Sort the list of tags. We use a bubble sort here (copied from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 extent_fragment_update()) -- reduces the function call overhead,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 and is the fastest sort for small numbers of items. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 for (i = 1; i < len; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 j = i - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 while (j >= 0 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 strcmp ((char *) string_data (XSYMBOL (tags[j])->name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 (char *) string_data (XSYMBOL (tags[j+1])->name)) > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 Lisp_Object tmp = tags[j];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 tags[j] = tags[j+1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 tags[j+1] = tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 j--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 /* Now eliminate duplicates. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 for (i = 1, j = 1; i < len; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 /* j holds the destination, i the source. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 if (!EQ (tags[i], tags[i-1]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 tags[j++] = tags[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 return Flist (j, tags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
852 DEFUN ("canonicalize-tag-set", Fcanonicalize_tag_set, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 Canonicalize the given tag set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 Two canonicalized tag sets can be compared with `equal' to see if they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 represent the same tag set. (Specifically, canonicalizing involves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 sorting by symbol name and removing duplicates.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
857 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
858 (tag_set))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 if (NILP (Fvalid_specifier_tag_set_p (tag_set)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 signal_simple_error ("Invalid tag set", tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 return canonicalize_tag_set (tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 device_matches_specifier_tag_set_p (Lisp_Object device, Lisp_Object tag_set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 Lisp_Object devtype, devclass, rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 struct device *d = XDEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 devtype = DEVICE_TYPE (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 devclass = DEVICE_CLASS (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 LIST_LOOP (rest, tag_set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 Lisp_Object tag = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 Lisp_Object assoc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 if (EQ (tag, devtype) || EQ (tag, devclass))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 assoc = assq_no_quit (tag, DEVICE_USER_DEFINED_TAGS (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 /* other built-in tags (device types/classes) are not in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 the user-defined-tags list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 if (NILP (assoc) || NILP (XCDR (assoc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
891 DEFUN ("device-matches-specifier-tag-set-p", Fdevice_matches_specifier_tag_set_p, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 Return non-nil if DEVICE matches specifier tag set TAG-SET.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 This means that DEVICE matches each tag in the tag set. (Every
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 tag recognized by XEmacs has a predicate associated with it that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 specifies which devices match it.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
896 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
897 (device, tag_set))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 CHECK_LIVE_DEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 if (NILP (Fvalid_specifier_tag_set_p (tag_set)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 signal_simple_error ("Invalid tag set", tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 return device_matches_specifier_tag_set_p (device, tag_set) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
907 DEFUN ("define-specifier-tag", Fdefine_specifier_tag, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 Define a new specifier tag.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 If PREDICATE is specified, it should be a function of one argument
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
910 \(a device) that specifies whether the tag matches that particular
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 device. If PREDICATE is omitted, the tag matches all devices.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 You can redefine an existing user-defined specifier tag. However,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 you cannot redefine the built-in specifier tags (the device types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 and classes) or the symbols nil, t, 'all, or 'global.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
916 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
917 (tag, predicate))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 Lisp_Object assoc, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 int recompute = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 CHECK_SYMBOL (tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 if (valid_device_class_p (tag) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 valid_console_type_p (tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 signal_simple_error ("Cannot redefine built-in specifier tags", tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 /* Try to prevent common instantiators and locales from being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 redefined, to reduce ambiguity */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 if (NILP (tag) || EQ (tag, Qt) || EQ (tag, Qall) || EQ (tag, Qglobal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 signal_simple_error ("Cannot define nil, t, 'all, or 'global",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 assoc = assq_no_quit (tag, Vuser_defined_tags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 if (NILP (assoc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 recompute = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 Vuser_defined_tags = Fcons (Fcons (tag, predicate), Vuser_defined_tags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 struct device *d = XDEVICE (XCAR (devcons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 /* Initially set the value to t in case of error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 in predicate */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 DEVICE_USER_DEFINED_TAGS (d) =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 Fcons (Fcons (tag, Qt), DEVICE_USER_DEFINED_TAGS (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 else if (!NILP (predicate) && !NILP (XCDR (assoc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 recompute = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 XCDR (assoc) = predicate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 /* recompute the tag values for all devices. However, in the special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 case where both the old and new predicates are nil, we know that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 we don't have to do this. (It's probably common for people to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 call (define-specifier-tag) more than once on the same tag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 and the most common case is where PREDICATE is not specified.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 if (recompute)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 DEVICE_LOOP_NO_BREAK (devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 Lisp_Object device = XCAR (devcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 assoc = assq_no_quit (tag,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 DEVICE_USER_DEFINED_TAGS (XDEVICE (device)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 assert (CONSP (assoc));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 if (NILP (predicate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 XCDR (assoc) = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 XCDR (assoc) = !NILP (call1 (predicate, device)) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 /* Called at device-creation time to initialize the user-defined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 tag values for the newly-created device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 setup_device_initial_specifier_tags (struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 Lisp_Object rest, rest2;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
982 Lisp_Object device;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 XSETDEVICE (device, d);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
985
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 DEVICE_USER_DEFINED_TAGS (d) = Fcopy_alist (Vuser_defined_tags);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 /* Now set up the initial values */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 LIST_LOOP (rest, DEVICE_USER_DEFINED_TAGS (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 XCDR (XCAR (rest)) = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 for (rest = Vuser_defined_tags, rest2 = DEVICE_USER_DEFINED_TAGS (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 !NILP (rest); rest = XCDR (rest), rest2 = XCDR (rest2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 Lisp_Object predicate = XCDR (XCAR (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 if (NILP (predicate))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 XCDR (XCAR (rest2)) = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 XCDR (XCAR (rest2)) = !NILP (call1 (predicate, device)) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1003 DEFUN ("device-matching-specifier-tag-list", Fdevice_matching_specifier_tag_list,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1004 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 Return a list of all specifier tags matching DEVICE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 DEVICE defaults to the selected device if omitted.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1007 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1008 (device))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 struct device *d = decode_device (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 Lisp_Object rest, list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 struct gcpro gcpro1;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1013
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 GCPRO1 (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 LIST_LOOP (rest, DEVICE_USER_DEFINED_TAGS (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 if (!NILP (XCDR (XCAR (rest))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 list = Fcons (XCAR (XCAR (rest)), list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 list = Fnreverse (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 list = Fcons (DEVICE_CLASS (d), list);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1024 list = Fcons (DEVICE_TYPE (d), list);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 RETURN_UNGCPRO (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1029 DEFUN ("specifier-tag-list", Fspecifier_tag_list, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 Return a list of all currently-defined specifier tags.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 This includes the built-in ones (the device types and classes).
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1032 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1033 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 Lisp_Object list = Qnil, rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 GCPRO1 (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 LIST_LOOP (rest, Vuser_defined_tags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 list = Fcons (XCAR (XCAR (rest)), list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 list = Fnreverse (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 list = nconc2 (Fcopy_sequence (Vdevice_class_list), list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 list = nconc2 (Fcopy_sequence (Vconsole_type_list), list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 RETURN_UNGCPRO (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1050 DEFUN ("specifier-tag-predicate", Fspecifier_tag_predicate, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 Return the predicate for the given specifier tag.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1052 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1053 (tag))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 /* The return value of this function must be GCPRO'd. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 CHECK_SYMBOL (tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 if (NILP (Fvalid_specifier_tag_p (tag)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 signal_simple_error ("Invalid specifier tag", tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 /* Make up some predicates for the built-in types */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 if (valid_console_type_p (tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 return list3 (Qlambda, list1 (Qdevice),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 list3 (Qeq, list2 (Qquote, tag),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 list2 (Qconsole_type, Qdevice)));
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1067
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 if (valid_device_class_p (tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 return list3 (Qlambda, list1 (Qdevice),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 list3 (Qeq, list2 (Qquote, tag),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 list2 (Qdevice_class, Qdevice)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 return XCDR (assq_no_quit (tag, Vuser_defined_tags));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 /* Return true if A "matches" B. If EXACT_P is 0, A must be a subset of B.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 Otherwise, A must be `equal' to B. The sets must be canonicalized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 tag_sets_match_p (Lisp_Object a, Lisp_Object b, int exact_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 if (!exact_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 while (!NILP (a) && !NILP (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 if (EQ (XCAR (a), XCAR (b)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 a = XCDR (a);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 b = XCDR (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1089
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 return NILP (a);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 while (!NILP (a) && !NILP (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 if (!EQ (XCAR (a), XCAR (b)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 a = XCDR (a);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 b = XCDR (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 return NILP (a) && NILP (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 /* Spec-lists and inst-lists */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 call_validate_method (Lisp_Object boxed_method, Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 ((void (*)(Lisp_Object)) get_opaque_ptr (boxed_method)) (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 check_valid_instantiator (Lisp_Object instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 struct specifier_methods *meths,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 if (meths->validate_method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 (meths->validate_method) (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 retval = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 Lisp_Object opaque = make_opaque_ptr ((void *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 meths->validate_method);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 GCPRO1 (opaque);
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1139 retval = call_with_suspended_errors
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1140 ((lisp_fn_t) call_validate_method,
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1141 Qnil, Qspecifier, errb, 2, opaque, instantiator);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1142
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1152 DEFUN ("check-valid-instantiator", Fcheck_valid_instantiator, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 Signal an error if INSTANTIATOR is invalid for SPECIFIER-TYPE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1154 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1155 (instantiator, specifier_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 struct specifier_methods *meths = decode_specifier_type (specifier_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 return check_valid_instantiator (instantiator, meths, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1163 DEFUN ("valid-instantiator-p", Fvalid_instantiator_p, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 Return non-nil if INSTANTIATOR is valid for SPECIFIER-TYPE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1165 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1166 (instantiator, specifier_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 struct specifier_methods *meths = decode_specifier_type (specifier_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 return check_valid_instantiator (instantiator, meths, ERROR_ME_NOT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 check_valid_inst_list (Lisp_Object inst_list, struct specifier_methods *meths,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 LIST_LOOP (rest, inst_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1182 Lisp_Object inst_pair, tag_set;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1183
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1184 if (!CONSP (rest))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 maybe_signal_simple_error ("Invalid instantiator list", inst_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 Qspecifier, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1190 if (!CONSP (inst_pair = XCAR (rest)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1192 maybe_signal_simple_error ("Invalid instantiator pair", inst_pair,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1193 Qspecifier, errb);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1196 if (NILP (Fvalid_specifier_tag_set_p (tag_set = XCAR (inst_pair))))
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1197 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1198 maybe_signal_simple_error ("Invalid specifier tag", tag_set,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1199 Qspecifier, errb);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1200 return Qnil;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1201 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1202
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1203 if (NILP (check_valid_instantiator (XCDR (inst_pair), meths, errb)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1210 DEFUN ("check-valid-inst-list", Fcheck_valid_inst_list, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 Signal an error if INST-LIST is invalid for specifier type TYPE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1212 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1213 (inst_list, type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 return check_valid_inst_list (inst_list, meths, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1220 DEFUN ("valid-inst-list-p", Fvalid_inst_list_p, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 Return non-nil if INST-LIST is valid for specifier type TYPE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1222 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1223 (inst_list, type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 return check_valid_inst_list (inst_list, meths, ERROR_ME_NOT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 check_valid_spec_list (Lisp_Object spec_list, struct specifier_methods *meths,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 LIST_LOOP (rest, spec_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1238 Lisp_Object spec, locale;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1239 if (!CONSP (rest) || !CONSP (spec = XCAR (rest)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 maybe_signal_simple_error ("Invalid specification list", spec_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 Qspecifier, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1245 if (NILP (Fvalid_specifier_locale_p (locale = XCAR (spec))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1247 maybe_signal_simple_error ("Invalid specifier locale", locale,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 Qspecifier, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1252 if (NILP (check_valid_inst_list (XCDR (spec), meths, errb)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1259 DEFUN ("check-valid-spec-list", Fcheck_valid_spec_list, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 Signal an error if SPEC-LIST is invalid for specifier type TYPE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1261 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1262 (spec_list, type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 return check_valid_spec_list (spec_list, meths, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1269 DEFUN ("valid-spec-list-p", Fvalid_spec_list_p, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 Return non-nil if SPEC-LIST is valid for specifier type TYPE.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1271 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1272 (spec_list, type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 struct specifier_methods *meths = decode_specifier_type (type, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 return check_valid_spec_list (spec_list, meths, ERROR_ME_NOT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 enum spec_add_meth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 decode_how_to_add_specification (Lisp_Object how_to_add)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 if (NILP (how_to_add) || EQ (Qremove_tag_set_prepend, how_to_add))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1283 return SPEC_REMOVE_TAG_SET_PREPEND;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1284 if (EQ (Qremove_tag_set_append, how_to_add))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1285 return SPEC_REMOVE_TAG_SET_APPEND;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1286 if (EQ (Qappend, how_to_add))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1287 return SPEC_APPEND;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1288 if (EQ (Qprepend, how_to_add))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1289 return SPEC_PREPEND;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1290 if (EQ (Qremove_locale, how_to_add))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1291 return SPEC_REMOVE_LOCALE;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1292 if (EQ (Qremove_locale_type, how_to_add))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1293 return SPEC_REMOVE_LOCALE_TYPE;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1294 if (EQ (Qremove_all, how_to_add))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1295 return SPEC_REMOVE_ALL;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1296
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1297 signal_simple_error ("Invalid `how-to-add' flag", how_to_add);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1298
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1299 return SPEC_PREPEND; /* not reached */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1302 /* Given a specifier object SPEC, return bodily specifier if SPEC is a
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1303 ghost specifier, otherwise return the object itself
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1304 */
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1305 static Lisp_Object
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1306 bodily_specifier (Lisp_Object spec)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1307 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1308 return (GHOST_SPECIFIER_P (XSPECIFIER (spec))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1309 ? XSPECIFIER(spec)->magic_parent : spec);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1310 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1311
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1312 /* Signal error if (specifier SPEC is read-only.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1313 Read only are ghost specifiers unless Vunlock_ghost_specifiers is
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1314 non-nil. All other specifiers are read-write.
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1315 */
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1316 static void
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1317 check_modifiable_specifier (Lisp_Object spec)
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1318 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1319 if (NILP (Vunlock_ghost_specifiers)
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1320 && GHOST_SPECIFIER_P (XSPECIFIER (spec)))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1321 signal_simple_error ("Attempt to modify read-only specifier",
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1322 list1 (spec));
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1323 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1324
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1325 /* Helper function which unwind protects the value of
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1326 Vunlock_ghost_specifiers, then sets it to non-nil value */
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1327 static Lisp_Object
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1328 restore_unlock_value (Lisp_Object val)
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1329 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1330 Vunlock_ghost_specifiers = val;
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1331 return val;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1332 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1333
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1334 int
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1335 unlock_ghost_specifiers_protected (void)
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1336 {
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1337 int depth = specpdl_depth ();
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1338 record_unwind_protect (restore_unlock_value,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1339 Vunlock_ghost_specifiers);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1340 Vunlock_ghost_specifiers = Qt;
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1341 return depth;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1342 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1343
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 /* This gets hit so much that the function call overhead had a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 measurable impact (according to Quantify). #### We should figure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 out the frequency with which this is called with the various types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 and reorder the check accordingly. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1348 #define SPECIFIER_GET_SPEC_LIST(specifier, type) \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1349 (type == LOCALE_GLOBAL ? &(XSPECIFIER (specifier)->global_specs) : \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1350 type == LOCALE_DEVICE ? &(XSPECIFIER (specifier)->device_specs) : \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1351 type == LOCALE_FRAME ? &(XSPECIFIER (specifier)->frame_specs) : \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1352 type == LOCALE_WINDOW ? &(XWEAK_LIST_LIST \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1353 (XSPECIFIER (specifier)->window_specs)) : \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1354 type == LOCALE_BUFFER ? &(XSPECIFIER (specifier)->buffer_specs) : \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1355 0)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1356
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 static Lisp_Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 specifier_get_inst_list (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 enum spec_locale_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 Lisp_Object specification;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 if (type == LOCALE_GLOBAL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 return spec_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 /* Calling assq_no_quit when it is just going to return nil anyhow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 is extremely expensive. So sayeth Quantify. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 if (!CONSP (*spec_list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 specification = assq_no_quit (locale, *spec_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 if (NILP (specification))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 return &XCDR (specification);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 /* For the given INST_LIST, return a new INST_LIST containing all elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 where TAG-SET matches the element's tag set. EXACT_P indicates whether
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 the match must be exact (as opposed to a subset). SHORT_P indicates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 that the short form (for `specifier-specs') should be returned if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 possible. If COPY_TREE_P, `copy-tree' is used to ensure that no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 elements of the new list are shared with the initial list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 specifier_process_inst_list (Lisp_Object inst_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 Lisp_Object tag_set, int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 int short_p, int copy_tree_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 Lisp_Object retval = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 GCPRO1 (retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 LIST_LOOP (rest, inst_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 Lisp_Object tagged_inst = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 Lisp_Object tagged_inst_tag = XCAR (tagged_inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 if (tag_sets_match_p (tag_set, tagged_inst_tag, exact_p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 if (short_p && NILP (tagged_inst_tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 retval = Fcons (copy_tree_p ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 Fcopy_tree (XCDR (tagged_inst), Qt) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 XCDR (tagged_inst),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 retval = Fcons (copy_tree_p ? Fcopy_tree (tagged_inst, Qt) :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 tagged_inst, retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 retval = Fnreverse (retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 /* If there is a single instantiator and the short form is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 requested, return just the instantiator (rather than a one-element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 list of it) unless it is nil (so that it can be distinguished from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 no instantiators at all). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 if (short_p && CONSP (retval) && !NILP (XCAR (retval)) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 NILP (XCDR (retval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 return XCAR (retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 specifier_get_external_inst_list (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 enum spec_locale_type type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 Lisp_Object tag_set, int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 int short_p, int copy_tree_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 Lisp_Object *inst_list = specifier_get_inst_list (specifier, locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 if (!inst_list || NILP (*inst_list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 /* nil for *inst_list should only occur in 'global */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 assert (!inst_list || EQ (locale, Qglobal));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 return specifier_process_inst_list (*inst_list, tag_set, exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 short_p, copy_tree_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 specifier_get_external_spec_list (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 enum spec_locale_type type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 Lisp_Object tag_set, int exact_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 Lisp_Object retval = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 assert (type != LOCALE_GLOBAL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 /* We're about to let stuff go external; make sure there aren't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 any dead objects */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 *spec_list = cleanup_assoc_list (*spec_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 GCPRO1 (retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 LIST_LOOP (rest, *spec_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 Lisp_Object spec = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 Lisp_Object inst_list =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 specifier_process_inst_list (XCDR (spec), tag_set, exact_p, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 if (!NILP (inst_list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 retval = Fcons (Fcons (XCAR (spec), inst_list), retval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 RETURN_UNGCPRO (Fnreverse (retval));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 static Lisp_Object *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 specifier_new_spec (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 enum spec_locale_type type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 Lisp_Object new_spec = Fcons (locale, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 assert (type != LOCALE_GLOBAL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 *spec_list = Fcons (new_spec, *spec_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 return &XCDR (new_spec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 /* For the given INST_LIST, return a new list comprised of elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 where TAG_SET does not match the element's tag set. This operation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 is destructive. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 specifier_process_remove_inst_list (Lisp_Object inst_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 Lisp_Object tag_set, int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 int *was_removed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 Lisp_Object prev = Qnil, rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 *was_removed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 LIST_LOOP (rest, inst_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 if (tag_sets_match_p (tag_set, XCAR (XCAR (rest)), exact_p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 /* time to remove. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 *was_removed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 inst_list = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 XCDR (prev) = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 prev = rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 return inst_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 specifier_remove_spec (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 enum spec_locale_type type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 Lisp_Object tag_set, int exact_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 Lisp_Object assoc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 int was_removed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 if (type == LOCALE_GLOBAL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 *spec_list = specifier_process_remove_inst_list (*spec_list, tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 exact_p, &was_removed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 assoc = assq_no_quit (locale, *spec_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 if (NILP (assoc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 /* this locale is not found. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 XCDR (assoc) = specifier_process_remove_inst_list (XCDR (assoc),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 tag_set, exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 &was_removed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 if (NILP (XCDR (assoc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 /* no inst-pairs left; remove this locale entirely. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 *spec_list = remassq_no_quit (locale, *spec_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1536
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 if (was_removed)
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1538 MAYBE_SPECMETH (XSPECIFIER (specifier), after_change,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1539 (bodily_specifier (specifier), locale));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 specifier_remove_locale_type (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 enum spec_locale_type type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 Lisp_Object tag_set, int exact_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 Lisp_Object *spec_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 Lisp_Object prev = Qnil, rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 assert (type != LOCALE_GLOBAL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 LIST_LOOP (rest, *spec_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 int was_removed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 int remove_spec = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 Lisp_Object spec = XCAR (rest);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1556
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 /* There may be dead objects floating around */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 /* remember, dead windows can become alive again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 if (!WINDOWP (XCAR (spec)) && object_dead_p (XCAR (spec)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 remove_spec = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 was_removed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 XCDR (spec) = specifier_process_remove_inst_list (XCDR (spec),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 tag_set, exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 &was_removed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 if (NILP (XCDR (spec)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 remove_spec = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 if (remove_spec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 if (NILP (prev))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 *spec_list = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 XCDR (prev) = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 prev = rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 if (was_removed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 MAYBE_SPECMETH (XSPECIFIER (specifier), after_change,
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1585 (bodily_specifier (specifier), XCAR (spec)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 /* NEW_LIST is going to be added to INST_LIST, with add method ADD_METH.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 Frob INST_LIST according to ADD_METH. No need to call an after-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 function; the calling function will do this. Return either SPEC_PREPEND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 or SPEC_APPEND, indicating whether to prepend or append the NEW_LIST. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 static enum spec_add_meth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 handle_multiple_add_insts (Lisp_Object *inst_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 Lisp_Object new_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 enum spec_add_meth add_meth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1599 switch (add_meth)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1601 case SPEC_REMOVE_TAG_SET_APPEND:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1602 add_meth = SPEC_APPEND;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1603 goto remove_tag_set;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1604 case SPEC_REMOVE_TAG_SET_PREPEND:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1605 add_meth = SPEC_PREPEND;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1606 remove_tag_set:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1607 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1608 Lisp_Object rest;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1609
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1610 LIST_LOOP (rest, new_list)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1611 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1612 Lisp_Object canontag = canonicalize_tag_set (XCAR (XCAR (rest)));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1613 struct gcpro gcpro1;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1614
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1615 GCPRO1 (canontag);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1616 /* pull out all elements from the existing list with the
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1617 same tag as any tags in NEW_LIST. */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1618 *inst_list = remassoc_no_quit (canontag, *inst_list);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1619 UNGCPRO;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1620 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1621 }
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1622 return add_meth;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1623 case SPEC_REMOVE_LOCALE:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 *inst_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 return SPEC_PREPEND;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1626 case SPEC_APPEND:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1627 return add_meth;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1628 default:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1629 return SPEC_PREPEND;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 /* Given a LOCALE and INST_LIST that is going to be added to SPECIFIER,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 copy, canonicalize, and call the going_to_add methods as necessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 to produce a new list that is the one that really will be added
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 to the specifier. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 build_up_processed_list (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 Lisp_Object inst_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 /* The return value of this function must be GCPRO'd. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 Lisp_Object rest, list_to_build_up = Qnil;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1644 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 GCPRO1 (list_to_build_up);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 LIST_LOOP (rest, inst_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 Lisp_Object tag_set = XCAR (XCAR (rest));
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1651 Lisp_Object instantiator = Fcopy_tree (XCDR (XCAR (rest)), Qt);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 Lisp_Object sub_inst_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 struct gcpro ngcpro1, ngcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 NGCPRO2 (instantiator, sub_inst_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 /* call the will-add method; it may GC */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1657 sub_inst_list = HAS_SPECMETH_P (sp, going_to_add) ?
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1658 SPECMETH (sp, going_to_add,
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1659 (bodily_specifier (specifier), locale,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1660 tag_set, instantiator)) :
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1661 Qt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 if (EQ (sub_inst_list, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 /* no change here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 sub_inst_list = list1 (Fcons (canonicalize_tag_set (tag_set),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 /* now canonicalize all the tag sets in the new objects */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 Lisp_Object rest2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 LIST_LOOP (rest2, sub_inst_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 XCAR (XCAR (rest2)) = canonicalize_tag_set (XCAR (XCAR (rest2)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 list_to_build_up = nconc2 (sub_inst_list, list_to_build_up);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 RETURN_UNGCPRO (Fnreverse (list_to_build_up));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 /* Add a specification (locale and instantiator list) to a specifier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 ADD_METH specifies what to do with existing specifications in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 specifier, and is an enum that corresponds to the values in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 `add-spec-to-specifier'. The calling routine is responsible for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 validating LOCALE and INST-LIST, but the tag-sets in INST-LIST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 do not need to be canonicalized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 /* #### I really need to rethink the after-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 functions to make them easier to use and more efficient. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 specifier_add_spec (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 Lisp_Object inst_list, enum spec_add_meth add_meth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1695 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1696 enum spec_locale_type type = locale_type_from_locale (locale);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1697 Lisp_Object *orig_inst_list, tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 Lisp_Object list_to_build_up = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 GCPRO1 (list_to_build_up);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 list_to_build_up = build_up_processed_list (specifier, locale, inst_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 /* Now handle REMOVE_LOCALE_TYPE and REMOVE_ALL. These are the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 add-meth types that affect locales other than this one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 if (add_meth == SPEC_REMOVE_LOCALE_TYPE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 specifier_remove_locale_type (specifier, type, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 else if (add_meth == SPEC_REMOVE_ALL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 specifier_remove_locale_type (specifier, LOCALE_BUFFER, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 specifier_remove_locale_type (specifier, LOCALE_WINDOW, Qnil, 0);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1711 specifier_remove_locale_type (specifier, LOCALE_FRAME, Qnil, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 specifier_remove_locale_type (specifier, LOCALE_DEVICE, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 specifier_remove_spec (specifier, Qglobal, LOCALE_GLOBAL, Qnil, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 orig_inst_list = specifier_get_inst_list (specifier, locale, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 if (!orig_inst_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 orig_inst_list = specifier_new_spec (specifier, locale, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 add_meth = handle_multiple_add_insts (orig_inst_list, list_to_build_up,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 add_meth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 if (add_meth == SPEC_PREPEND)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1723 tem = nconc2 (list_to_build_up, *orig_inst_list);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 else if (add_meth == SPEC_APPEND)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1725 tem = nconc2 (*orig_inst_list, list_to_build_up);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 abort ();
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1728
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1729 *orig_inst_list = tem;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1730
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 /* call the after-change method */
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1734 MAYBE_SPECMETH (sp, after_change,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1735 (bodily_specifier (specifier), locale));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 specifier_copy_spec (Lisp_Object specifier, Lisp_Object dest,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 Lisp_Object locale, enum spec_locale_type type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 Lisp_Object tag_set, int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 enum spec_add_meth add_meth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 Lisp_Object inst_list =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 specifier_get_external_inst_list (specifier, locale, type, tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 exact_p, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 specifier_add_spec (dest, locale, inst_list, add_meth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 specifier_copy_locale_type (Lisp_Object specifier, Lisp_Object dest,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 enum spec_locale_type type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 Lisp_Object tag_set, int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 enum spec_add_meth add_meth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 Lisp_Object *src_list = SPECIFIER_GET_SPEC_LIST (specifier, type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 /* This algorithm is O(n^2) in running time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 It's certainly possible to implement an O(n log n) algorithm,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 but I doubt there's any need to. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1762
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 LIST_LOOP (rest, *src_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 Lisp_Object spec = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 /* There may be dead objects floating around */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 /* remember, dead windows can become alive again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 if (WINDOWP (XCAR (spec)) || !object_dead_p (XCAR (spec)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 specifier_add_spec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 (dest, XCAR (spec),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 specifier_process_inst_list (XCDR (spec), tag_set, exact_p, 0, 0),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 add_meth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1774 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 /* map MAPFUN over the locales in SPECIFIER that are given in LOCALE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 CLOSURE is passed unchanged to MAPFUN. LOCALE can be one of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 -- nil (same as 'all)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 -- a single locale, locale type, or 'all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 -- a list of locales, locale types, and/or 'all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 MAPFUN is called for each locale and locale type given; for 'all,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 it is called for the locale 'global and for the four possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 locale types. In each invocation, either LOCALE will be a locale
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 and LOCALE_TYPE will be the locale type of this locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 or LOCALE will be nil and LOCALE_TYPE will be a locale type.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 If MAPFUN ever returns non-zero, the mapping is halted and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 value returned is returned from map_specifier(). Otherwise, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 mapping proceeds to the end and map_specifier() returns 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 map_specifier (Lisp_Object specifier, Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 int (*mapfun) (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 enum spec_locale_type locale_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 Lisp_Object tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 void *closure),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 Lisp_Object tag_set, Lisp_Object exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 void *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 int retval = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 GCPRO2 (tag_set, locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 locale = decode_locale_list (locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 tag_set = decode_specifier_tag_set (tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 tag_set = canonicalize_tag_set (tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 LIST_LOOP (rest, locale)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 Lisp_Object theloc = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 if (!NILP (Fvalid_specifier_locale_p (theloc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 retval = (*mapfun) (specifier, theloc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 locale_type_from_locale (theloc),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 tag_set, !NILP (exact_p), closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 if (retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 else if (!NILP (Fvalid_specifier_locale_type_p (theloc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 retval = (*mapfun) (specifier, Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 decode_locale_type (theloc), tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 !NILP (exact_p), closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 if (retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 assert (EQ (theloc, Qall));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 retval = (*mapfun) (specifier, Qnil, LOCALE_BUFFER, tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 !NILP (exact_p), closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 if (retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 retval = (*mapfun) (specifier, Qnil, LOCALE_WINDOW, tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 !NILP (exact_p), closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 if (retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 retval = (*mapfun) (specifier, Qnil, LOCALE_FRAME, tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 !NILP (exact_p), closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 if (retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 retval = (*mapfun) (specifier, Qnil, LOCALE_DEVICE, tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 !NILP (exact_p), closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 if (retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 retval = (*mapfun) (specifier, Qglobal, LOCALE_GLOBAL, tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 !NILP (exact_p), closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 if (retval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1862 DEFUN ("add-spec-to-specifier", Fadd_spec_to_specifier, 2, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 Add a specification to SPECIFIER.
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
1864 The specification maps from LOCALE (which should be a window, buffer,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 frame, device, or 'global, and defaults to 'global) to INSTANTIATOR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 whose allowed values depend on the type of the specifier. Optional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 argument TAG-SET limits the instantiator to apply only to the specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 tag set, which should be a list of tags all of which must match the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 device being instantiated over (tags are a device type, a device class,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 or tags defined with `define-specifier-tag'). Specifying a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 symbol for TAG-SET is equivalent to specifying a one-element list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 containing that symbol. Optional argument HOW-TO-ADD specifies what to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 do if there are already specifications in the specifier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 It should be one of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 'prepend Put at the beginning of the current list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 instantiators for LOCALE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 'append Add to the end of the current list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 instantiators for LOCALE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 'remove-tag-set-prepend (this is the default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 Remove any existing instantiators whose tag set is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 the same as TAG-SET; then put the new instantiator
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1883 at the beginning of the current list. ("Same tag
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
1884 set" means that they contain the same elements.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 The order may be different.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 'remove-tag-set-append
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 Remove any existing instantiators whose tag set is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 the same as TAG-SET; then put the new instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 at the end of the current list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 'remove-locale Remove all previous instantiators for this locale
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 before adding the new spec.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 'remove-locale-type Remove all specifications for all locales of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 same type as LOCALE (this includes LOCALE itself)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 before adding the new spec.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 'remove-all Remove all specifications from the specifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 before adding the new spec.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 You can retrieve the specifications for a particular locale or locale type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 with the function `specifier-spec-list' or `specifier-specs'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1900 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1901 (specifier, instantiator, locale, tag_set, how_to_add))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 enum spec_add_meth add_meth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 Lisp_Object inst_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 CHECK_SPECIFIER (specifier);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1908 check_modifiable_specifier (specifier);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
1909
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 locale = decode_locale (locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 check_valid_instantiator (instantiator,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 decode_specifier_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 (Fspecifier_type (specifier), ERROR_ME),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 /* tag_set might be newly-created material, but it's part of inst_list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 so is properly GC-protected. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 tag_set = decode_specifier_tag_set (tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 add_meth = decode_how_to_add_specification (how_to_add);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 inst_list = list1 (Fcons (tag_set, instantiator));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 GCPRO1 (inst_list);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1922 specifier_add_spec (specifier, locale, inst_list, add_meth);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 recompute_cached_specifier_everywhere (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 RETURN_UNGCPRO (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1927 DEFUN ("add-spec-list-to-specifier", Fadd_spec_list_to_specifier, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 Add a spec-list (a list of specifications) to SPECIFIER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 The format of a spec-list is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 ((LOCALE (TAG-SET . INSTANTIATOR) ...) ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 where
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
1934 LOCALE := a window, a buffer, a frame, a device, or 'global
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 TAG-SET := an unordered list of zero or more TAGS, each of which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 is a symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 TAG := a device class (see `valid-device-class-p'), a device type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 (see `valid-console-type-p'), or a tag defined with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 `define-specifier-tag'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 INSTANTIATOR := format determined by the type of specifier
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 The pair (TAG-SET . INSTANTIATOR) is called an `inst-pair'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 A list of inst-pairs is called an `inst-list'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 The pair (LOCALE . INST-LIST) is called a `specification' or `spec'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 A spec-list, then, can be viewed as a list of specifications.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 HOW-TO-ADD specifies how to combine the new specifications with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 the existing ones, and has the same semantics as for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 `add-spec-to-specifier'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 In many circumstances, the higher-level function `set-specifier' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 more convenient and should be used instead.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1953 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1954 (specifier, spec_list, how_to_add))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 enum spec_add_meth add_meth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 CHECK_SPECIFIER (specifier);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1960 check_modifiable_specifier (specifier);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1961
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 check_valid_spec_list (spec_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 decode_specifier_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 (Fspecifier_type (specifier), ERROR_ME),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 add_meth = decode_how_to_add_specification (how_to_add);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 LIST_LOOP (rest, spec_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 /* Placating the GCC god. */
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1971 Lisp_Object specification = XCAR (rest);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1972 Lisp_Object locale = XCAR (specification);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1973 Lisp_Object inst_list = XCDR (specification);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
1974
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1975 specifier_add_spec (specifier, locale, inst_list, add_meth);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
1976 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 recompute_cached_specifier_everywhere (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1981 void
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1982 add_spec_to_ghost_specifier (Lisp_Object specifier, Lisp_Object instantiator,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1983 Lisp_Object locale, Lisp_Object tag_set,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1984 Lisp_Object how_to_add)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1985 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1986 int depth = unlock_ghost_specifiers_protected ();
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1987 Fadd_spec_to_specifier (XSPECIFIER(specifier)->fallback,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
1988 instantiator, locale, tag_set, how_to_add);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1989 unbind_to (depth, Qnil);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1990 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
1991
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 struct specifier_spec_list_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 Lisp_Object head, tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 specifier_spec_list_mapfun (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 enum spec_locale_type locale_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 Lisp_Object tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 void *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 struct specifier_spec_list_closure *cl =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 (struct specifier_spec_list_closure *) closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 Lisp_Object partial;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 if (NILP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 partial = specifier_get_external_spec_list (specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 locale_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 tag_set, exact_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 partial = specifier_get_external_inst_list (specifier, locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 locale_type, tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 exact_p, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 if (!NILP (partial))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 partial = list1 (Fcons (locale, partial));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 if (NILP (partial))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 /* tack on the new list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 if (NILP (cl->tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 cl->head = cl->tail = partial;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 XCDR (cl->tail) = partial;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 /* find the new tail */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 while (CONSP (XCDR (cl->tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 cl->tail = XCDR (cl->tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 /* For the given SPECIFIER create and return a list of all specs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 contained within it, subject to LOCALE. If LOCALE is a locale, only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 specs in that locale will be returned. If LOCALE is a locale type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 all specs in all locales of that type will be returned. If LOCALE is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 nil, all specs will be returned. This always copies lists and never
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 returns the actual lists, because we do not want someone manipulating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 the actual objects. This may cause a slight loss of potential
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 functionality but if we were to allow it then a user could manage to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 violate our assertion that the specs contained in the actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 specifier lists are all valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2046 DEFUN ("specifier-spec-list", Fspecifier_spec_list, 1, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 Return the spec-list of specifications for SPECIFIER in LOCALE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 If LOCALE is a particular locale (a buffer, window, frame, device,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 or 'global), a spec-list consisting of the specification for that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 locale will be returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 If LOCALE is a locale type (i.e. 'buffer, 'window, 'frame, or 'device),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 a spec-list of the specifications for all locales of that type will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 If LOCALE is nil or 'all, a spec-list of all specifications in SPECIFIER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 will be returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 LOCALE can also be a list of locales, locale types, and/or 'all; the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 result is as if `specifier-spec-list' were called on each element of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 list and the results concatenated together.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 Only instantiators where TAG-SET (a list of zero or more tags) is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 subset of (or possibly equal to) the instantiator's tag set are returned.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
2066 \(The default value of nil is a subset of all tag sets, so in this case
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 no instantiators will be screened out.) If EXACT-P is non-nil, however,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 TAG-SET must be equal to an instantiator's tag set for the instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 to be returned.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2070 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
2071 (specifier, locale, tag_set, exact_p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 struct specifier_spec_list_closure cl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 cl.head = cl.tail = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 GCPRO2 (cl.head, cl.tail);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2079 map_specifier (specifier, locale, specifier_spec_list_mapfun,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 tag_set, exact_p, &cl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 return cl.head;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2086 DEFUN ("specifier-specs", Fspecifier_specs, 1, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 Return the specification(s) for SPECIFIER in LOCALE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 If LOCALE is a single locale or is a list of one element containing a
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
2090 single locale, then a "short form" of the instantiators for that locale
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 will be returned. Otherwise, this function is identical to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 `specifier-spec-list'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
2094 The "short form" is designed for readability and not for ease of use
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 in Lisp programs, and is as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 1. If there is only one instantiator, then an inst-pair (i.e. cons of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 tag and instantiator) will be returned; otherwise a list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 inst-pairs will be returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 2. For each inst-pair returned, if the instantiator's tag is 'any,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 the tag will be removed and the instantiator itself will be returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 instead of the inst-pair.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 3. If there is only one instantiator, its value is nil, and its tag is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 'any, a one-element list containing nil will be returned rather
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 than just nil, to distinguish this case from there being no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 instantiators at all.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2107 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2108 (specifier, locale, tag_set, exact_p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 if (!NILP (Fvalid_specifier_locale_p (locale)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 (CONSP (locale) && !NILP (Fvalid_specifier_locale_p (XCAR (locale))) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 NILP (XCDR (locale))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 if (CONSP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 locale = XCAR (locale);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 GCPRO1 (tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 tag_set = decode_specifier_tag_set (tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 tag_set = canonicalize_tag_set (tag_set);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 RETURN_UNGCPRO
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2123 (specifier_get_external_inst_list (specifier, locale,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 locale_type_from_locale (locale),
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2125 tag_set, !NILP (exact_p), 1, 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 return Fspecifier_spec_list (specifier, locale, tag_set, exact_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 remove_specifier_mapfun (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 Lisp_Object locale,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 enum spec_locale_type locale_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 Lisp_Object tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 void *ignored_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 if (NILP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 specifier_remove_locale_type (specifier, locale_type, tag_set, exact_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 specifier_remove_spec (specifier, locale, locale_type, tag_set, exact_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2146 DEFUN ("remove-specifier", Fremove_specifier, 1, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 Remove specification(s) for SPECIFIER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2149 If LOCALE is a particular locale (a window, buffer, frame, device,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 or 'global), the specification for that locale will be removed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2152 If instead, LOCALE is a locale type (i.e. 'window, 'buffer, 'frame,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 or 'device), the specifications for all locales of that type will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 removed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 If LOCALE is nil or 'all, all specifications will be removed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 LOCALE can also be a list of locales, locale types, and/or 'all; this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 is equivalent to calling `remove-specifier' for each of the elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 Only instantiators where TAG-SET (a list of zero or more tags) is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 subset of (or possibly equal to) the instantiator's tag set are removed.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2164 The default value of nil is a subset of all tag sets, so in this case
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2165 no instantiators will be screened out. If EXACT-P is non-nil, however,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 TAG-SET must be equal to an instantiator's tag set for the instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 to be removed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2168 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2169 (specifier, locale, tag_set, exact_p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 CHECK_SPECIFIER (specifier);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2172 check_modifiable_specifier (specifier);
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2173
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2174 map_specifier (specifier, locale, remove_specifier_mapfun,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2175 tag_set, exact_p, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 recompute_cached_specifier_everywhere (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2180 void
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2181 remove_ghost_specifier (Lisp_Object specifier, Lisp_Object locale,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2182 Lisp_Object tag_set, Lisp_Object exact_p)
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2183 {
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2184 int depth = unlock_ghost_specifiers_protected ();
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2185 Fremove_specifier (XSPECIFIER(specifier)->fallback,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2186 locale, tag_set, exact_p);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2187 unbind_to (depth, Qnil);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2188 }
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2189
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 struct copy_specifier_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 Lisp_Object dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 enum spec_add_meth add_meth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 int add_meth_is_nil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 copy_specifier_mapfun (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 Lisp_Object locale,
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2200 enum spec_locale_type locale_type,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 Lisp_Object tag_set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 int exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 void *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 struct copy_specifier_closure *cl =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 (struct copy_specifier_closure *) closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 if (NILP (locale))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 specifier_copy_locale_type (specifier, cl->dest, locale_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 tag_set, exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 cl->add_meth_is_nil ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 SPEC_REMOVE_LOCALE_TYPE :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 cl->add_meth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 specifier_copy_spec (specifier, cl->dest, locale, locale_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 tag_set, exact_p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 cl->add_meth_is_nil ? SPEC_REMOVE_LOCALE :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 cl->add_meth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2222 DEFUN ("copy-specifier", Fcopy_specifier, 1, 6, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 Copy SPECIFIER to DEST, or create a new one if DEST is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 If DEST is nil or omitted, a new specifier will be created and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 specifications copied into it. Otherwise, the specifications will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 copied into the existing specifier in DEST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 If LOCALE is nil or 'all, all specifications will be copied. If LOCALE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 is a particular locale, the specification for that particular locale will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 be copied. If LOCALE is a locale type, the specifications for all locales
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 of that type will be copied. LOCALE can also be a list of locales,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 locale types, and/or 'all; this is equivalent to calling `copy-specifier'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 for each of the elements of the list. See `specifier-spec-list' for more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 information about LOCALE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 Only instantiators where TAG-SET (a list of zero or more tags) is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 subset of (or possibly equal to) the instantiator's tag set are copied.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2239 The default value of nil is a subset of all tag sets, so in this case
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2240 no instantiators will be screened out. If EXACT-P is non-nil, however,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 TAG-SET must be equal to an instantiator's tag set for the instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 to be copied.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 Optional argument HOW-TO-ADD specifies what to do with existing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 specifications in DEST. If nil, then whichever locales or locale types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 are copied will first be completely erased in DEST. Otherwise, it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 the same as in `add-spec-to-specifier'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2248 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2249 (specifier, dest, locale, tag_set, exact_p, how_to_add))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 struct copy_specifier_closure cl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 if (NILP (how_to_add))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 cl.add_meth_is_nil = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 cl.add_meth_is_nil = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 cl.add_meth = decode_how_to_add_specification (how_to_add);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 if (NILP (dest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 /* #### What about copying the extra data? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 dest = make_specifier (XSPECIFIER (specifier)->methods);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 CHECK_SPECIFIER (dest);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2268 check_modifiable_specifier (dest);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 if (XSPECIFIER (dest)->methods != XSPECIFIER (specifier)->methods)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 error ("Specifiers not of same type");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 cl.dest = dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 GCPRO1 (dest);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2275 map_specifier (specifier, locale, copy_specifier_mapfun,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2276 tag_set, exact_p, &cl);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 UNGCPRO;
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2278 recompute_cached_specifier_everywhere (dest);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 return dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 /* Instancing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 call_validate_matchspec_method (Lisp_Object boxed_method,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 Lisp_Object matchspec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 ((void (*)(Lisp_Object)) get_opaque_ptr (boxed_method)) (matchspec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 check_valid_specifier_matchspec (Lisp_Object matchspec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 struct specifier_methods *meths,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 Error_behavior errb)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 if (meths->validate_matchspec_method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 Lisp_Object retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 if (ERRB_EQ (errb, ERROR_ME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 (meths->validate_matchspec_method) (matchspec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 retval = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 Lisp_Object opaque =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 make_opaque_ptr ((void *) meths->validate_matchspec_method);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 GCPRO1 (opaque);
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2316 retval = call_with_suspended_errors
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 74
diff changeset
2317 ((lisp_fn_t) call_validate_matchspec_method,
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 74
diff changeset
2318 Qnil, Qspecifier, errb, 2, opaque, matchspec);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2319
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 free_opaque_ptr (opaque);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 maybe_signal_simple_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 ("Matchspecs not allowed for this specifier type",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 intern (meths->name), Qspecifier, errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2335 DEFUN ("check-valid-specifier-matchspec", Fcheck_valid_specifier_matchspec, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 Signal an error if MATCHSPEC is invalid for SPECIFIER-TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 See `specifier-matching-instance' for a description of matchspecs.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2338 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2339 (matchspec, specifier_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 struct specifier_methods *meths = decode_specifier_type (specifier_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 return check_valid_specifier_matchspec (matchspec, meths, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2347 DEFUN ("valid-specifier-matchspec-p", Fvalid_specifier_matchspec_p, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 Return non-nil if MATCHSPEC is valid for SPECIFIER-TYPE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 See `specifier-matching-instance' for a description of matchspecs.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2350 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2351 (matchspec, specifier_type))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 struct specifier_methods *meths = decode_specifier_type (specifier_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 return check_valid_specifier_matchspec (matchspec, meths, ERROR_ME_NOT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 /* This function is purposely not callable from Lisp. If a Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 caller wants to set a fallback, they should just set the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 global value. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2362
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 set_specifier_fallback (Lisp_Object specifier, Lisp_Object fallback)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2366 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 assert (SPECIFIERP (fallback) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 !NILP (Fvalid_inst_list_p (fallback, Fspecifier_type (specifier))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 if (SPECIFIERP (fallback))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 assert (EQ (Fspecifier_type (specifier), Fspecifier_type (fallback)));
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2371 if (BODILY_SPECIFIER_P (sp))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2372 GHOST_SPECIFIER(sp)->fallback = fallback;
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2373 else
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2374 sp->fallback = fallback;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 /* call the after-change method */
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2376 MAYBE_SPECMETH (sp, after_change,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2377 (bodily_specifier (specifier), Qfallback));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 recompute_cached_specifier_everywhere (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2381 DEFUN ("specifier-fallback", Fspecifier_fallback, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 Return the fallback value for SPECIFIER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 Fallback values are provided by the C code for certain built-in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 specifiers to make sure that instancing won't fail even if all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 specs are removed from the specifier, or to implement simple
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 inheritance behavior (e.g. this method is used to ensure that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 faces other than 'default inherit their attributes from 'default).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 By design, you cannot change the fallback value, and specifiers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 created with `make-specifier' will never have a fallback (although
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 a similar, Lisp-accessible capability may be provided in the future
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 to allow for inheritance).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 The fallback value will be an inst-list that is instanced like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 any other inst-list, a specifier of the same type as SPECIFIER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 \(results in inheritance), or nil for no fallback.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 When you instance a specifier, you can explicitly request that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 fallback not be consulted. (The C code does this, for example, when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 merging faces.) See `specifier-instance'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2400 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2401 (specifier))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 return Fcopy_tree (XSPECIFIER (specifier)->fallback, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 specifier_instance_from_inst_list (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 Lisp_Object matchspec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 Lisp_Object domain,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 Lisp_Object inst_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 Error_behavior errb, int no_quit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 Lisp_Object depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 /* This function can GC */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2416 struct Lisp_Specifier *sp;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 Lisp_Object device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 GCPRO2 (specifier, inst_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 sp = XSPECIFIER (specifier);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2425 device = DFW_DEVICE (domain);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 if (no_quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 /* The instantiate method is allowed to call eval. Since it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 is quite common for this function to get called from somewhere in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 redisplay we need to make sure that quits are ignored. Otherwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 Fsignal will abort. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 specbind (Qinhibit_quit, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 LIST_LOOP (rest, inst_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 Lisp_Object tagged_inst = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 Lisp_Object tag_set = XCAR (tagged_inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 if (device_matches_specifier_tag_set_p (device, tag_set))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 Lisp_Object val = XCDR (tagged_inst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 if (HAS_SPECMETH_P (sp, instantiate))
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
2444 val = call_with_suspended_errors
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 74
diff changeset
2445 ((lisp_fn_t) RAW_SPECMETH (sp, instantiate),
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 74
diff changeset
2446 Qunbound, Qspecifier, errb, 5, specifier,
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
2447 matchspec, domain, val, depth);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 if (!UNBOUNDP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 /* Given a SPECIFIER and a DOMAIN, return a specific instance for that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 specifier. Try to find one by checking the specifier types from most
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 specific (buffer) to most general (global). If we find an instance,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 return it. Otherwise return Qunbound. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
2468 #define CHECK_INSTANCE_ENTRY(key, matchspec, type) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
2469 Lisp_Object *CIE_inst_list = \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 specifier_get_inst_list (specifier, key, type); \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
2471 if (CIE_inst_list) \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 { \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
2473 Lisp_Object CIE_val = \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 specifier_instance_from_inst_list (specifier, matchspec, \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
2475 domain, *CIE_inst_list, \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 errb, no_quit, depth); \
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
2477 if (!UNBOUNDP (CIE_val)) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
2478 return CIE_val; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 /* We accept any window, frame or device domain and do our checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 starting from as specific a locale type as we can determine from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 domain we are passed and going on up through as many other locale types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 as we can determine. In practice, when called from redisplay the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 arg will usually be a window and occasionally a frame. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 triggered by a user call, who knows what it will usually be. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 specifier_instance (Lisp_Object specifier, Lisp_Object matchspec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 Lisp_Object domain, Error_behavior errb, int no_quit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 int no_fallback, Lisp_Object depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 Lisp_Object buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 Lisp_Object window = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 Lisp_Object frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 Lisp_Object device = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 Lisp_Object tag = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 struct device *d;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2499 struct Lisp_Specifier *sp;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 sp = XSPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 /* Attempt to determine buffer, window, frame, and device from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 domain. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2505 if (WINDOWP (domain))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 window = domain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 else if (FRAMEP (domain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 frame = domain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 else if (DEVICEP (domain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 device = domain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 else
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2512 /* #### dmoore - dammit, this should just signal an error or something
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2513 shouldn't it?
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2514 #### No. Errors are handled in Lisp primitives implementation.
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2515 Invalid domain is a design error here - kkm. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 if (NILP (buffer) && !NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 buffer = XWINDOW (window)->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 if (NILP (frame) && !NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 frame = XWINDOW (window)->frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 if (NILP (device))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 /* frame had better exist; if device is undeterminable, something
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 really went wrong. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 device = XFRAME (frame)->device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 /* device had better be determined by now; abort if not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 d = XDEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 tag = DEVICE_CLASS (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 depth = make_int (1 + XINT (depth));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 if (XINT (depth) > 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 maybe_error (Qspecifier, errb, "Apparent loop in specifier inheritance");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 /* The specification is fucked; at least try the fallback
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 (which better not be fucked, because it's not changeable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 from Lisp). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 depth = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 goto do_fallback;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2542 retry:
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2543 /* First see if we can generate one from the window specifiers. */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2544 if (!NILP (window))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2545 CHECK_INSTANCE_ENTRY (window, matchspec, LOCALE_WINDOW);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2546
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2547 /* Next see if we can generate one from the buffer specifiers. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 if (!NILP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 CHECK_INSTANCE_ENTRY (buffer, matchspec, LOCALE_BUFFER);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 /* Next see if we can generate one from the frame specifiers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 if (!NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 CHECK_INSTANCE_ENTRY (frame, matchspec, LOCALE_FRAME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 /* If we still haven't succeeded try with the device specifiers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 CHECK_INSTANCE_ENTRY (device, matchspec, LOCALE_DEVICE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 /* Last and least try the global specifiers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 CHECK_INSTANCE_ENTRY (Qglobal, matchspec, LOCALE_GLOBAL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2561 do_fallback:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 /* We're out of specifiers and we still haven't generated an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 instance. At least try the fallback ... If this fails,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 then we just return Qunbound. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 if (no_fallback || NILP (sp->fallback))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 /* I said, I don't want the fallbacks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 if (SPECIFIERP (sp->fallback))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 /* If you introduced loops in the default specifier chain,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 then you're fucked, so you better not do this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 specifier = sp->fallback;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 sp = XSPECIFIER (specifier);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
2576 goto retry;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 assert (CONSP (sp->fallback));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 return specifier_instance_from_inst_list (specifier, matchspec, domain,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 sp->fallback, errb, no_quit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 #undef CHECK_INSTANCE_ENTRY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 specifier_instance_no_quit (Lisp_Object specifier, Lisp_Object matchspec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 Lisp_Object domain, Error_behavior errb,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 int no_fallback, Lisp_Object depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 return specifier_instance (specifier, matchspec, domain, errb,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 1, no_fallback, depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2595 DEFUN ("specifier-instance", Fspecifier_instance, 1, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 Instantiate SPECIFIER (return its value) in DOMAIN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 If no instance can be generated for this domain, return DEFAULT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 DOMAIN should be a window, frame, or device. Other values that are legal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 as a locale (e.g. a buffer) are not valid as a domain because they do not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 provide enough information to identify a particular device (see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 `valid-specifier-domain-p'). DOMAIN defaults to the selected window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 if omitted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
2605 "Instantiating" a specifier in a particular domain means determining
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
2606 the specifier's "value" in that domain. This is accomplished by
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 searching through the specifications in the specifier that correspond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 to all locales that can be derived from the given domain, from specific
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 to general. In most cases, the domain is an Emacs window. In that case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 specifications are searched for as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2612 1. A specification whose locale is the window itself;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 280
diff changeset
2613 2. A specification whose locale is the window's buffer;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 3. A specification whose locale is the window's frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 4. A specification whose locale is the window's frame's device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 5. A specification whose locale is 'global.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 If all of those fail, then the C-code-provided fallback value for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 this specifier is consulted (see `specifier-fallback'). If it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 an inst-list, then this function attempts to instantiate that list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 just as when a specification is located in the first five steps above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 If the fallback is a specifier, `specifier-instance' is called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 recursively on this specifier and the return value used. Note,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 however, that if the optional argument NO-FALLBACK is non-nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 the fallback value will not be consulted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 Note that there may be more than one specification matching a particular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 locale; all such specifications are considered before looking for any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 specifications for more general locales. Any particular specification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 that is found may be rejected because its tag set does not match the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 device being instantiated over, or because the specification is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 valid for the device of the given domain (e.g. the font or color name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 does not exist for this particular X server).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 The returned value is dependent on the type of specifier. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 for a font specifier (as returned by the `face-font' function), the returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 value will be a font-instance object. For glyphs, the returned value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 will be a string, pixmap, or subwindow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 See also `specifier-matching-instance'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2641 */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2642 (specifier, domain, default_, no_fallback))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 Lisp_Object instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 domain = decode_domain (domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2649 instance = specifier_instance (specifier, Qunbound, domain, ERROR_ME, 0,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 !NILP (no_fallback), Qzero);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2651 return UNBOUNDP (instance) ? default_ : instance;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2654 DEFUN ("specifier-matching-instance", Fspecifier_matching_instance, 2, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 Return an instance for SPECIFIER in DOMAIN that matches MATCHSPEC.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 If no instance can be generated for this domain, return DEFAULT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 This function is identical to `specifier-instance' except that a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 specification will only be considered if it matches MATCHSPEC.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
2660 The definition of "match", and allowed values for MATCHSPEC, are
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 dependent on the particular type of specifier. Here are some examples:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 -- For chartable (e.g. display table) specifiers, MATCHSPEC should be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 character, and the specification (a chartable) must give a value for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 that character in order to be considered. This allows you to specify,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 e.g., a buffer-local display table that only gives values for particular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 characters. All other characters are handled as if the buffer-local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 display table is not there. (Chartable specifiers are not yet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 implemented.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 -- For font specifiers, MATCHSPEC should be a charset, and the specification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 (a font string) must have a registry that matches the charset's registry.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 (This only makes sense with Mule support.) This makes it easy to choose a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 font that can display a particular character. (This is what redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 does, in fact.)
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2676 */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2677 (specifier, matchspec, domain, default_, no_fallback))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 Lisp_Object instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 check_valid_specifier_matchspec (matchspec, XSPECIFIER (specifier)->methods,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 domain = decode_domain (domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2686 instance = specifier_instance (specifier, matchspec, domain, ERROR_ME,
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2687 0, !NILP (no_fallback), Qzero);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2688 return UNBOUNDP (instance) ? default_ : instance;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2691 DEFUN ("specifier-instance-from-inst-list", Fspecifier_instance_from_inst_list,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2692 3, 4, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 Attempt to convert a particular inst-list into an instance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 This attempts to instantiate INST-LIST in the given DOMAIN,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 as if INST-LIST existed in a specification in SPECIFIER. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 the instantiation fails, DEFAULT is returned. In most circumstances,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 you should not use this function; use `specifier-instance' instead.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2698 */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2699 (specifier, domain, inst_list, default_))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 Lisp_Object val = Qunbound;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2702 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 Lisp_Object built_up_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 check_valid_domain (domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 check_valid_inst_list (inst_list, sp->methods, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 GCPRO1 (built_up_list);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2710 built_up_list = build_up_processed_list (specifier, domain, inst_list);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 if (!NILP (built_up_list))
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2712 val = specifier_instance_from_inst_list (specifier, Qunbound, domain,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2713 built_up_list, ERROR_ME,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2714 0, Qzero);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2716 return UNBOUNDP (val) ? default_ : val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2719 DEFUN ("specifier-matching-instance-from-inst-list", Fspecifier_matching_instance_from_inst_list,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2720 4, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 Attempt to convert a particular inst-list into an instance.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 This attempts to instantiate INST-LIST in the given DOMAIN
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
2723 \(as if INST-LIST existed in a specification in SPECIFIER),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 matching the specifications against MATCHSPEC.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 This function is analogous to `specifier-instance-from-inst-list'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 but allows for specification-matching as in `specifier-matching-instance'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 See that function for a description of exactly how the matching process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 works.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2730 */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2731 (specifier, matchspec, domain, inst_list, default_))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 Lisp_Object val = Qunbound;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2734 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 Lisp_Object built_up_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 check_valid_specifier_matchspec (matchspec, XSPECIFIER (specifier)->methods,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 check_valid_domain (domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 check_valid_inst_list (inst_list, sp->methods, ERROR_ME);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 GCPRO1 (built_up_list);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2744 built_up_list = build_up_processed_list (specifier, domain, inst_list);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 if (!NILP (built_up_list))
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2746 val = specifier_instance_from_inst_list (specifier, matchspec, domain,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2747 built_up_list, ERROR_ME,
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
2748 0, Qzero);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2750 return UNBOUNDP (val) ? default_ : val;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 /* Caching in the struct window or frame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 /* Either STRUCT_WINDOW_OFFSET or STRUCT_FRAME_OFFSET can be 0 to indicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 no caching in that sort of object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 /* #### It would be nice if the specifier caching automatically knew
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 about specifier fallbacks, so we didn't have to do it ourselves. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 set_specifier_caching (Lisp_Object specifier, int struct_window_offset,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 void (*value_changed_in_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 (Lisp_Object specifier, struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 Lisp_Object oldval),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 int struct_frame_offset,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 void (*value_changed_in_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 (Lisp_Object specifier, struct frame *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 Lisp_Object oldval))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2774 struct Lisp_Specifier *sp = XSPECIFIER (specifier);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2775 assert (!GHOST_SPECIFIER_P (sp));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 if (!sp->caching)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
2778 sp->caching = xnew_and_zero (struct specifier_caching);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 sp->caching->offset_into_struct_window = struct_window_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 sp->caching->value_changed_in_window = value_changed_in_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 sp->caching->offset_into_struct_frame = struct_frame_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 sp->caching->value_changed_in_frame = value_changed_in_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 Vcached_specifiers = Fcons (specifier, Vcached_specifiers);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2784 if (BODILY_SPECIFIER_P (sp))
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2785 GHOST_SPECIFIER(sp)->caching = sp->caching;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 recompute_cached_specifier_everywhere (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 recompute_one_cached_specifier_in_window (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
2793 Lisp_Object window;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 Lisp_Object newval, *location;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2796 assert (!GHOST_SPECIFIER_P (XSPECIFIER (specifier)));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2797
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 XSETWINDOW (window, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 newval = specifier_instance (specifier, Qunbound, window, ERROR_ME_WARN,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 0, 0, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 /* If newval ended up Qunbound, then the calling functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 better be able to deal. If not, set a default so this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 never happens or correct it in the value_changed_in_window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 location = (Lisp_Object *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 ((char *) w + XSPECIFIER (specifier)->caching->offset_into_struct_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 if (!EQ (newval, *location))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 Lisp_Object oldval = *location;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 *location = newval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 (XSPECIFIER (specifier)->caching->value_changed_in_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 (specifier, w, oldval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 recompute_one_cached_specifier_in_frame (Lisp_Object specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 185
diff changeset
2821 Lisp_Object frame;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 Lisp_Object newval, *location;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2824 assert (!GHOST_SPECIFIER_P (XSPECIFIER (specifier)));
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2825
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 newval = specifier_instance (specifier, Qunbound, frame, ERROR_ME_WARN,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 0, 0, Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 /* If newval ended up Qunbound, then the calling functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 better be able to deal. If not, set a default so this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 never happens or correct it in the value_changed_in_frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 location = (Lisp_Object *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 ((char *) f + XSPECIFIER (specifier)->caching->offset_into_struct_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 if (!EQ (newval, *location))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 Lisp_Object oldval = *location;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 *location = newval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 (XSPECIFIER (specifier)->caching->value_changed_in_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 (specifier, f, oldval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 recompute_all_cached_specifiers_in_window (struct window *w)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 LIST_LOOP (rest, Vcached_specifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 Lisp_Object specifier = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 if (XSPECIFIER (specifier)->caching->offset_into_struct_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 recompute_one_cached_specifier_in_window (specifier, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 recompute_all_cached_specifiers_in_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 LIST_LOOP (rest, Vcached_specifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 Lisp_Object specifier = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 if (XSPECIFIER (specifier)->caching->offset_into_struct_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 recompute_one_cached_specifier_in_frame (specifier, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 recompute_cached_specifier_everywhere_mapfun (struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 void *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 Lisp_Object specifier = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 VOID_TO_LISP (specifier, closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 recompute_one_cached_specifier_in_window (specifier, w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 recompute_cached_specifier_everywhere (Lisp_Object specifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 Lisp_Object frmcons, devcons, concons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2887 specifier = bodily_specifier (specifier);
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
2888
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 if (!XSPECIFIER (specifier)->caching)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 if (XSPECIFIER (specifier)->caching->offset_into_struct_window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 map_windows (XFRAME (XCAR (frmcons)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 recompute_cached_specifier_everywhere_mapfun,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 LISP_TO_VOID (specifier));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 if (XSPECIFIER (specifier)->caching->offset_into_struct_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 recompute_one_cached_specifier_in_frame (specifier,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 XFRAME (XCAR (frmcons)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2908 DEFUN ("set-specifier-dirty-flag", Fset_specifier_dirty_flag, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 Force recomputation of any caches associated with SPECIFIER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 Note that this automatically happens whenever you change a specification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 in SPECIFIER; you do not have to call this function then.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 One example of where this function is useful is when you have a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 toolbar button whose `active-p' field is an expression to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 evaluated. Calling `set-specifier-dirty-flag' on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 toolbar specifier will force the `active-p' fields to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 recomputed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2917 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2918 (specifier))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 CHECK_SPECIFIER (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 recompute_cached_specifier_everywhere (specifier);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 /* Generic specifier type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 DEFINE_SPECIFIER_TYPE (generic);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 /* This is the string that used to be in `generic-specifier-p'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 The idea is good, but it doesn't quite work in the form it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 in. (One major problem is that validating an instantiator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 is supposed to require only that the specifier type is passed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 while with this approach the actual specifier is needed.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 What really needs to be done is to write a function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 `make-specifier-type' that creates new specifier types.
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2942 #### I'll look into this for 19.14.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2943 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 "A generic specifier is a generalized kind of specifier with user-defined\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 "semantics. The instantiator can be any kind of Lisp object, and the\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 "instance computed from it is likewise any kind of Lisp object. The\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 "SPECIFIER-DATA should be an alist of methods governing how the specifier\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 "works. All methods are optional, and reasonable default methods will be\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 "provided. Currently there are two defined methods: 'instantiate and\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 "'validate.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 "'instantiate specifies how to do the instantiation; if omitted, the\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 "instantiator itself is simply returned as the instance. The method\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 "should be a function that accepts three parameters (a specifier, the\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 "instantiator that matched the domain being instantiated over, and that\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 "domain), and should return a one-element list containing the instance,\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 "or nil if no instance exists. Note that the domain passed to this function\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 "is the domain being instantiated over, which may not be the same as the\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 "locale contained in the specification corresponding to the instantiator\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 "(for example, the domain being instantiated over could be a window, but\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 "the locale corresponding to the passed instantiator could be the window's\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 "buffer or frame).\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 "\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 "'validate specifies whether a given instantiator is valid; if omitted,\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 "all instantiators are considered valid. It should be a function of\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 "two arguments: an instantiator and a flag CAN-SIGNAL-ERROR. If this\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 "flag is false, the function must simply return t or nil indicating\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 "whether the instantiator is valid. If this flag is true, the function\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 "is free to signal an error if it encounters an invalid instantiator\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 "(this can be useful for issuing a specific error about exactly why the\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 "instantiator is valid). It can also return nil to indicate an invalid\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 "instantiator; in this case, a general error will be signalled."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2977 DEFUN ("generic-specifier-p", Fgeneric_specifier_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 Return non-nil if OBJECT is a generic specifier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2980 A generic specifier allows any kind of Lisp object as an instantiator,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
2981 and returns back the Lisp object unchanged when it is instantiated.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2982 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2983 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
2985 return GENERIC_SPECIFIERP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 /* Integer specifier type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 DEFINE_SPECIFIER_TYPE (integer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 integer_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 CHECK_INT (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3001 DEFUN ("integer-specifier-p", Finteger_specifier_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 Return non-nil if OBJECT is an integer specifier.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3003 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3004 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3006 return INTEGER_SPECIFIERP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 /* Non-negative-integer specifier type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 DEFINE_SPECIFIER_TYPE (natnum);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 natnum_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 CHECK_NATNUM (instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3021 DEFUN ("natnum-specifier-p", Fnatnum_specifier_p, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 Return non-nil if OBJECT is a natnum (non-negative-integer) specifier.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3023 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3024 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3026 return NATNUM_SPECIFIERP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 /* Boolean specifier type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 DEFINE_SPECIFIER_TYPE (boolean);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 boolean_validate (Lisp_Object instantiator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 if (!EQ (instantiator, Qt) && !EQ (instantiator, Qnil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 signal_simple_error ("Must be t or nil", instantiator);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3042 DEFUN ("boolean-specifier-p", Fboolean_specifier_p, 1, 1, 0, /*
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 120
diff changeset
3043 Return non-nil if OBJECT is a boolean specifier.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3044 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3045 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3047 return BOOLEAN_SPECIFIERP (object) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3050 /************************************************************************/
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3051 /* Display table specifier type */
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3052 /************************************************************************/
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3053
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3054 DEFINE_SPECIFIER_TYPE (display_table);
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3055
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3056 #define VALID_SINGLE_DISPTABLE_INSTANTIATOR_P(instantiator) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3057 (VECTORP (instantiator) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3058 || (CHAR_TABLEP (instantiator) \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3059 && (XCHAR_TABLE_TYPE (instantiator) == CHAR_TABLE_TYPE_CHAR \
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3060 || XCHAR_TABLE_TYPE (instantiator) == CHAR_TABLE_TYPE_GENERIC)) \
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3061 || RANGE_TABLEP (instantiator))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3062
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 155
diff changeset
3063 static void
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 155
diff changeset
3064 display_table_validate (Lisp_Object instantiator)
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3065 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3066 if (NILP (instantiator))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3067 /* OK */
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3068 ;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3069 else if (CONSP (instantiator))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3070 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3071 Lisp_Object tail;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3072 EXTERNAL_LIST_LOOP (tail, instantiator)
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3073 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3074 Lisp_Object car = XCAR (tail);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3075 if (!VALID_SINGLE_DISPTABLE_INSTANTIATOR_P (car))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3076 goto lose;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3077 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3078 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3079 else
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3080 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3081 if (!VALID_SINGLE_DISPTABLE_INSTANTIATOR_P (instantiator))
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3082 {
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3083 lose:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3084 dead_wrong_type_argument (display_table_specifier_methods->predicate_symbol,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3085 instantiator);
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3086 }
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
3087 }
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3088 }
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 155
diff changeset
3089
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3090 DEFUN ("display-table-specifier-p", Fdisplay_table_specifier_p, 1, 1, 0, /*
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3091 Return non-nil if OBJECT is a display-table specifier.
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3092 */
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3093 (object))
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3094 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 169
diff changeset
3095 return DISPLAYTABLE_SPECIFIERP (object) ? Qt : Qnil;
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3096 }
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3097
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 /* Initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 syms_of_specifier (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 defsymbol (&Qspecifierp, "specifierp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 defsymbol (&Qconsole_type, "console-type");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 defsymbol (&Qdevice_class, "device-class");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 /* Qinteger, Qboolean, Qgeneric defined in general.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 defsymbol (&Qnatnum, "natnum");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3114 DEFSUBR (Fvalid_specifier_type_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3115 DEFSUBR (Fspecifier_type_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3116 DEFSUBR (Fmake_specifier);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3117 DEFSUBR (Fspecifierp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3118 DEFSUBR (Fspecifier_type);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3119
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3120 DEFSUBR (Fvalid_specifier_locale_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3121 DEFSUBR (Fvalid_specifier_domain_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3122 DEFSUBR (Fvalid_specifier_locale_type_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3123 DEFSUBR (Fspecifier_locale_type_from_locale);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3124
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3125 DEFSUBR (Fvalid_specifier_tag_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3126 DEFSUBR (Fvalid_specifier_tag_set_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3127 DEFSUBR (Fcanonicalize_tag_set);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3128 DEFSUBR (Fdevice_matches_specifier_tag_set_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3129 DEFSUBR (Fdefine_specifier_tag);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3130 DEFSUBR (Fdevice_matching_specifier_tag_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3131 DEFSUBR (Fspecifier_tag_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3132 DEFSUBR (Fspecifier_tag_predicate);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3133
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3134 DEFSUBR (Fcheck_valid_instantiator);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3135 DEFSUBR (Fvalid_instantiator_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3136 DEFSUBR (Fcheck_valid_inst_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3137 DEFSUBR (Fvalid_inst_list_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3138 DEFSUBR (Fcheck_valid_spec_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3139 DEFSUBR (Fvalid_spec_list_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3140 DEFSUBR (Fadd_spec_to_specifier);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3141 DEFSUBR (Fadd_spec_list_to_specifier);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3142 DEFSUBR (Fspecifier_spec_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3143 DEFSUBR (Fspecifier_specs);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3144 DEFSUBR (Fremove_specifier);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3145 DEFSUBR (Fcopy_specifier);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3146
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3147 DEFSUBR (Fcheck_valid_specifier_matchspec);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3148 DEFSUBR (Fvalid_specifier_matchspec_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3149 DEFSUBR (Fspecifier_fallback);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3150 DEFSUBR (Fspecifier_instance);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3151 DEFSUBR (Fspecifier_matching_instance);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3152 DEFSUBR (Fspecifier_instance_from_inst_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3153 DEFSUBR (Fspecifier_matching_instance_from_inst_list);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3154 DEFSUBR (Fset_specifier_dirty_flag);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3155
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3156 DEFSUBR (Fgeneric_specifier_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3157 DEFSUBR (Finteger_specifier_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3158 DEFSUBR (Fnatnum_specifier_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
3159 DEFSUBR (Fboolean_specifier_p);
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3160 DEFSUBR (Fdisplay_table_specifier_p);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 /* Symbols pertaining to specifier creation. Specifiers are created
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 in the syms_of() functions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 /* locales are defined in general.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 defsymbol (&Qprepend, "prepend");
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
3168 defsymbol (&Qappend, "append");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 defsymbol (&Qremove_tag_set_prepend, "remove-tag-set-prepend");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 defsymbol (&Qremove_tag_set_append, "remove-tag-set-append");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 defsymbol (&Qremove_locale, "remove-locale");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 defsymbol (&Qremove_locale_type, "remove-locale-type");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173 defsymbol (&Qremove_all, "remove-all");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 defsymbol (&Qfallback, "fallback");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 specifier_type_create (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 175
diff changeset
3181 the_specifier_type_entry_dynarr = Dynarr_new (specifier_type_entry);
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3182 dumpstruct (&the_specifier_type_entry_dynarr, &sted_description);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 Vspecifier_type_list = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 staticpro (&Vspecifier_type_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 INITIALIZE_SPECIFIER_TYPE (generic, "generic", "generic-specifier-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 INITIALIZE_SPECIFIER_TYPE (integer, "integer", "integer-specifier-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 SPECIFIER_HAS_METHOD (integer, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 INITIALIZE_SPECIFIER_TYPE (natnum, "natnum", "natnum-specifier-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 SPECIFIER_HAS_METHOD (natnum, validate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 INITIALIZE_SPECIFIER_TYPE (boolean, "boolean", "boolean-specifier-p");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 SPECIFIER_HAS_METHOD (boolean, validate);
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3200
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
3201 INITIALIZE_SPECIFIER_TYPE (display_table, "display-table", "display-table-p");
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3202
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 82
diff changeset
3203 SPECIFIER_HAS_METHOD (display_table, validate);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 void
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3207 reinit_specifier_type_create (void)
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3208 {
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3209 REINITIALIZE_SPECIFIER_TYPE (generic);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3210 REINITIALIZE_SPECIFIER_TYPE (integer);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3211 REINITIALIZE_SPECIFIER_TYPE (natnum);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3212 REINITIALIZE_SPECIFIER_TYPE (boolean);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3213 REINITIALIZE_SPECIFIER_TYPE (display_table);
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3214 }
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3215
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3216 void
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 vars_of_specifier (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 Vcached_specifiers = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 staticpro (&Vcached_specifiers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 /* Do NOT mark through this, or specifiers will never be GC'd.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
3223 This is the same deal as for weak hash tables. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 Vall_specifiers = Qnil;
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 420
diff changeset
3225 pdump_wire_list (&Vall_specifiers);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 Vuser_defined_tags = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 staticpro (&Vuser_defined_tags);
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
3229
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
3230 Vunlock_ghost_specifiers = Qnil;
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 276
diff changeset
3231 staticpro (&Vunlock_ghost_specifiers);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 }