annotate src/specifier.c @ 22:8fc7fe29b841 r19-15b94

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