428
|
1 /* Manipulation of keymaps
|
|
2 Copyright (C) 1985, 1991-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
|
|
4 Copyright (C) 1995 Sun Microsystems, Inc.
|
793
|
5 Copyright (C) 2001, 2002 Ben Wing.
|
428
|
6 Totally redesigned by jwz in 1991.
|
|
7
|
|
8 This file is part of XEmacs.
|
|
9
|
|
10 XEmacs is free software; you can redistribute it and/or modify it
|
|
11 under the terms of the GNU General Public License as published by the
|
|
12 Free Software Foundation; either version 2, or (at your option) any
|
|
13 later version.
|
|
14
|
|
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
18 for more details.
|
|
19
|
|
20 You should have received a copy of the GNU General Public License
|
|
21 along with XEmacs; see the file COPYING. If not, write to
|
|
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 Boston, MA 02111-1307, USA. */
|
|
24
|
|
25 /* Synched up with: Mule 2.0. Not synched with FSF. Substantially
|
|
26 different from FSF. */
|
|
27
|
|
28
|
|
29 #include <config.h>
|
|
30 #include "lisp.h"
|
|
31
|
|
32 #include "buffer.h"
|
|
33 #include "bytecode.h"
|
872
|
34 #include "console-impl.h"
|
428
|
35 #include "elhash.h"
|
|
36 #include "events.h"
|
872
|
37 #include "extents.h"
|
428
|
38 #include "frame.h"
|
|
39 #include "insdel.h"
|
|
40 #include "keymap.h"
|
|
41 #include "window.h"
|
|
42
|
|
43
|
|
44 /* A keymap contains six slots:
|
|
45
|
|
46 parents Ordered list of keymaps to search after
|
|
47 this one if no match is found.
|
|
48 Keymaps can thus be arranged in a hierarchy.
|
|
49
|
|
50 table A hash table, hashing keysyms to their bindings.
|
|
51 It will be one of the following:
|
|
52
|
|
53 -- a symbol, e.g. 'home
|
|
54 -- a character, representing something printable
|
|
55 (not ?\C-c meaning C-c, for instance)
|
|
56 -- an integer representing a modifier combination
|
|
57
|
|
58 inverse_table A hash table, hashing bindings to the list of keysyms
|
|
59 in this keymap which are bound to them. This is to make
|
|
60 the Fwhere_is_internal() function be fast. It needs to be
|
|
61 fast because we want to be able to call it in realtime to
|
|
62 update the keyboard-equivalents on the pulldown menus.
|
|
63 Values of the table are either atoms (keysyms)
|
|
64 or a dotted list of keysyms.
|
|
65
|
|
66 sub_maps_cache An alist; for each entry in this keymap whose binding is
|
|
67 a keymap (that is, Fkeymapp()) this alist associates that
|
|
68 keysym with that binding. This is used to optimize both
|
|
69 Fwhere_is_internal() and Faccessible_keymaps(). This slot
|
|
70 gets set to the symbol `t' every time a change is made to
|
|
71 this keymap, causing it to be recomputed when next needed.
|
|
72
|
|
73 prompt See `set-keymap-prompt'.
|
|
74
|
|
75 default_binding See `set-keymap-default-binding'.
|
|
76
|
|
77 Sequences of keys are stored in the obvious way: if the sequence of keys
|
|
78 "abc" was bound to some command `foo', the hierarchy would look like
|
|
79
|
|
80 keymap-1: associates "a" with keymap-2
|
|
81 keymap-2: associates "b" with keymap-3
|
|
82 keymap-3: associates "c" with foo
|
|
83
|
|
84 However, bucky bits ("modifiers" to the X-minded) are represented in the
|
|
85 keymap hierarchy as well. (This lets us use EQable objects as hash keys.)
|
|
86 Each combination of modifiers (e.g. control-hyper) gets its own submap
|
|
87 off of the main map. The hash key for a modifier combination is
|
|
88 an integer, computed by MAKE_MODIFIER_HASH_KEY().
|
|
89
|
|
90 If the key `C-a' was bound to some command, the hierarchy would look like
|
|
91
|
442
|
92 keymap-1: associates the integer XEMACS_MOD_CONTROL with keymap-2
|
428
|
93 keymap-2: associates "a" with the command
|
|
94
|
|
95 Similarly, if the key `C-H-a' was bound to some command, the hierarchy
|
|
96 would look like
|
|
97
|
442
|
98 keymap-1: associates the integer (XEMACS_MOD_CONTROL | XEMACS_MOD_HYPER)
|
428
|
99 with keymap-2
|
|
100 keymap-2: associates "a" with the command
|
|
101
|
|
102 Note that a special exception is made for the meta modifier, in order
|
|
103 to deal with ESC/meta lossage. Any key combination containing the
|
|
104 meta modifier is first indexed off of the main map into the meta
|
442
|
105 submap (with hash key XEMACS_MOD_META) and then indexed off of the
|
428
|
106 meta submap with the meta modifier removed from the key combination.
|
|
107 For example, when associating a command with C-M-H-a, we'd have
|
|
108
|
442
|
109 keymap-1: associates the integer XEMACS_MOD_META with keymap-2
|
|
110 keymap-2: associates the integer (XEMACS_MOD_CONTROL | XEMACS_MOD_HYPER)
|
428
|
111 with keymap-3
|
|
112 keymap-3: associates "a" with the command
|
|
113
|
|
114 Note that keymap-2 might have normal bindings in it; these would be
|
|
115 for key combinations containing only the meta modifier, such as
|
|
116 M-y or meta-backspace.
|
|
117
|
|
118 If the command that "a" was bound to in keymap-3 was itself a keymap,
|
|
119 then that would make the key "C-M-H-a" be a prefix character.
|
|
120
|
|
121 Note that this new model of keymaps takes much of the magic away from
|
|
122 the Escape key: the value of the variable `esc-map' is no longer indexed
|
|
123 in the `global-map' under the ESC key. It's indexed under the integer
|
442
|
124 XEMACS_MOD_META. This is not user-visible, however; none of the "bucky"
|
428
|
125 maps are.
|
|
126
|
|
127 There is a hack in Flookup_key() that makes (lookup-key global-map "\^[")
|
|
128 and (define-key some-random-map "\^[" my-esc-map) work as before, for
|
|
129 compatibility.
|
|
130
|
|
131 Since keymaps are opaque, the only way to extract information from them
|
|
132 is with the functions lookup-key, key-binding, local-key-binding, and
|
|
133 global-key-binding, which work just as before, and the new function
|
440
|
134 map-keymap, which is roughly analogous to maphash.
|
428
|
135
|
|
136 Note that map-keymap perpetuates the illusion that the "bucky" submaps
|
|
137 don't exist: if you map over a keymap with bucky submaps, it will also
|
|
138 map over those submaps. It does not, however, map over other random
|
|
139 submaps of the keymap, just the bucky ones.
|
|
140
|
|
141 One implication of this is that when you map over `global-map', you will
|
|
142 also map over `esc-map'. It is merely for compatibility that the esc-map
|
|
143 is accessible at all; I think that's a bad thing, since it blurs the
|
|
144 distinction between ESC and "meta" even more. "M-x" is no more a two-
|
|
145 key sequence than "C-x" is.
|
|
146
|
|
147 */
|
|
148
|
440
|
149 struct Lisp_Keymap
|
428
|
150 {
|
2720
|
151 #ifdef MC_ALLOC
|
|
152 struct lrecord_header header;
|
|
153 #else /* MC_ALLOC */
|
428
|
154 struct lcrecord_header header;
|
2720
|
155 #endif /* MC_ALLOC */
|
440
|
156 Lisp_Object parents; /* Keymaps to be searched after this one.
|
|
157 An ordered list */
|
428
|
158 Lisp_Object prompt; /* Qnil or a string to print in the minibuffer
|
440
|
159 when reading from this keymap */
|
428
|
160 Lisp_Object table; /* The contents of this keymap */
|
|
161 Lisp_Object inverse_table; /* The inverse mapping of the above */
|
|
162 Lisp_Object default_binding; /* Use this if no other binding is found
|
440
|
163 (this overrides parent maps and the
|
|
164 normal global-map lookup). */
|
428
|
165 Lisp_Object sub_maps_cache; /* Cache of directly inferior keymaps;
|
|
166 This holds an alist, of the key and the
|
|
167 maps, or the modifier bit and the map.
|
|
168 If this is the symbol t, then the cache
|
440
|
169 needs to be recomputed. */
|
428
|
170 Lisp_Object name; /* Just for debugging convenience */
|
440
|
171 };
|
428
|
172
|
|
173 #define MAKE_MODIFIER_HASH_KEY(modifier) make_int (modifier)
|
|
174 #define MODIFIER_HASH_KEY_BITS(x) (INTP (x) ? XINT (x) : 0)
|
|
175
|
|
176
|
|
177
|
|
178 /* Actually allocate storage for these variables */
|
|
179
|
440
|
180 Lisp_Object Vcurrent_global_map; /* Always a keymap */
|
428
|
181
|
771
|
182 static Lisp_Object Vglobal_tty_map, Vglobal_window_system_map;
|
|
183
|
428
|
184 static Lisp_Object Vmouse_grabbed_buffer;
|
|
185
|
|
186 /* Alist of minor mode variables and keymaps. */
|
|
187 static Lisp_Object Qminor_mode_map_alist;
|
|
188
|
|
189 static Lisp_Object Voverriding_local_map;
|
|
190
|
|
191 static Lisp_Object Vkey_translation_map;
|
|
192
|
|
193 static Lisp_Object Vvertical_divider_map;
|
|
194
|
|
195 /* This is incremented whenever a change is made to a keymap. This is
|
|
196 so that things which care (such as the menubar code) can recompute
|
|
197 privately-cached data when the user has changed keybindings.
|
|
198 */
|
458
|
199 Fixnum keymap_tick;
|
428
|
200
|
|
201 /* Prefixing a key with this character is the same as sending a meta bit. */
|
|
202 Lisp_Object Vmeta_prefix_char;
|
|
203
|
|
204 Lisp_Object Qkeymapp;
|
|
205 Lisp_Object Vsingle_space_string;
|
|
206 Lisp_Object Qsuppress_keymap;
|
|
207 Lisp_Object Qmodeline_map;
|
|
208 Lisp_Object Qtoolbar_map;
|
|
209
|
|
210 EXFUN (Fkeymap_fullness, 1);
|
|
211 EXFUN (Fset_keymap_name, 2);
|
|
212 EXFUN (Fsingle_key_description, 1);
|
|
213
|
|
214 static void describe_command (Lisp_Object definition, Lisp_Object buffer);
|
|
215 static void describe_map (Lisp_Object keymap, Lisp_Object elt_prefix,
|
|
216 void (*elt_describer) (Lisp_Object, Lisp_Object),
|
|
217 int partial,
|
|
218 Lisp_Object shadow,
|
|
219 int mice_only_p,
|
|
220 Lisp_Object buffer);
|
440
|
221 static Lisp_Object keymap_submaps (Lisp_Object keymap);
|
428
|
222
|
|
223 Lisp_Object Qcontrol, Qctrl, Qmeta, Qsuper, Qhyper, Qalt, Qshift;
|
|
224 Lisp_Object Qbutton0, Qbutton1, Qbutton2, Qbutton3;
|
|
225 Lisp_Object Qbutton4, Qbutton5, Qbutton6, Qbutton7;
|
|
226 Lisp_Object Qbutton0up, Qbutton1up, Qbutton2up, Qbutton3up;
|
|
227 Lisp_Object Qbutton4up, Qbutton5up, Qbutton6up, Qbutton7up;
|
|
228
|
|
229 Lisp_Object Qmenu_selection;
|
|
230 /* Emacs compatibility */
|
458
|
231 Lisp_Object Qdown_mouse_1, Qmouse_1;
|
|
232 Lisp_Object Qdown_mouse_2, Qmouse_2;
|
|
233 Lisp_Object Qdown_mouse_3, Qmouse_3;
|
|
234 Lisp_Object Qdown_mouse_4, Qmouse_4;
|
|
235 Lisp_Object Qdown_mouse_5, Qmouse_5;
|
|
236 Lisp_Object Qdown_mouse_6, Qmouse_6;
|
|
237 Lisp_Object Qdown_mouse_7, Qmouse_7;
|
428
|
238
|
|
239 /* Kludge kludge kludge */
|
|
240 Lisp_Object QLFD, QTAB, QRET, QESC, QDEL, QSPC, QBS;
|
|
241
|
|
242
|
|
243 /************************************************************************/
|
|
244 /* The keymap Lisp object */
|
|
245 /************************************************************************/
|
|
246
|
|
247 static Lisp_Object
|
|
248 mark_keymap (Lisp_Object obj)
|
|
249 {
|
|
250 Lisp_Keymap *keymap = XKEYMAP (obj);
|
|
251 mark_object (keymap->parents);
|
|
252 mark_object (keymap->prompt);
|
|
253 mark_object (keymap->inverse_table);
|
|
254 mark_object (keymap->sub_maps_cache);
|
|
255 mark_object (keymap->default_binding);
|
|
256 mark_object (keymap->name);
|
|
257 return keymap->table;
|
|
258 }
|
|
259
|
|
260 static void
|
2286
|
261 print_keymap (Lisp_Object obj, Lisp_Object printcharfun,
|
|
262 int UNUSED (escapeflag))
|
428
|
263 {
|
|
264 /* This function can GC */
|
|
265 Lisp_Keymap *keymap = XKEYMAP (obj);
|
|
266 if (print_readably)
|
563
|
267 printing_unreadable_object ("#<keymap 0x%x>", keymap->header.uid);
|
826
|
268 write_c_string (printcharfun, "#<keymap ");
|
428
|
269 if (!NILP (keymap->name))
|
440
|
270 {
|
800
|
271 write_fmt_string_lisp (printcharfun, "%S ", 1, keymap->name);
|
440
|
272 }
|
800
|
273 write_fmt_string (printcharfun, "size %ld 0x%x>",
|
|
274 (long) XINT (Fkeymap_fullness (obj)), keymap->header.uid);
|
428
|
275 }
|
|
276
|
1204
|
277 static const struct memory_description keymap_description[] = {
|
440
|
278 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, parents) },
|
|
279 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, prompt) },
|
|
280 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, table) },
|
|
281 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, inverse_table) },
|
|
282 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, default_binding) },
|
|
283 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, sub_maps_cache) },
|
|
284 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, name) },
|
428
|
285 { XD_END }
|
|
286 };
|
|
287
|
|
288 /* No need for keymap_equal #### Why not? */
|
934
|
289 DEFINE_LRECORD_IMPLEMENTATION ("keymap", keymap,
|
|
290 1, /*dumpable-flag*/
|
|
291 mark_keymap, print_keymap, 0, 0, 0,
|
|
292 keymap_description,
|
|
293 Lisp_Keymap);
|
428
|
294
|
|
295 /************************************************************************/
|
|
296 /* Traversing keymaps and their parents */
|
|
297 /************************************************************************/
|
|
298
|
|
299 static Lisp_Object
|
|
300 traverse_keymaps (Lisp_Object start_keymap, Lisp_Object start_parents,
|
|
301 Lisp_Object (*mapper) (Lisp_Object keymap, void *mapper_arg),
|
|
302 void *mapper_arg)
|
|
303 {
|
|
304 /* This function can GC */
|
|
305 Lisp_Object keymap;
|
|
306 Lisp_Object tail = start_parents;
|
|
307 Lisp_Object malloc_sucks[10];
|
|
308 Lisp_Object malloc_bites = Qnil;
|
|
309 int stack_depth = 0;
|
|
310 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
311 GCPRO4 (*malloc_sucks, malloc_bites, start_keymap, tail);
|
|
312 gcpro1.nvars = 0;
|
|
313
|
|
314 start_keymap = get_keymap (start_keymap, 1, 1);
|
|
315 keymap = start_keymap;
|
|
316 /* Hack special-case parents at top-level */
|
440
|
317 tail = !NILP (tail) ? tail : XKEYMAP (keymap)->parents;
|
428
|
318
|
|
319 for (;;)
|
|
320 {
|
|
321 Lisp_Object result;
|
|
322
|
|
323 QUIT;
|
440
|
324 result = mapper (keymap, mapper_arg);
|
428
|
325 if (!NILP (result))
|
|
326 {
|
|
327 while (CONSP (malloc_bites))
|
|
328 {
|
853
|
329 Lisp_Object victim = malloc_bites;
|
|
330 malloc_bites = XCDR (victim);
|
428
|
331 free_cons (victim);
|
|
332 }
|
|
333 UNGCPRO;
|
|
334 return result;
|
|
335 }
|
|
336 if (NILP (tail))
|
|
337 {
|
|
338 if (stack_depth == 0)
|
|
339 {
|
|
340 UNGCPRO;
|
|
341 return Qnil; /* Nothing found */
|
|
342 }
|
|
343 stack_depth--;
|
|
344 if (CONSP (malloc_bites))
|
|
345 {
|
853
|
346 Lisp_Object victim = malloc_bites;
|
|
347 tail = XCAR (victim);
|
|
348 malloc_bites = XCDR (victim);
|
428
|
349 free_cons (victim);
|
|
350 }
|
|
351 else
|
|
352 {
|
|
353 tail = malloc_sucks[stack_depth];
|
|
354 gcpro1.nvars = stack_depth;
|
|
355 }
|
|
356 keymap = XCAR (tail);
|
|
357 tail = XCDR (tail);
|
|
358 }
|
|
359 else
|
|
360 {
|
|
361 Lisp_Object parents;
|
|
362
|
|
363 keymap = XCAR (tail);
|
|
364 tail = XCDR (tail);
|
|
365 parents = XKEYMAP (keymap)->parents;
|
|
366 if (!CONSP (parents))
|
|
367 ;
|
|
368 else if (NILP (tail))
|
|
369 /* Tail-recurse */
|
|
370 tail = parents;
|
|
371 else
|
|
372 {
|
|
373 if (CONSP (malloc_bites))
|
|
374 malloc_bites = noseeum_cons (tail, malloc_bites);
|
|
375 else if (stack_depth < countof (malloc_sucks))
|
|
376 {
|
|
377 malloc_sucks[stack_depth++] = tail;
|
|
378 gcpro1.nvars = stack_depth;
|
|
379 }
|
|
380 else
|
|
381 {
|
|
382 /* *&@##[*&^$ C. @#[$*&@# Unix. Losers all. */
|
|
383 int i;
|
|
384 for (i = 0, malloc_bites = Qnil;
|
|
385 i < countof (malloc_sucks);
|
|
386 i++)
|
|
387 malloc_bites = noseeum_cons (malloc_sucks[i],
|
|
388 malloc_bites);
|
|
389 gcpro1.nvars = 0;
|
|
390 }
|
|
391 tail = parents;
|
|
392 }
|
|
393 }
|
|
394 keymap = get_keymap (keymap, 1, 1);
|
|
395 if (EQ (keymap, start_keymap))
|
|
396 {
|
563
|
397 invalid_argument ("Cyclic keymap indirection", start_keymap);
|
428
|
398 }
|
|
399 }
|
|
400 }
|
|
401
|
|
402
|
|
403 /************************************************************************/
|
|
404 /* Some low-level functions */
|
|
405 /************************************************************************/
|
|
406
|
442
|
407 static int
|
428
|
408 bucky_sym_to_bucky_bit (Lisp_Object sym)
|
|
409 {
|
442
|
410 if (EQ (sym, Qcontrol)) return XEMACS_MOD_CONTROL;
|
|
411 if (EQ (sym, Qmeta)) return XEMACS_MOD_META;
|
|
412 if (EQ (sym, Qsuper)) return XEMACS_MOD_SUPER;
|
|
413 if (EQ (sym, Qhyper)) return XEMACS_MOD_HYPER;
|
|
414 if (EQ (sym, Qalt)) return XEMACS_MOD_ALT;
|
|
415 if (EQ (sym, Qsymbol)) return XEMACS_MOD_ALT; /* #### - reverse compat */
|
|
416 if (EQ (sym, Qshift)) return XEMACS_MOD_SHIFT;
|
428
|
417
|
|
418 return 0;
|
|
419 }
|
|
420
|
|
421 static Lisp_Object
|
442
|
422 control_meta_superify (Lisp_Object frob, int modifiers)
|
428
|
423 {
|
|
424 if (modifiers == 0)
|
|
425 return frob;
|
|
426 frob = Fcons (frob, Qnil);
|
442
|
427 if (modifiers & XEMACS_MOD_SHIFT) frob = Fcons (Qshift, frob);
|
|
428 if (modifiers & XEMACS_MOD_ALT) frob = Fcons (Qalt, frob);
|
|
429 if (modifiers & XEMACS_MOD_HYPER) frob = Fcons (Qhyper, frob);
|
|
430 if (modifiers & XEMACS_MOD_SUPER) frob = Fcons (Qsuper, frob);
|
|
431 if (modifiers & XEMACS_MOD_CONTROL) frob = Fcons (Qcontrol, frob);
|
|
432 if (modifiers & XEMACS_MOD_META) frob = Fcons (Qmeta, frob);
|
428
|
433 return frob;
|
|
434 }
|
|
435
|
|
436 static Lisp_Object
|
934
|
437 make_key_description (const Lisp_Key_Data *key, int prettify)
|
|
438 {
|
1204
|
439 Lisp_Object keysym = KEY_DATA_KEYSYM (key);
|
934
|
440 int modifiers = KEY_DATA_MODIFIERS (key);
|
428
|
441 if (prettify && CHARP (keysym))
|
|
442 {
|
|
443 /* This is a little slow, but (control a) is prettier than (control 65).
|
|
444 It's now ok to do this for digit-chars too, since we've fixed the
|
|
445 bug where \9 read as the integer 9 instead of as the symbol with
|
|
446 "9" as its name.
|
|
447 */
|
|
448 /* !!#### I'm not sure how correct this is. */
|
867
|
449 Ibyte str [1 + MAX_ICHAR_LEN];
|
|
450 Bytecount count = set_itext_ichar (str, XCHAR (keysym));
|
428
|
451 str[count] = 0;
|
771
|
452 keysym = intern_int (str);
|
428
|
453 }
|
|
454 return control_meta_superify (keysym, modifiers);
|
|
455 }
|
|
456
|
|
457
|
|
458 /************************************************************************/
|
|
459 /* Low-level keymap-store functions */
|
|
460 /************************************************************************/
|
|
461
|
|
462 static Lisp_Object
|
|
463 raw_lookup_key (Lisp_Object keymap,
|
934
|
464 const Lisp_Key_Data *raw_keys, int raw_keys_count,
|
428
|
465 int keys_so_far, int accept_default);
|
|
466
|
|
467 /* Relies on caller to gc-protect args */
|
|
468 static Lisp_Object
|
|
469 keymap_lookup_directly (Lisp_Object keymap,
|
442
|
470 Lisp_Object keysym, int modifiers)
|
428
|
471 {
|
|
472 Lisp_Keymap *k;
|
|
473
|
442
|
474 modifiers &= ~(XEMACS_MOD_BUTTON1 | XEMACS_MOD_BUTTON2 | XEMACS_MOD_BUTTON3
|
|
475 | XEMACS_MOD_BUTTON4 | XEMACS_MOD_BUTTON5);
|
|
476 if ((modifiers & ~(XEMACS_MOD_CONTROL | XEMACS_MOD_META | XEMACS_MOD_SUPER
|
|
477 | XEMACS_MOD_HYPER | XEMACS_MOD_ALT | XEMACS_MOD_SHIFT))
|
|
478 != 0)
|
2500
|
479 ABORT ();
|
428
|
480
|
|
481 k = XKEYMAP (keymap);
|
|
482
|
|
483 /* If the keysym is a one-character symbol, use the char code instead. */
|
826
|
484 if (SYMBOLP (keysym) && string_char_length (XSYMBOL (keysym)->name) == 1)
|
428
|
485 {
|
|
486 Lisp_Object i_fart_on_gcc =
|
867
|
487 make_char (string_ichar (XSYMBOL (keysym)->name, 0));
|
428
|
488 keysym = i_fart_on_gcc;
|
|
489 }
|
|
490
|
442
|
491 if (modifiers & XEMACS_MOD_META) /* Utterly hateful ESC lossage */
|
428
|
492 {
|
442
|
493 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META),
|
428
|
494 k->table, Qnil);
|
|
495 if (NILP (submap))
|
|
496 return Qnil;
|
|
497 k = XKEYMAP (submap);
|
442
|
498 modifiers &= ~XEMACS_MOD_META;
|
428
|
499 }
|
|
500
|
|
501 if (modifiers != 0)
|
|
502 {
|
|
503 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (modifiers),
|
|
504 k->table, Qnil);
|
|
505 if (NILP (submap))
|
|
506 return Qnil;
|
|
507 k = XKEYMAP (submap);
|
|
508 }
|
|
509 return Fgethash (keysym, k->table, Qnil);
|
|
510 }
|
|
511
|
|
512 static void
|
|
513 keymap_store_inverse_internal (Lisp_Object inverse_table,
|
|
514 Lisp_Object keysym,
|
|
515 Lisp_Object value)
|
|
516 {
|
|
517 Lisp_Object keys = Fgethash (value, inverse_table, Qunbound);
|
|
518
|
|
519 if (UNBOUNDP (keys))
|
|
520 {
|
|
521 keys = keysym;
|
|
522 /* Don't cons this unless necessary */
|
|
523 /* keys = Fcons (keysym, Qnil); */
|
|
524 Fputhash (value, keys, inverse_table);
|
|
525 }
|
|
526 else if (!CONSP (keys))
|
|
527 {
|
|
528 /* Now it's necessary to cons */
|
|
529 keys = Fcons (keys, keysym);
|
|
530 Fputhash (value, keys, inverse_table);
|
|
531 }
|
|
532 else
|
|
533 {
|
|
534 while (CONSP (XCDR (keys)))
|
|
535 keys = XCDR (keys);
|
|
536 XCDR (keys) = Fcons (XCDR (keys), keysym);
|
|
537 /* No need to call puthash because we've destructively
|
|
538 modified the list tail in place */
|
|
539 }
|
|
540 }
|
|
541
|
|
542
|
|
543 static void
|
|
544 keymap_delete_inverse_internal (Lisp_Object inverse_table,
|
|
545 Lisp_Object keysym,
|
|
546 Lisp_Object value)
|
|
547 {
|
|
548 Lisp_Object keys = Fgethash (value, inverse_table, Qunbound);
|
|
549 Lisp_Object new_keys = keys;
|
|
550 Lisp_Object tail;
|
|
551 Lisp_Object *prev;
|
|
552
|
|
553 if (UNBOUNDP (keys))
|
2500
|
554 ABORT ();
|
428
|
555
|
|
556 for (prev = &new_keys, tail = new_keys;
|
|
557 ;
|
|
558 prev = &(XCDR (tail)), tail = XCDR (tail))
|
|
559 {
|
|
560 if (EQ (tail, keysym))
|
|
561 {
|
|
562 *prev = Qnil;
|
|
563 break;
|
|
564 }
|
|
565 else if (EQ (keysym, XCAR (tail)))
|
|
566 {
|
|
567 *prev = XCDR (tail);
|
|
568 break;
|
|
569 }
|
|
570 }
|
|
571
|
|
572 if (NILP (new_keys))
|
|
573 Fremhash (value, inverse_table);
|
|
574 else if (!EQ (keys, new_keys))
|
|
575 /* Removed the first elt */
|
|
576 Fputhash (value, new_keys, inverse_table);
|
|
577 /* else the list's tail has been modified, so we don't need to
|
|
578 touch the hash table again (the pointer in there is ok).
|
|
579 */
|
|
580 }
|
|
581
|
440
|
582 /* Prevent luser from shooting herself in the foot using something like
|
|
583 (define-key ctl-x-4-map "p" global-map) */
|
|
584 static void
|
|
585 check_keymap_definition_loop (Lisp_Object def, Lisp_Keymap *to_keymap)
|
|
586 {
|
|
587 def = get_keymap (def, 0, 0);
|
|
588
|
|
589 if (KEYMAPP (def))
|
|
590 {
|
|
591 Lisp_Object maps;
|
|
592
|
|
593 if (XKEYMAP (def) == to_keymap)
|
563
|
594 invalid_argument ("Cyclic keymap definition", def);
|
440
|
595
|
|
596 for (maps = keymap_submaps (def);
|
|
597 CONSP (maps);
|
|
598 maps = XCDR (maps))
|
|
599 check_keymap_definition_loop (XCDR (XCAR (maps)), to_keymap);
|
|
600 }
|
|
601 }
|
428
|
602
|
|
603 static void
|
|
604 keymap_store_internal (Lisp_Object keysym, Lisp_Keymap *keymap,
|
440
|
605 Lisp_Object def)
|
428
|
606 {
|
440
|
607 Lisp_Object prev_def = Fgethash (keysym, keymap->table, Qnil);
|
|
608
|
|
609 if (EQ (prev_def, def))
|
428
|
610 return;
|
440
|
611
|
|
612 check_keymap_definition_loop (def, keymap);
|
|
613
|
|
614 if (!NILP (prev_def))
|
428
|
615 keymap_delete_inverse_internal (keymap->inverse_table,
|
440
|
616 keysym, prev_def);
|
|
617 if (NILP (def))
|
428
|
618 {
|
|
619 Fremhash (keysym, keymap->table);
|
|
620 }
|
|
621 else
|
|
622 {
|
440
|
623 Fputhash (keysym, def, keymap->table);
|
428
|
624 keymap_store_inverse_internal (keymap->inverse_table,
|
440
|
625 keysym, def);
|
428
|
626 }
|
|
627 keymap_tick++;
|
|
628 }
|
|
629
|
|
630
|
|
631 static Lisp_Object
|
442
|
632 create_bucky_submap (Lisp_Keymap *k, int modifiers,
|
428
|
633 Lisp_Object parent_for_debugging_info)
|
|
634 {
|
|
635 Lisp_Object submap = Fmake_sparse_keymap (Qnil);
|
|
636 /* User won't see this, but it is nice for debugging Emacs */
|
|
637 XKEYMAP (submap)->name
|
|
638 = control_meta_superify (parent_for_debugging_info, modifiers);
|
|
639 /* Invalidate cache */
|
|
640 k->sub_maps_cache = Qt;
|
|
641 keymap_store_internal (MAKE_MODIFIER_HASH_KEY (modifiers), k, submap);
|
|
642 return submap;
|
|
643 }
|
|
644
|
|
645
|
|
646 /* Relies on caller to gc-protect keymap, keysym, value */
|
|
647 static void
|
934
|
648 keymap_store (Lisp_Object keymap, const Lisp_Key_Data *key,
|
428
|
649 Lisp_Object value)
|
|
650 {
|
934
|
651 Lisp_Object keysym = KEY_DATA_KEYSYM (key);
|
|
652 int modifiers = KEY_DATA_MODIFIERS (key);
|
440
|
653 Lisp_Keymap *k = XKEYMAP (keymap);
|
|
654
|
442
|
655 modifiers &= ~(XEMACS_MOD_BUTTON1 | XEMACS_MOD_BUTTON2 | XEMACS_MOD_BUTTON3
|
|
656 | XEMACS_MOD_BUTTON4 | XEMACS_MOD_BUTTON5);
|
|
657 assert ((modifiers & ~(XEMACS_MOD_CONTROL | XEMACS_MOD_META
|
|
658 | XEMACS_MOD_SUPER | XEMACS_MOD_HYPER
|
|
659 | XEMACS_MOD_ALT | XEMACS_MOD_SHIFT)) == 0);
|
428
|
660
|
|
661 /* If the keysym is a one-character symbol, use the char code instead. */
|
826
|
662 if (SYMBOLP (keysym) && string_char_length (XSYMBOL (keysym)->name) == 1)
|
867
|
663 keysym = make_char (string_ichar (XSYMBOL (keysym)->name, 0));
|
428
|
664
|
442
|
665 if (modifiers & XEMACS_MOD_META) /* Utterly hateful ESC lossage */
|
428
|
666 {
|
442
|
667 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META),
|
428
|
668 k->table, Qnil);
|
|
669 if (NILP (submap))
|
442
|
670 submap = create_bucky_submap (k, XEMACS_MOD_META, keymap);
|
428
|
671 k = XKEYMAP (submap);
|
442
|
672 modifiers &= ~XEMACS_MOD_META;
|
428
|
673 }
|
|
674
|
|
675 if (modifiers != 0)
|
|
676 {
|
|
677 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (modifiers),
|
|
678 k->table, Qnil);
|
|
679 if (NILP (submap))
|
|
680 submap = create_bucky_submap (k, modifiers, keymap);
|
|
681 k = XKEYMAP (submap);
|
|
682 }
|
|
683 k->sub_maps_cache = Qt; /* Invalidate cache */
|
|
684 keymap_store_internal (keysym, k, value);
|
|
685 }
|
|
686
|
|
687
|
|
688 /************************************************************************/
|
|
689 /* Listing the submaps of a keymap */
|
|
690 /************************************************************************/
|
|
691
|
|
692 struct keymap_submaps_closure
|
|
693 {
|
|
694 Lisp_Object *result_locative;
|
|
695 };
|
|
696
|
|
697 static int
|
2286
|
698 keymap_submaps_mapper_0 (Lisp_Object UNUSED (key), Lisp_Object value,
|
|
699 void *UNUSED (keymap_submaps_closure))
|
428
|
700 {
|
|
701 /* This function can GC */
|
|
702 /* Perform any autoloads, etc */
|
|
703 Fkeymapp (value);
|
|
704 return 0;
|
|
705 }
|
|
706
|
|
707 static int
|
|
708 keymap_submaps_mapper (Lisp_Object key, Lisp_Object value,
|
|
709 void *keymap_submaps_closure)
|
|
710 {
|
|
711 /* This function can GC */
|
|
712 Lisp_Object *result_locative;
|
|
713 struct keymap_submaps_closure *cl =
|
|
714 (struct keymap_submaps_closure *) keymap_submaps_closure;
|
|
715 result_locative = cl->result_locative;
|
|
716
|
|
717 if (!NILP (Fkeymapp (value)))
|
|
718 *result_locative = Fcons (Fcons (key, value), *result_locative);
|
|
719 return 0;
|
|
720 }
|
|
721
|
|
722 static int map_keymap_sort_predicate (Lisp_Object obj1, Lisp_Object obj2,
|
|
723 Lisp_Object pred);
|
|
724
|
|
725 static Lisp_Object
|
|
726 keymap_submaps (Lisp_Object keymap)
|
|
727 {
|
|
728 /* This function can GC */
|
|
729 Lisp_Keymap *k = XKEYMAP (keymap);
|
|
730
|
|
731 if (EQ (k->sub_maps_cache, Qt)) /* Unknown */
|
|
732 {
|
|
733 Lisp_Object result = Qnil;
|
|
734 struct gcpro gcpro1, gcpro2;
|
|
735 struct keymap_submaps_closure keymap_submaps_closure;
|
|
736
|
|
737 GCPRO2 (keymap, result);
|
|
738 keymap_submaps_closure.result_locative = &result;
|
|
739 /* Do this first pass to touch (and load) any autoloaded maps */
|
|
740 elisp_maphash (keymap_submaps_mapper_0, k->table,
|
|
741 &keymap_submaps_closure);
|
|
742 result = Qnil;
|
|
743 elisp_maphash (keymap_submaps_mapper, k->table,
|
|
744 &keymap_submaps_closure);
|
|
745 /* keep it sorted so that the result of accessible-keymaps is ordered */
|
|
746 k->sub_maps_cache = list_sort (result,
|
|
747 Qnil,
|
|
748 map_keymap_sort_predicate);
|
|
749 UNGCPRO;
|
|
750 }
|
|
751 return k->sub_maps_cache;
|
|
752 }
|
|
753
|
|
754
|
|
755 /************************************************************************/
|
|
756 /* Basic operations on keymaps */
|
|
757 /************************************************************************/
|
|
758
|
|
759 static Lisp_Object
|
665
|
760 make_keymap (Elemcount size)
|
428
|
761 {
|
|
762 Lisp_Object result;
|
2720
|
763 #ifdef MC_ALLOC
|
|
764 Lisp_Keymap *keymap = alloc_lrecord_type (Lisp_Keymap, &lrecord_keymap);
|
|
765 #else /* not MC_ALLOC */
|
428
|
766 Lisp_Keymap *keymap = alloc_lcrecord_type (Lisp_Keymap, &lrecord_keymap);
|
2720
|
767 #endif /* not MC_ALLOC */
|
428
|
768
|
793
|
769 result = wrap_keymap (keymap);
|
428
|
770
|
|
771 keymap->parents = Qnil;
|
|
772 keymap->prompt = Qnil;
|
|
773 keymap->table = Qnil;
|
|
774 keymap->inverse_table = Qnil;
|
|
775 keymap->default_binding = Qnil;
|
|
776 keymap->sub_maps_cache = Qnil; /* No possible submaps */
|
|
777 keymap->name = Qnil;
|
|
778
|
|
779 if (size != 0) /* hack for copy-keymap */
|
|
780 {
|
|
781 keymap->table =
|
|
782 make_lisp_hash_table (size, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ);
|
|
783 /* Inverse table is often less dense because of duplicate key-bindings.
|
|
784 If not, it will grow anyway. */
|
|
785 keymap->inverse_table =
|
647
|
786 make_lisp_hash_table (size * 3 / 4, HASH_TABLE_NON_WEAK,
|
|
787 HASH_TABLE_EQ);
|
428
|
788 }
|
|
789 return result;
|
|
790 }
|
|
791
|
|
792 DEFUN ("make-keymap", Fmake_keymap, 0, 1, 0, /*
|
|
793 Construct and return a new keymap object.
|
|
794 All entries in it are nil, meaning "command undefined".
|
|
795
|
|
796 Optional argument NAME specifies a name to assign to the keymap,
|
|
797 as in `set-keymap-name'. This name is only a debugging convenience;
|
|
798 it is not used except when printing the keymap.
|
|
799 */
|
|
800 (name))
|
|
801 {
|
|
802 Lisp_Object keymap = make_keymap (60);
|
|
803 if (!NILP (name))
|
|
804 Fset_keymap_name (keymap, name);
|
|
805 return keymap;
|
|
806 }
|
|
807
|
|
808 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, 0, 1, 0, /*
|
|
809 Construct and return a new keymap object.
|
|
810 All entries in it are nil, meaning "command undefined". The only
|
444
|
811 difference between this function and `make-keymap' is that this function
|
428
|
812 returns a "smaller" keymap (one that is expected to contain fewer
|
444
|
813 entries). As keymaps dynamically resize, this distinction is not great.
|
428
|
814
|
|
815 Optional argument NAME specifies a name to assign to the keymap,
|
|
816 as in `set-keymap-name'. This name is only a debugging convenience;
|
|
817 it is not used except when printing the keymap.
|
|
818 */
|
|
819 (name))
|
|
820 {
|
|
821 Lisp_Object keymap = make_keymap (8);
|
|
822 if (!NILP (name))
|
|
823 Fset_keymap_name (keymap, name);
|
|
824 return keymap;
|
|
825 }
|
|
826
|
|
827 DEFUN ("keymap-parents", Fkeymap_parents, 1, 1, 0, /*
|
|
828 Return the `parent' keymaps of KEYMAP, or nil.
|
|
829 The parents of a keymap are searched for keybindings when a key sequence
|
|
830 isn't bound in this one. `(current-global-map)' is the default parent
|
|
831 of all keymaps.
|
|
832 */
|
|
833 (keymap))
|
|
834 {
|
|
835 keymap = get_keymap (keymap, 1, 1);
|
|
836 return Fcopy_sequence (XKEYMAP (keymap)->parents);
|
|
837 }
|
|
838
|
|
839
|
|
840
|
|
841 static Lisp_Object
|
2286
|
842 traverse_keymaps_noop (Lisp_Object UNUSED (keymap), void *UNUSED (arg))
|
428
|
843 {
|
|
844 return Qnil;
|
|
845 }
|
|
846
|
|
847 DEFUN ("set-keymap-parents", Fset_keymap_parents, 2, 2, 0, /*
|
|
848 Set the `parent' keymaps of KEYMAP to PARENTS.
|
|
849 The parents of a keymap are searched for keybindings when a key sequence
|
|
850 isn't bound in this one. `(current-global-map)' is the default parent
|
|
851 of all keymaps.
|
|
852 */
|
|
853 (keymap, parents))
|
|
854 {
|
|
855 /* This function can GC */
|
|
856 Lisp_Object k;
|
|
857 struct gcpro gcpro1, gcpro2;
|
|
858
|
|
859 GCPRO2 (keymap, parents);
|
|
860 keymap = get_keymap (keymap, 1, 1);
|
|
861
|
|
862 if (KEYMAPP (parents)) /* backwards-compatibility */
|
|
863 parents = list1 (parents);
|
|
864 if (!NILP (parents))
|
|
865 {
|
|
866 Lisp_Object tail = parents;
|
|
867 while (!NILP (tail))
|
|
868 {
|
|
869 QUIT;
|
|
870 CHECK_CONS (tail);
|
|
871 k = XCAR (tail);
|
|
872 /* Require that it be an actual keymap object, rather than a symbol
|
|
873 with a (crockish) symbol-function which is a keymap */
|
|
874 CHECK_KEYMAP (k); /* get_keymap (k, 1, 1); */
|
|
875 tail = XCDR (tail);
|
|
876 }
|
|
877 }
|
|
878
|
|
879 /* Check for circularities */
|
|
880 traverse_keymaps (keymap, parents, traverse_keymaps_noop, 0);
|
|
881 keymap_tick++;
|
|
882 XKEYMAP (keymap)->parents = Fcopy_sequence (parents);
|
|
883 UNGCPRO;
|
|
884 return parents;
|
|
885 }
|
|
886
|
|
887 DEFUN ("set-keymap-name", Fset_keymap_name, 2, 2, 0, /*
|
|
888 Set the `name' of the KEYMAP to NEW-NAME.
|
|
889 The name is only a debugging convenience; it is not used except
|
|
890 when printing the keymap.
|
|
891 */
|
|
892 (keymap, new_name))
|
|
893 {
|
|
894 keymap = get_keymap (keymap, 1, 1);
|
|
895
|
|
896 XKEYMAP (keymap)->name = new_name;
|
|
897 return new_name;
|
|
898 }
|
|
899
|
|
900 DEFUN ("keymap-name", Fkeymap_name, 1, 1, 0, /*
|
|
901 Return the `name' of KEYMAP.
|
|
902 The name is only a debugging convenience; it is not used except
|
|
903 when printing the keymap.
|
|
904 */
|
|
905 (keymap))
|
|
906 {
|
|
907 keymap = get_keymap (keymap, 1, 1);
|
|
908
|
|
909 return XKEYMAP (keymap)->name;
|
|
910 }
|
|
911
|
|
912 DEFUN ("set-keymap-prompt", Fset_keymap_prompt, 2, 2, 0, /*
|
|
913 Set the `prompt' of KEYMAP to string NEW-PROMPT, or `nil'
|
|
914 if no prompt is desired. The prompt is shown in the echo-area
|
|
915 when reading a key-sequence to be looked-up in this keymap.
|
|
916 */
|
|
917 (keymap, new_prompt))
|
|
918 {
|
|
919 keymap = get_keymap (keymap, 1, 1);
|
|
920
|
|
921 if (!NILP (new_prompt))
|
|
922 CHECK_STRING (new_prompt);
|
|
923
|
|
924 XKEYMAP (keymap)->prompt = new_prompt;
|
|
925 return new_prompt;
|
|
926 }
|
|
927
|
|
928 static Lisp_Object
|
2286
|
929 keymap_prompt_mapper (Lisp_Object keymap, void *UNUSED (arg))
|
428
|
930 {
|
|
931 return XKEYMAP (keymap)->prompt;
|
|
932 }
|
|
933
|
|
934
|
|
935 DEFUN ("keymap-prompt", Fkeymap_prompt, 1, 2, 0, /*
|
|
936 Return the `prompt' of KEYMAP.
|
|
937 If non-nil, the prompt is shown in the echo-area
|
|
938 when reading a key-sequence to be looked-up in this keymap.
|
|
939 */
|
|
940 (keymap, use_inherited))
|
|
941 {
|
|
942 /* This function can GC */
|
|
943 Lisp_Object prompt;
|
|
944
|
|
945 keymap = get_keymap (keymap, 1, 1);
|
|
946 prompt = XKEYMAP (keymap)->prompt;
|
|
947 if (!NILP (prompt) || NILP (use_inherited))
|
|
948 return prompt;
|
|
949 else
|
|
950 return traverse_keymaps (keymap, Qnil, keymap_prompt_mapper, 0);
|
|
951 }
|
|
952
|
|
953 DEFUN ("set-keymap-default-binding", Fset_keymap_default_binding, 2, 2, 0, /*
|
|
954 Sets the default binding of KEYMAP to COMMAND, or `nil'
|
|
955 if no default is desired. The default-binding is returned when
|
|
956 no other binding for a key-sequence is found in the keymap.
|
|
957 If a keymap has a non-nil default-binding, neither the keymap's
|
|
958 parents nor the current global map are searched for key bindings.
|
|
959 */
|
|
960 (keymap, command))
|
|
961 {
|
|
962 /* This function can GC */
|
|
963 keymap = get_keymap (keymap, 1, 1);
|
|
964
|
|
965 XKEYMAP (keymap)->default_binding = command;
|
|
966 return command;
|
|
967 }
|
|
968
|
|
969 DEFUN ("keymap-default-binding", Fkeymap_default_binding, 1, 1, 0, /*
|
|
970 Return the default binding of KEYMAP, or `nil' if it has none.
|
|
971 The default-binding is returned when no other binding for a key-sequence
|
|
972 is found in the keymap.
|
|
973 If a keymap has a non-nil default-binding, neither the keymap's
|
|
974 parents nor the current global map are searched for key bindings.
|
|
975 */
|
|
976 (keymap))
|
|
977 {
|
|
978 /* This function can GC */
|
|
979 keymap = get_keymap (keymap, 1, 1);
|
|
980 return XKEYMAP (keymap)->default_binding;
|
|
981 }
|
|
982
|
|
983 DEFUN ("keymapp", Fkeymapp, 1, 1, 0, /*
|
444
|
984 Return t if OBJECT is a keymap object.
|
428
|
985 The keymap may be autoloaded first if necessary.
|
|
986 */
|
|
987 (object))
|
|
988 {
|
|
989 /* This function can GC */
|
|
990 return KEYMAPP (get_keymap (object, 0, 0)) ? Qt : Qnil;
|
|
991 }
|
|
992
|
|
993 /* Check that OBJECT is a keymap (after dereferencing through any
|
|
994 symbols). If it is, return it.
|
|
995
|
|
996 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
|
|
997 is an autoload form, do the autoload and try again.
|
|
998 If AUTOLOAD is nonzero, callers must assume GC is possible.
|
|
999
|
|
1000 ERRORP controls how we respond if OBJECT isn't a keymap.
|
|
1001 If ERRORP is non-zero, signal an error; otherwise, just return Qnil.
|
|
1002
|
|
1003 Note that most of the time, we don't want to pursue autoloads.
|
|
1004 Functions like Faccessible_keymaps which scan entire keymap trees
|
|
1005 shouldn't load every autoloaded keymap. I'm not sure about this,
|
|
1006 but it seems to me that only read_key_sequence, Flookup_key, and
|
|
1007 Fdefine_key should cause keymaps to be autoloaded. */
|
|
1008
|
|
1009 Lisp_Object
|
|
1010 get_keymap (Lisp_Object object, int errorp, int autoload)
|
|
1011 {
|
|
1012 /* This function can GC */
|
|
1013 while (1)
|
|
1014 {
|
|
1015 Lisp_Object tem = indirect_function (object, 0);
|
|
1016
|
|
1017 if (KEYMAPP (tem))
|
|
1018 return tem;
|
|
1019 /* Should we do an autoload? */
|
|
1020 else if (autoload
|
|
1021 /* (autoload "filename" doc nil keymap) */
|
|
1022 && SYMBOLP (object)
|
|
1023 && CONSP (tem)
|
|
1024 && EQ (XCAR (tem), Qautoload)
|
|
1025 && EQ (Fcar (Fcdr (Fcdr (Fcdr (Fcdr (tem))))), Qkeymap))
|
|
1026 {
|
970
|
1027 /* do_autoload GCPROs both arguments */
|
428
|
1028 do_autoload (tem, object);
|
|
1029 }
|
|
1030 else if (errorp)
|
|
1031 object = wrong_type_argument (Qkeymapp, object);
|
|
1032 else
|
|
1033 return Qnil;
|
|
1034 }
|
|
1035 }
|
|
1036
|
|
1037 /* Given OBJECT which was found in a slot in a keymap,
|
|
1038 trace indirect definitions to get the actual definition of that slot.
|
|
1039 An indirect definition is a list of the form
|
|
1040 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
|
|
1041 and INDEX is an ASCII code, or a cons of (KEYSYM . MODIFIERS).
|
|
1042 */
|
|
1043 static Lisp_Object
|
|
1044 get_keyelt (Lisp_Object object, int accept_default)
|
|
1045 {
|
|
1046 /* This function can GC */
|
|
1047 Lisp_Object map;
|
|
1048
|
|
1049 tail_recurse:
|
|
1050 if (!CONSP (object))
|
|
1051 return object;
|
|
1052
|
|
1053 {
|
|
1054 struct gcpro gcpro1;
|
|
1055 GCPRO1 (object);
|
|
1056 map = XCAR (object);
|
|
1057 map = get_keymap (map, 0, 1);
|
|
1058 UNGCPRO;
|
|
1059 }
|
|
1060 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
|
|
1061 if (!NILP (map))
|
|
1062 {
|
|
1063 Lisp_Object idx = Fcdr (object);
|
934
|
1064 Lisp_Key_Data indirection;
|
428
|
1065 if (CHARP (idx))
|
|
1066 {
|
934
|
1067 Lisp_Object event = Fmake_event (Qnil, Qnil);
|
|
1068 struct gcpro gcpro1;
|
|
1069 GCPRO1 (event);
|
|
1070 character_to_event (XCHAR (idx), XEVENT (event),
|
|
1071 XCONSOLE (Vselected_console), 0, 0);
|
1204
|
1072 indirection.keysym = XEVENT_KEY_KEYSYM (event);
|
|
1073 indirection.modifiers = XEVENT_KEY_MODIFIERS (event);
|
|
1074 UNGCPRO;
|
428
|
1075 }
|
|
1076 else if (CONSP (idx))
|
|
1077 {
|
|
1078 if (!INTP (XCDR (idx)))
|
|
1079 return Qnil;
|
|
1080 indirection.keysym = XCAR (idx);
|
442
|
1081 indirection.modifiers = (unsigned char) XINT (XCDR (idx));
|
428
|
1082 }
|
|
1083 else if (SYMBOLP (idx))
|
|
1084 {
|
|
1085 indirection.keysym = idx;
|
934
|
1086 SET_KEY_DATA_MODIFIERS (&indirection, XINT (XCDR (idx)));
|
428
|
1087 }
|
|
1088 else
|
|
1089 {
|
|
1090 /* Random junk */
|
|
1091 return Qnil;
|
|
1092 }
|
|
1093 return raw_lookup_key (map, &indirection, 1, 0, accept_default);
|
|
1094 }
|
|
1095 else if (STRINGP (XCAR (object)))
|
|
1096 {
|
|
1097 /* If the keymap contents looks like (STRING . DEFN),
|
|
1098 use DEFN.
|
|
1099 Keymap alist elements like (CHAR MENUSTRING . DEFN)
|
|
1100 will be used by HierarKey menus. */
|
|
1101 object = XCDR (object);
|
|
1102 goto tail_recurse;
|
|
1103 }
|
|
1104 else
|
|
1105 {
|
|
1106 /* Anything else is really the value. */
|
|
1107 return object;
|
|
1108 }
|
|
1109 }
|
|
1110
|
|
1111 static Lisp_Object
|
934
|
1112 keymap_lookup_1 (Lisp_Object keymap, const Lisp_Key_Data *key,
|
428
|
1113 int accept_default)
|
|
1114 {
|
|
1115 /* This function can GC */
|
934
|
1116 return get_keyelt (keymap_lookup_directly (keymap,
|
|
1117 KEY_DATA_KEYSYM (key),
|
|
1118 KEY_DATA_MODIFIERS (key)),
|
|
1119 accept_default);
|
428
|
1120 }
|
|
1121
|
|
1122
|
|
1123 /************************************************************************/
|
|
1124 /* Copying keymaps */
|
|
1125 /************************************************************************/
|
|
1126
|
|
1127 struct copy_keymap_inverse_closure
|
|
1128 {
|
|
1129 Lisp_Object inverse_table;
|
|
1130 };
|
|
1131
|
|
1132 static int
|
|
1133 copy_keymap_inverse_mapper (Lisp_Object key, Lisp_Object value,
|
|
1134 void *copy_keymap_inverse_closure)
|
|
1135 {
|
|
1136 struct copy_keymap_inverse_closure *closure =
|
|
1137 (struct copy_keymap_inverse_closure *) copy_keymap_inverse_closure;
|
|
1138
|
|
1139 /* copy-sequence deals with dotted lists. */
|
|
1140 if (CONSP (value))
|
|
1141 value = Fcopy_list (value);
|
|
1142 Fputhash (key, value, closure->inverse_table);
|
|
1143
|
|
1144 return 0;
|
|
1145 }
|
|
1146
|
|
1147
|
|
1148 static Lisp_Object
|
|
1149 copy_keymap_internal (Lisp_Keymap *keymap)
|
|
1150 {
|
|
1151 Lisp_Object nkm = make_keymap (0);
|
|
1152 Lisp_Keymap *new_keymap = XKEYMAP (nkm);
|
|
1153 struct copy_keymap_inverse_closure copy_keymap_inverse_closure;
|
|
1154 copy_keymap_inverse_closure.inverse_table = keymap->inverse_table;
|
|
1155
|
|
1156 new_keymap->parents = Fcopy_sequence (keymap->parents);
|
|
1157 new_keymap->sub_maps_cache = Qnil; /* No submaps */
|
|
1158 new_keymap->table = Fcopy_hash_table (keymap->table);
|
|
1159 new_keymap->inverse_table = Fcopy_hash_table (keymap->inverse_table);
|
|
1160 new_keymap->default_binding = keymap->default_binding;
|
|
1161 /* After copying the inverse map, we need to copy the conses which
|
|
1162 are its values, lest they be shared by the copy, and mangled.
|
|
1163 */
|
|
1164 elisp_maphash (copy_keymap_inverse_mapper, keymap->inverse_table,
|
|
1165 ©_keymap_inverse_closure);
|
|
1166 return nkm;
|
|
1167 }
|
|
1168
|
|
1169
|
|
1170 static Lisp_Object copy_keymap (Lisp_Object keymap);
|
|
1171
|
|
1172 struct copy_keymap_closure
|
|
1173 {
|
|
1174 Lisp_Keymap *self;
|
|
1175 };
|
|
1176
|
|
1177 static int
|
|
1178 copy_keymap_mapper (Lisp_Object key, Lisp_Object value,
|
|
1179 void *copy_keymap_closure)
|
|
1180 {
|
|
1181 /* This function can GC */
|
|
1182 struct copy_keymap_closure *closure =
|
|
1183 (struct copy_keymap_closure *) copy_keymap_closure;
|
|
1184
|
|
1185 /* When we encounter a keymap which is indirected through a
|
|
1186 symbol, we need to copy the sub-map. In v18, the form
|
|
1187 (lookup-key (copy-keymap global-map) "\C-x")
|
|
1188 returned a new keymap, not the symbol 'Control-X-prefix.
|
|
1189 */
|
|
1190 value = get_keymap (value, 0, 1); /* #### autoload GC-safe here? */
|
|
1191 if (KEYMAPP (value))
|
|
1192 keymap_store_internal (key, closure->self,
|
|
1193 copy_keymap (value));
|
|
1194 return 0;
|
|
1195 }
|
|
1196
|
|
1197 static Lisp_Object
|
|
1198 copy_keymap (Lisp_Object keymap)
|
|
1199 {
|
|
1200 /* This function can GC */
|
|
1201 struct copy_keymap_closure copy_keymap_closure;
|
|
1202
|
|
1203 keymap = copy_keymap_internal (XKEYMAP (keymap));
|
|
1204 copy_keymap_closure.self = XKEYMAP (keymap);
|
|
1205 elisp_maphash (copy_keymap_mapper,
|
|
1206 XKEYMAP (keymap)->table,
|
|
1207 ©_keymap_closure);
|
|
1208 return keymap;
|
|
1209 }
|
|
1210
|
|
1211 DEFUN ("copy-keymap", Fcopy_keymap, 1, 1, 0, /*
|
|
1212 Return a copy of the keymap KEYMAP.
|
|
1213 The copy starts out with the same definitions of KEYMAP,
|
|
1214 but changing either the copy or KEYMAP does not affect the other.
|
|
1215 Any key definitions that are subkeymaps are recursively copied.
|
|
1216 */
|
|
1217 (keymap))
|
|
1218 {
|
|
1219 /* This function can GC */
|
|
1220 keymap = get_keymap (keymap, 1, 1);
|
|
1221 return copy_keymap (keymap);
|
|
1222 }
|
|
1223
|
|
1224
|
|
1225 static int
|
|
1226 keymap_fullness (Lisp_Object keymap)
|
|
1227 {
|
|
1228 /* This function can GC */
|
|
1229 int fullness;
|
|
1230 Lisp_Object sub_maps;
|
|
1231 struct gcpro gcpro1, gcpro2;
|
|
1232
|
|
1233 keymap = get_keymap (keymap, 1, 1);
|
440
|
1234 fullness = XINT (Fhash_table_count (XKEYMAP (keymap)->table));
|
428
|
1235 GCPRO2 (keymap, sub_maps);
|
440
|
1236 for (sub_maps = keymap_submaps (keymap);
|
|
1237 !NILP (sub_maps);
|
|
1238 sub_maps = XCDR (sub_maps))
|
428
|
1239 {
|
|
1240 if (MODIFIER_HASH_KEY_BITS (XCAR (XCAR (sub_maps))) != 0)
|
|
1241 {
|
440
|
1242 Lisp_Object bucky_map = XCDR (XCAR (sub_maps));
|
|
1243 fullness--; /* don't count bucky maps themselves. */
|
|
1244 fullness += keymap_fullness (bucky_map);
|
428
|
1245 }
|
|
1246 }
|
|
1247 UNGCPRO;
|
|
1248 return fullness;
|
|
1249 }
|
|
1250
|
|
1251 DEFUN ("keymap-fullness", Fkeymap_fullness, 1, 1, 0, /*
|
|
1252 Return the number of bindings in the keymap.
|
|
1253 */
|
|
1254 (keymap))
|
|
1255 {
|
|
1256 /* This function can GC */
|
|
1257 return make_int (keymap_fullness (get_keymap (keymap, 1, 1)));
|
|
1258 }
|
|
1259
|
|
1260
|
|
1261 /************************************************************************/
|
|
1262 /* Defining keys in keymaps */
|
|
1263 /************************************************************************/
|
|
1264
|
|
1265 /* Given a keysym (should be a symbol, int, char), make sure it's valid
|
|
1266 and perform any necessary canonicalization. */
|
|
1267
|
|
1268 static void
|
|
1269 define_key_check_and_coerce_keysym (Lisp_Object spec,
|
|
1270 Lisp_Object *keysym,
|
442
|
1271 int modifiers)
|
428
|
1272 {
|
|
1273 /* Now, check and massage the trailing keysym specifier. */
|
|
1274 if (SYMBOLP (*keysym))
|
|
1275 {
|
826
|
1276 if (string_char_length (XSYMBOL (*keysym)->name) == 1)
|
428
|
1277 {
|
|
1278 Lisp_Object ream_gcc_up_the_ass =
|
867
|
1279 make_char (string_ichar (XSYMBOL (*keysym)->name, 0));
|
428
|
1280 *keysym = ream_gcc_up_the_ass;
|
|
1281 goto fixnum_keysym;
|
|
1282 }
|
|
1283 }
|
|
1284 else if (CHAR_OR_CHAR_INTP (*keysym))
|
|
1285 {
|
|
1286 CHECK_CHAR_COERCE_INT (*keysym);
|
|
1287 fixnum_keysym:
|
|
1288 if (XCHAR (*keysym) < ' '
|
|
1289 /* || (XCHAR (*keysym) >= 128 && XCHAR (*keysym) < 160) */)
|
|
1290 /* yuck! Can't make the above restriction; too many compatibility
|
|
1291 problems ... */
|
563
|
1292 invalid_argument ("keysym char must be printable", *keysym);
|
428
|
1293 /* #### This bites! I want to be able to write (control shift a) */
|
442
|
1294 if (modifiers & XEMACS_MOD_SHIFT)
|
563
|
1295 invalid_argument
|
428
|
1296 ("The `shift' modifier may not be applied to ASCII keysyms",
|
|
1297 spec);
|
|
1298 }
|
|
1299 else
|
|
1300 {
|
563
|
1301 invalid_argument ("Unknown keysym specifier", *keysym);
|
428
|
1302 }
|
|
1303
|
|
1304 if (SYMBOLP (*keysym))
|
|
1305 {
|
867
|
1306 Ibyte *name = XSTRING_DATA (XSYMBOL (*keysym)->name);
|
428
|
1307
|
|
1308 /* FSFmacs uses symbols with the printed representation of keysyms in
|
|
1309 their names, like 'M-x, and we use the syntax '(meta x). So, to avoid
|
|
1310 confusion, notice the M-x syntax and signal an error - because
|
|
1311 otherwise it would be interpreted as a regular keysym, and would even
|
|
1312 show up in the list-buffers output, causing confusion to the naive.
|
|
1313
|
|
1314 We can get away with this because none of the X keysym names contain
|
|
1315 a hyphen (some contain underscore, however).
|
|
1316
|
|
1317 It might be useful to reject keysyms which are not x-valid-keysym-
|
|
1318 name-p, but that would interfere with various tricks we do to
|
|
1319 sanitize the Sun keyboards, and would make it trickier to
|
|
1320 conditionalize a .emacs file for multiple X servers.
|
|
1321 */
|
793
|
1322 if (((int) qxestrlen (name) >= 2 && name[1] == '-')
|
428
|
1323 #if 1
|
|
1324 ||
|
|
1325 /* Ok, this is a bit more dubious - prevent people from doing things
|
|
1326 like (global-set-key 'RET 'something) because that will have the
|
|
1327 same problem as above. (Gag!) Maybe we should just silently
|
|
1328 accept these as aliases for the "real" names?
|
|
1329 */
|
793
|
1330 (XSTRING_LENGTH (XSYMBOL (*keysym)->name) <= 3 &&
|
2367
|
1331 (!qxestrcmp_ascii (name, "LFD") ||
|
|
1332 !qxestrcmp_ascii (name, "TAB") ||
|
|
1333 !qxestrcmp_ascii (name, "RET") ||
|
|
1334 !qxestrcmp_ascii (name, "ESC") ||
|
|
1335 !qxestrcmp_ascii (name, "DEL") ||
|
|
1336 !qxestrcmp_ascii (name, "SPC") ||
|
|
1337 !qxestrcmp_ascii (name, "BS")))
|
428
|
1338 #endif /* unused */
|
|
1339 )
|
563
|
1340 invalid_argument
|
428
|
1341 ("Invalid (FSF Emacs) key format (see doc of define-key)",
|
|
1342 *keysym);
|
|
1343
|
|
1344 /* #### Ok, this is a bit more dubious - make people not lose if they
|
|
1345 do things like (global-set-key 'RET 'something) because that would
|
|
1346 otherwise have the same problem as above. (Gag!) We silently
|
|
1347 accept these as aliases for the "real" names.
|
|
1348 */
|
2367
|
1349 else if (!qxestrncmp_ascii (name, "kp_", 3))
|
793
|
1350 {
|
|
1351 /* Likewise, the obsolete keysym binding of kp_.* should not lose. */
|
|
1352 DECLARE_EISTRING (temp);
|
|
1353 eicpy_raw (temp, name, qxestrlen (name));
|
|
1354 eisetch_char (temp, 2, '-');
|
|
1355 *keysym = Fintern_soft (eimake_string (temp), Qnil);
|
|
1356 }
|
|
1357 else if (EQ (*keysym, QLFD))
|
428
|
1358 *keysym = QKlinefeed;
|
|
1359 else if (EQ (*keysym, QTAB))
|
|
1360 *keysym = QKtab;
|
|
1361 else if (EQ (*keysym, QRET))
|
|
1362 *keysym = QKreturn;
|
|
1363 else if (EQ (*keysym, QESC))
|
|
1364 *keysym = QKescape;
|
|
1365 else if (EQ (*keysym, QDEL))
|
|
1366 *keysym = QKdelete;
|
|
1367 else if (EQ (*keysym, QSPC))
|
|
1368 *keysym = QKspace;
|
|
1369 else if (EQ (*keysym, QBS))
|
|
1370 *keysym = QKbackspace;
|
|
1371 /* Emacs compatibility */
|
|
1372 else if (EQ(*keysym, Qdown_mouse_1))
|
|
1373 *keysym = Qbutton1;
|
|
1374 else if (EQ(*keysym, Qdown_mouse_2))
|
|
1375 *keysym = Qbutton2;
|
|
1376 else if (EQ(*keysym, Qdown_mouse_3))
|
|
1377 *keysym = Qbutton3;
|
|
1378 else if (EQ(*keysym, Qdown_mouse_4))
|
|
1379 *keysym = Qbutton4;
|
|
1380 else if (EQ(*keysym, Qdown_mouse_5))
|
|
1381 *keysym = Qbutton5;
|
458
|
1382 else if (EQ(*keysym, Qdown_mouse_6))
|
|
1383 *keysym = Qbutton6;
|
|
1384 else if (EQ(*keysym, Qdown_mouse_7))
|
|
1385 *keysym = Qbutton7;
|
428
|
1386 else if (EQ(*keysym, Qmouse_1))
|
|
1387 *keysym = Qbutton1up;
|
|
1388 else if (EQ(*keysym, Qmouse_2))
|
|
1389 *keysym = Qbutton2up;
|
|
1390 else if (EQ(*keysym, Qmouse_3))
|
|
1391 *keysym = Qbutton3up;
|
|
1392 else if (EQ(*keysym, Qmouse_4))
|
|
1393 *keysym = Qbutton4up;
|
|
1394 else if (EQ(*keysym, Qmouse_5))
|
|
1395 *keysym = Qbutton5up;
|
458
|
1396 else if (EQ(*keysym, Qmouse_6))
|
|
1397 *keysym = Qbutton6up;
|
|
1398 else if (EQ(*keysym, Qmouse_7))
|
|
1399 *keysym = Qbutton7up;
|
428
|
1400 }
|
|
1401 }
|
|
1402
|
|
1403
|
|
1404 /* Given any kind of key-specifier, return a keysym and modifier mask.
|
|
1405 Proper canonicalization is performed:
|
|
1406
|
|
1407 -- integers are converted into the equivalent characters.
|
|
1408 -- one-character strings are converted into the equivalent characters.
|
|
1409 */
|
|
1410
|
|
1411 static void
|
934
|
1412 define_key_parser (Lisp_Object spec, Lisp_Key_Data *returned_value)
|
428
|
1413 {
|
|
1414 if (CHAR_OR_CHAR_INTP (spec))
|
|
1415 {
|
934
|
1416 Lisp_Object event = Fmake_event (Qnil, Qnil);
|
|
1417 struct gcpro gcpro1;
|
|
1418 GCPRO1 (event);
|
|
1419 character_to_event (XCHAR_OR_CHAR_INT (spec), XEVENT (event),
|
|
1420 XCONSOLE (Vselected_console), 0, 0);
|
1204
|
1421 SET_KEY_DATA_KEYSYM (returned_value, XEVENT_KEY_KEYSYM (event));
|
934
|
1422 SET_KEY_DATA_MODIFIERS (returned_value,
|
1204
|
1423 XEVENT_KEY_MODIFIERS (event));
|
|
1424 UNGCPRO;
|
428
|
1425 }
|
|
1426 else if (EVENTP (spec))
|
|
1427 {
|
934
|
1428 switch (XEVENT_TYPE (spec))
|
428
|
1429 {
|
|
1430 case key_press_event:
|
|
1431 {
|
1204
|
1432 SET_KEY_DATA_KEYSYM (returned_value, XEVENT_KEY_KEYSYM (spec));
|
|
1433 SET_KEY_DATA_MODIFIERS (returned_value, XEVENT_KEY_MODIFIERS (spec));
|
428
|
1434 break;
|
|
1435 }
|
|
1436 case button_press_event:
|
|
1437 case button_release_event:
|
|
1438 {
|
934
|
1439 int down = (XEVENT_TYPE (spec) == button_press_event);
|
1204
|
1440 switch (XEVENT_BUTTON_BUTTON (spec))
|
934
|
1441 {
|
|
1442 case 1:
|
|
1443 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton1 : Qbutton1up));
|
|
1444 break;
|
|
1445 case 2:
|
|
1446 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton2 : Qbutton2up));
|
|
1447 break;
|
|
1448 case 3:
|
|
1449 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton3 : Qbutton3up));
|
|
1450 break;
|
|
1451 case 4:
|
|
1452 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton4 : Qbutton4up));
|
|
1453 break;
|
|
1454 case 5:
|
|
1455 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton5 : Qbutton5up));
|
|
1456 break;
|
|
1457 case 6:
|
|
1458 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton6 : Qbutton6up));
|
|
1459 break;
|
|
1460 case 7:
|
|
1461 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton7 : Qbutton7up));
|
|
1462 break;
|
|
1463 default:
|
|
1464 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton0 : Qbutton0up));
|
|
1465 break;
|
|
1466 }
|
1204
|
1467 SET_KEY_DATA_MODIFIERS (returned_value, XEVENT_BUTTON_MODIFIERS (spec));
|
428
|
1468 break;
|
|
1469 }
|
|
1470 default:
|
563
|
1471 wtaerror ("unable to bind this type of event", spec);
|
428
|
1472 }
|
|
1473 }
|
|
1474 else if (SYMBOLP (spec))
|
|
1475 {
|
|
1476 /* Be nice, allow = to mean (=) */
|
|
1477 if (bucky_sym_to_bucky_bit (spec) != 0)
|
563
|
1478 invalid_argument ("Key is a modifier name", spec);
|
428
|
1479 define_key_check_and_coerce_keysym (spec, &spec, 0);
|
934
|
1480 SET_KEY_DATA_KEYSYM (returned_value, spec);
|
|
1481 SET_KEY_DATA_MODIFIERS (returned_value, 0);
|
428
|
1482 }
|
|
1483 else if (CONSP (spec))
|
|
1484 {
|
442
|
1485 int modifiers = 0;
|
428
|
1486 Lisp_Object keysym = Qnil;
|
|
1487 Lisp_Object rest = spec;
|
|
1488
|
|
1489 /* First, parse out the leading modifier symbols. */
|
|
1490 while (CONSP (rest))
|
|
1491 {
|
442
|
1492 int modifier;
|
428
|
1493
|
|
1494 keysym = XCAR (rest);
|
|
1495 modifier = bucky_sym_to_bucky_bit (keysym);
|
|
1496 modifiers |= modifier;
|
|
1497 if (!NILP (XCDR (rest)))
|
|
1498 {
|
|
1499 if (! modifier)
|
563
|
1500 invalid_argument ("Unknown modifier", keysym);
|
428
|
1501 }
|
|
1502 else
|
|
1503 {
|
|
1504 if (modifier)
|
563
|
1505 sferror ("Nothing but modifiers here",
|
428
|
1506 spec);
|
|
1507 }
|
|
1508 rest = XCDR (rest);
|
|
1509 QUIT;
|
|
1510 }
|
|
1511 if (!NILP (rest))
|
563
|
1512 signal_error (Qlist_formation_error,
|
|
1513 "List must be nil-terminated", spec);
|
428
|
1514
|
|
1515 define_key_check_and_coerce_keysym (spec, &keysym, modifiers);
|
934
|
1516 SET_KEY_DATA_KEYSYM(returned_value, keysym);
|
|
1517 SET_KEY_DATA_MODIFIERS (returned_value, modifiers);
|
428
|
1518 }
|
|
1519 else
|
|
1520 {
|
563
|
1521 invalid_argument ("Unknown key-sequence specifier",
|
428
|
1522 spec);
|
|
1523 }
|
|
1524 }
|
|
1525
|
|
1526 /* Used by character-to-event */
|
|
1527 void
|
|
1528 key_desc_list_to_event (Lisp_Object list, Lisp_Object event,
|
|
1529 int allow_menu_events)
|
|
1530 {
|
934
|
1531 Lisp_Key_Data raw_key;
|
428
|
1532
|
|
1533 if (allow_menu_events &&
|
|
1534 CONSP (list) &&
|
|
1535 /* #### where the hell does this come from? */
|
|
1536 EQ (XCAR (list), Qmenu_selection))
|
|
1537 {
|
|
1538 Lisp_Object fn, arg;
|
|
1539 if (! NILP (Fcdr (Fcdr (list))))
|
563
|
1540 invalid_argument ("Invalid menu event desc", list);
|
428
|
1541 arg = Fcar (Fcdr (list));
|
|
1542 if (SYMBOLP (arg))
|
|
1543 fn = Qcall_interactively;
|
|
1544 else
|
|
1545 fn = Qeval;
|
934
|
1546 XSET_EVENT_TYPE (event, misc_user_event);
|
1204
|
1547 XSET_EVENT_CHANNEL (event, wrap_frame (selected_frame ()));
|
|
1548 XSET_EVENT_MISC_USER_FUNCTION (event, fn);
|
|
1549 XSET_EVENT_MISC_USER_OBJECT (event, arg);
|
428
|
1550 return;
|
|
1551 }
|
|
1552
|
|
1553 define_key_parser (list, &raw_key);
|
|
1554
|
|
1555 if (EQ (raw_key.keysym, Qbutton0) || EQ (raw_key.keysym, Qbutton0up) ||
|
|
1556 EQ (raw_key.keysym, Qbutton1) || EQ (raw_key.keysym, Qbutton1up) ||
|
|
1557 EQ (raw_key.keysym, Qbutton2) || EQ (raw_key.keysym, Qbutton2up) ||
|
|
1558 EQ (raw_key.keysym, Qbutton3) || EQ (raw_key.keysym, Qbutton3up) ||
|
|
1559 EQ (raw_key.keysym, Qbutton4) || EQ (raw_key.keysym, Qbutton4up) ||
|
|
1560 EQ (raw_key.keysym, Qbutton5) || EQ (raw_key.keysym, Qbutton5up) ||
|
|
1561 EQ (raw_key.keysym, Qbutton6) || EQ (raw_key.keysym, Qbutton6up) ||
|
|
1562 EQ (raw_key.keysym, Qbutton7) || EQ (raw_key.keysym, Qbutton7up))
|
563
|
1563 invalid_operation ("Mouse-clicks can't appear in saved keyboard macros",
|
|
1564 Qunbound);
|
428
|
1565
|
934
|
1566 XSET_EVENT_CHANNEL (event, Vselected_console);
|
|
1567 XSET_EVENT_TYPE (event, key_press_event);
|
1204
|
1568 XSET_EVENT_KEY_KEYSYM (event, raw_key.keysym);
|
|
1569 XSET_EVENT_KEY_MODIFIERS (event, KEY_DATA_MODIFIERS (&raw_key));
|
428
|
1570 }
|
|
1571
|
|
1572
|
|
1573 int
|
1204
|
1574 event_matches_key_specifier_p (Lisp_Object event, Lisp_Object key_specifier)
|
428
|
1575 {
|
446
|
1576 Lisp_Object event2 = Qnil;
|
428
|
1577 int retval;
|
|
1578 struct gcpro gcpro1;
|
|
1579
|
1204
|
1580 if (XEVENT_TYPE (event) != key_press_event || NILP (key_specifier) ||
|
428
|
1581 (INTP (key_specifier) && !CHAR_INTP (key_specifier)))
|
|
1582 return 0;
|
|
1583
|
|
1584 /* if the specifier is an integer such as 27, then it should match
|
|
1585 both of the events 'escape' and 'control ['. Calling
|
|
1586 Fcharacter_to_event() will only match 'escape'. */
|
|
1587 if (CHAR_OR_CHAR_INTP (key_specifier))
|
|
1588 return (XCHAR_OR_CHAR_INT (key_specifier)
|
2828
|
1589 == event_to_character (event, 0, 0));
|
428
|
1590
|
|
1591 /* Otherwise, we cannot call event_to_character() because we may
|
|
1592 be dealing with non-ASCII keystrokes. In any case, if I ask
|
|
1593 for 'control [' then I should get exactly that, and not
|
|
1594 'escape'.
|
|
1595
|
|
1596 However, we have to behave differently on TTY's, where 'control ['
|
|
1597 is silently converted into 'escape' by the keyboard driver.
|
|
1598 In this case, ASCII is the only thing we know about, so we have
|
|
1599 to compare the ASCII values. */
|
|
1600
|
|
1601 GCPRO1 (event2);
|
1204
|
1602 if (EVENTP (key_specifier))
|
|
1603 event2 = Fcopy_event (key_specifier, Qnil);
|
|
1604 else
|
|
1605 event2 = Fcharacter_to_event (key_specifier, Qnil, Qnil, Qnil);
|
428
|
1606 if (XEVENT (event2)->event_type != key_press_event)
|
|
1607 retval = 0;
|
1204
|
1608 else if (CONSOLE_TTY_P (XCONSOLE (XEVENT_CHANNEL (event))))
|
428
|
1609 {
|
|
1610 int ch1, ch2;
|
|
1611
|
2828
|
1612 ch1 = event_to_character (event, 0, 0);
|
|
1613 ch2 = event_to_character (event2, 0, 0);
|
428
|
1614 retval = (ch1 >= 0 && ch2 >= 0 && ch1 == ch2);
|
|
1615 }
|
1204
|
1616 else if (EQ (XEVENT_KEY_KEYSYM (event), XEVENT_KEY_KEYSYM (event2)) &&
|
|
1617 XEVENT_KEY_MODIFIERS (event) == XEVENT_KEY_MODIFIERS (event2))
|
428
|
1618 retval = 1;
|
|
1619 else
|
|
1620 retval = 0;
|
|
1621 Fdeallocate_event (event2);
|
|
1622 UNGCPRO;
|
|
1623 return retval;
|
|
1624 }
|
|
1625
|
|
1626 static int
|
934
|
1627 meta_prefix_char_p (const Lisp_Key_Data *key)
|
428
|
1628 {
|
934
|
1629 Lisp_Object event = Fmake_event (Qnil, Qnil);
|
|
1630 struct gcpro gcpro1;
|
1204
|
1631 int retval;
|
|
1632
|
934
|
1633 GCPRO1 (event);
|
|
1634
|
|
1635 XSET_EVENT_TYPE (event, key_press_event);
|
|
1636 XSET_EVENT_CHANNEL (event, Vselected_console);
|
1204
|
1637 XSET_EVENT_KEY_KEYSYM (event, KEY_DATA_KEYSYM (key));
|
|
1638 XSET_EVENT_KEY_MODIFIERS (event, KEY_DATA_MODIFIERS (key));
|
|
1639 retval = event_matches_key_specifier_p (event, Vmeta_prefix_char);
|
|
1640 UNGCPRO;
|
|
1641 return retval;
|
428
|
1642 }
|
|
1643
|
|
1644 DEFUN ("event-matches-key-specifier-p", Fevent_matches_key_specifier_p, 2, 2, 0, /*
|
|
1645 Return non-nil if EVENT matches KEY-SPECIFIER.
|
|
1646 This can be useful, e.g., to determine if the user pressed `help-char' or
|
|
1647 `quit-char'.
|
1204
|
1648
|
|
1649 KEY-SPECIFIER can be a character, integer, a symbol, a list of modifiers
|
|
1650 and symbols, or an event.
|
|
1651
|
|
1652 What this actually happens is this:
|
|
1653
|
|
1654 \(1) Return no, if EVENT is not a key press event or if KEY-SPECIFIER is nil
|
|
1655 or an integer that cannot be converted to a character.
|
|
1656
|
|
1657 \(2) If KEY-SPECIFIER is a character or integer,
|
|
1658 (event-to-character EVENT nil nil nil) is called, and the characters are
|
|
1659 compared to get the result. The reason for special-casing this and doing
|
|
1660 it this way is to ensure that, e.g., a KEY-SPECIFIER of 27 matches both
|
|
1661 a key-press `escape' and a key-press `control ['. #### Think about META
|
|
1662 argument to event-to-character.
|
|
1663
|
|
1664 \(3) If KEY-SPECIFIER is an event, fine; else, convert to an event using
|
|
1665 \(character-to-event KEY-SPECIFIER nil nil nil). If EVENT is not on a TTY,
|
|
1666 we just compare keysyms and modifiers and return yes if both are equal.
|
|
1667 For TTY, we do character-level comparison by converting both to a character
|
|
1668 with (event-to-character ... nil nil nil) and comparing the characters.
|
|
1669
|
428
|
1670 */
|
|
1671 (event, key_specifier))
|
|
1672 {
|
|
1673 CHECK_LIVE_EVENT (event);
|
1204
|
1674 return (event_matches_key_specifier_p (event, key_specifier) ? Qt : Qnil);
|
428
|
1675 }
|
1204
|
1676 #define MACROLET(k, m) do { \
|
|
1677 SET_KEY_DATA_KEYSYM (returned_value, k); \
|
|
1678 SET_KEY_DATA_MODIFIERS (returned_value, m); \
|
|
1679 RETURN_SANS_WARNINGS; \
|
934
|
1680 } while (0)
|
428
|
1681 /* ASCII grunge.
|
|
1682 Given a keysym, return another keysym/modifier pair which could be
|
|
1683 considered the same key in an ASCII world. Backspace returns ^H, for
|
|
1684 example.
|
|
1685 */
|
|
1686 static void
|
934
|
1687 define_key_alternate_name (Lisp_Key_Data *key,
|
|
1688 Lisp_Key_Data *returned_value)
|
428
|
1689 {
|
934
|
1690 Lisp_Object keysym = KEY_DATA_KEYSYM (key);
|
|
1691 int modifiers = KEY_DATA_MODIFIERS (key);
|
442
|
1692 int modifiers_sans_control = (modifiers & (~XEMACS_MOD_CONTROL));
|
|
1693 int modifiers_sans_meta = (modifiers & (~XEMACS_MOD_META));
|
934
|
1694 SET_KEY_DATA_KEYSYM (returned_value, Qnil); /* By default, no "alternate" key */
|
|
1695 SET_KEY_DATA_MODIFIERS (returned_value, 0);
|
442
|
1696 if (modifiers_sans_meta == XEMACS_MOD_CONTROL)
|
428
|
1697 {
|
722
|
1698 if (EQ (keysym, QKspace))
|
428
|
1699 MACROLET (make_char ('@'), modifiers);
|
|
1700 else if (!CHARP (keysym))
|
|
1701 return;
|
|
1702 else switch (XCHAR (keysym))
|
|
1703 {
|
|
1704 case '@': /* c-@ => c-space */
|
|
1705 MACROLET (QKspace, modifiers);
|
|
1706 case 'h': /* c-h => backspace */
|
|
1707 MACROLET (QKbackspace, modifiers_sans_control);
|
|
1708 case 'i': /* c-i => tab */
|
|
1709 MACROLET (QKtab, modifiers_sans_control);
|
|
1710 case 'j': /* c-j => linefeed */
|
|
1711 MACROLET (QKlinefeed, modifiers_sans_control);
|
|
1712 case 'm': /* c-m => return */
|
|
1713 MACROLET (QKreturn, modifiers_sans_control);
|
|
1714 case '[': /* c-[ => escape */
|
|
1715 MACROLET (QKescape, modifiers_sans_control);
|
|
1716 default:
|
|
1717 return;
|
|
1718 }
|
|
1719 }
|
|
1720 else if (modifiers_sans_meta != 0)
|
|
1721 return;
|
|
1722 else if (EQ (keysym, QKbackspace)) /* backspace => c-h */
|
442
|
1723 MACROLET (make_char ('h'), (modifiers | XEMACS_MOD_CONTROL));
|
428
|
1724 else if (EQ (keysym, QKtab)) /* tab => c-i */
|
442
|
1725 MACROLET (make_char ('i'), (modifiers | XEMACS_MOD_CONTROL));
|
428
|
1726 else if (EQ (keysym, QKlinefeed)) /* linefeed => c-j */
|
442
|
1727 MACROLET (make_char ('j'), (modifiers | XEMACS_MOD_CONTROL));
|
428
|
1728 else if (EQ (keysym, QKreturn)) /* return => c-m */
|
442
|
1729 MACROLET (make_char ('m'), (modifiers | XEMACS_MOD_CONTROL));
|
428
|
1730 else if (EQ (keysym, QKescape)) /* escape => c-[ */
|
442
|
1731 MACROLET (make_char ('['), (modifiers | XEMACS_MOD_CONTROL));
|
428
|
1732 else
|
|
1733 return;
|
|
1734 #undef MACROLET
|
|
1735 }
|
|
1736
|
|
1737 static void
|
|
1738 ensure_meta_prefix_char_keymapp (Lisp_Object keys, int indx,
|
|
1739 Lisp_Object keymap)
|
|
1740 {
|
|
1741 /* This function can GC */
|
|
1742 Lisp_Object new_keys;
|
|
1743 int i;
|
|
1744 Lisp_Object mpc_binding;
|
934
|
1745 Lisp_Key_Data meta_key;
|
428
|
1746 if (NILP (Vmeta_prefix_char) ||
|
|
1747 (INTP (Vmeta_prefix_char) && !CHAR_INTP (Vmeta_prefix_char)))
|
|
1748 return;
|
|
1749
|
|
1750 define_key_parser (Vmeta_prefix_char, &meta_key);
|
|
1751 mpc_binding = keymap_lookup_1 (keymap, &meta_key, 0);
|
|
1752 if (NILP (mpc_binding) || !NILP (Fkeymapp (mpc_binding)))
|
|
1753 return;
|
|
1754
|
|
1755 if (indx == 0)
|
|
1756 new_keys = keys;
|
|
1757 else if (STRINGP (keys))
|
|
1758 new_keys = Fsubstring (keys, Qzero, make_int (indx));
|
|
1759 else if (VECTORP (keys))
|
|
1760 {
|
|
1761 new_keys = make_vector (indx, Qnil);
|
|
1762 for (i = 0; i < indx; i++)
|
|
1763 XVECTOR_DATA (new_keys) [i] = XVECTOR_DATA (keys) [i];
|
|
1764 }
|
|
1765 else
|
442
|
1766 {
|
|
1767 new_keys = Qnil;
|
2500
|
1768 ABORT ();
|
442
|
1769 }
|
428
|
1770
|
|
1771 if (EQ (keys, new_keys))
|
563
|
1772 signal_ferror_with_frob (Qinvalid_operation, mpc_binding,
|
|
1773 "can't bind %s: %s has a non-keymap binding",
|
|
1774 (char *) XSTRING_DATA (Fkey_description (keys)),
|
|
1775 (char *) XSTRING_DATA (Fsingle_key_description
|
|
1776 (Vmeta_prefix_char)));
|
428
|
1777 else
|
563
|
1778 signal_ferror_with_frob (Qinvalid_operation, mpc_binding,
|
|
1779 "can't bind %s: %s %s has a non-keymap binding",
|
|
1780 (char *) XSTRING_DATA (Fkey_description (keys)),
|
|
1781 (char *) XSTRING_DATA (Fkey_description
|
|
1782 (new_keys)),
|
|
1783 (char *) XSTRING_DATA (Fsingle_key_description
|
|
1784 (Vmeta_prefix_char)));
|
428
|
1785 }
|
|
1786
|
|
1787 DEFUN ("define-key", Fdefine_key, 3, 3, 0, /*
|
|
1788 Define key sequence KEYS, in KEYMAP, as DEF.
|
|
1789 KEYMAP is a keymap object.
|
|
1790 KEYS is the sequence of keystrokes to bind, described below.
|
|
1791 DEF is anything that can be a key's definition:
|
|
1792 nil (means key is undefined in this keymap);
|
|
1793 a command (a Lisp function suitable for interactive calling);
|
|
1794 a string or key sequence vector (treated as a keyboard macro);
|
|
1795 a keymap (to define a prefix key);
|
|
1796 a symbol; when the key is looked up, the symbol will stand for its
|
|
1797 function definition, that should at that time be one of the above,
|
|
1798 or another symbol whose function definition is used, and so on.
|
|
1799 a cons (STRING . DEFN), meaning that DEFN is the definition
|
|
1800 (DEFN should be a valid definition in its own right);
|
|
1801 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.
|
|
1802
|
|
1803 Contrary to popular belief, the world is not ASCII. When running under a
|
771
|
1804 window system, XEmacs can tell the difference between, for example, the
|
428
|
1805 keystrokes control-h, control-shift-h, and backspace. You can, in fact,
|
|
1806 bind different commands to each of these.
|
|
1807
|
|
1808 A `key sequence' is a set of keystrokes. A `keystroke' is a keysym and some
|
|
1809 set of modifiers (such as control and meta). A `keysym' is what is printed
|
|
1810 on the keys on your keyboard.
|
|
1811
|
|
1812 A keysym may be represented by a symbol, or (if and only if it is equivalent
|
2828
|
1813 to a character with a code in the range 32 - 255) by a character or its
|
|
1814 equivalent code. The `A' key may be represented by the symbol `A', the
|
|
1815 character `?A', or by the number 65. The `break' key may be represented
|
|
1816 only by the symbol `break'.
|
428
|
1817
|
|
1818 A keystroke may be represented by a list: the last element of the list
|
|
1819 is the key (a symbol, character, or number, as above) and the
|
|
1820 preceding elements are the symbolic names of modifier keys (control,
|
|
1821 meta, super, hyper, alt, and shift). Thus, the sequence control-b is
|
|
1822 represented by the forms `(control b)', `(control ?b)', and `(control
|
|
1823 98)'. A keystroke may also be represented by an event object, as
|
|
1824 returned by the `next-command-event' and `read-key-sequence'
|
|
1825 functions.
|
|
1826
|
|
1827 Note that in this context, the keystroke `control-b' is *not* represented
|
|
1828 by the number 2 (the ASCII code for ^B) or the character `?\^B'. See below.
|
|
1829
|
|
1830 The `shift' modifier is somewhat of a special case. You should not (and
|
|
1831 cannot) use `(meta shift a)' to mean `(meta A)', since for characters that
|
|
1832 have ASCII equivalents, the state of the shift key is implicit in the
|
|
1833 keysym (a vs. A). You also cannot say `(shift =)' to mean `+', as that
|
|
1834 sort of thing varies from keyboard to keyboard. The shift modifier is for
|
|
1835 use only with characters that do not have a second keysym on the same key,
|
|
1836 such as `backspace' and `tab'.
|
|
1837
|
|
1838 A key sequence is a vector of keystrokes. As a degenerate case, elements
|
|
1839 of this vector may also be keysyms if they have no modifiers. That is,
|
|
1840 the `A' keystroke is represented by all of these forms:
|
|
1841 A ?A 65 (A) (?A) (65)
|
|
1842 [A] [?A] [65] [(A)] [(?A)] [(65)]
|
|
1843
|
|
1844 the `control-a' keystroke is represented by these forms:
|
|
1845 (control A) (control ?A) (control 65)
|
|
1846 [(control A)] [(control ?A)] [(control 65)]
|
|
1847 the key sequence `control-c control-a' is represented by these forms:
|
|
1848 [(control c) (control a)] [(control ?c) (control ?a)]
|
|
1849 [(control 99) (control 65)] etc.
|
|
1850
|
|
1851 Mouse button clicks work just like keypresses: (control button1) means
|
|
1852 pressing the left mouse button while holding down the control key.
|
|
1853 \[(control c) (shift button3)] means control-c, hold shift, click right.
|
|
1854
|
|
1855 Commands may be bound to the mouse-button up-stroke rather than the down-
|
|
1856 stroke as well. `button1' means the down-stroke, and `button1up' means the
|
|
1857 up-stroke. Different commands may be bound to the up and down strokes,
|
|
1858 though that is probably not what you want, so be careful.
|
|
1859
|
|
1860 For backward compatibility, a key sequence may also be represented by a
|
|
1861 string. In this case, it represents the key sequence(s) that would
|
|
1862 produce that sequence of ASCII characters in a purely ASCII world. For
|
|
1863 example, a string containing the ASCII backspace character, "\\^H", would
|
|
1864 represent two key sequences: `(control h)' and `backspace'. Binding a
|
|
1865 command to this will actually bind both of those key sequences. Likewise
|
|
1866 for the following pairs:
|
|
1867
|
|
1868 control h backspace
|
|
1869 control i tab
|
|
1870 control m return
|
|
1871 control j linefeed
|
|
1872 control [ escape
|
|
1873 control @ control space
|
|
1874
|
|
1875 After binding a command to two key sequences with a form like
|
|
1876
|
|
1877 (define-key global-map "\\^X\\^I" \'command-1)
|
|
1878
|
|
1879 it is possible to redefine only one of those sequences like so:
|
|
1880
|
|
1881 (define-key global-map [(control x) (control i)] \'command-2)
|
|
1882 (define-key global-map [(control x) tab] \'command-3)
|
|
1883
|
|
1884 Of course, all of this applies only when running under a window system. If
|
|
1885 you're talking to XEmacs through a TTY connection, you don't get any of
|
|
1886 these features.
|
771
|
1887
|
|
1888 To find out programmatically what a key is bound to, use `key-binding' to
|
|
1889 check all applicable keymaps, or `lookup-key' to check a specific keymap.
|
|
1890 The documentation for `key-binding' also contains a description of which
|
|
1891 keymaps are applicable in various situations. `where-is-internal' does
|
|
1892 the opposite of `key-binding', i.e. searches keymaps for the keys that
|
|
1893 map to a particular binding.
|
|
1894
|
|
1895 If you are confused about why a particular key sequence is generating a
|
|
1896 particular binding, and looking through the keymaps doesn't help, setting
|
|
1897 the variable `debug-emacs-events' may help. If not, try checking
|
|
1898 what's in `function-key-map' and `key-translation-map'.
|
428
|
1899 */
|
|
1900 (keymap, keys, def))
|
|
1901 {
|
|
1902 /* This function can GC */
|
|
1903 int idx;
|
|
1904 int metized = 0;
|
|
1905 int len;
|
|
1906 int ascii_hack;
|
|
1907 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1908
|
|
1909 if (VECTORP (keys))
|
|
1910 len = XVECTOR_LENGTH (keys);
|
|
1911 else if (STRINGP (keys))
|
826
|
1912 len = string_char_length (keys);
|
428
|
1913 else if (CHAR_OR_CHAR_INTP (keys) || SYMBOLP (keys) || CONSP (keys))
|
|
1914 {
|
|
1915 if (!CONSP (keys)) keys = list1 (keys);
|
|
1916 len = 1;
|
|
1917 keys = make_vector (1, keys); /* this is kinda sleazy. */
|
|
1918 }
|
|
1919 else
|
|
1920 {
|
|
1921 keys = wrong_type_argument (Qsequencep, keys);
|
|
1922 len = XINT (Flength (keys));
|
|
1923 }
|
|
1924 if (len == 0)
|
|
1925 return Qnil;
|
|
1926
|
|
1927 GCPRO3 (keymap, keys, def);
|
|
1928
|
|
1929 /* ASCII grunge.
|
|
1930 When the user defines a key which, in a strictly ASCII world, would be
|
|
1931 produced by two different keys (^J and linefeed, or ^H and backspace,
|
|
1932 for example) then the binding will be made for both keysyms.
|
|
1933
|
|
1934 This is done if the user binds a command to a string, as in
|
|
1935 (define-key map "\^H" 'something), but not when using one of the new
|
|
1936 syntaxes, like (define-key map '(control h) 'something).
|
|
1937 */
|
|
1938 ascii_hack = (STRINGP (keys));
|
|
1939
|
|
1940 keymap = get_keymap (keymap, 1, 1);
|
|
1941
|
|
1942 idx = 0;
|
|
1943 while (1)
|
|
1944 {
|
|
1945 Lisp_Object c;
|
934
|
1946 Lisp_Key_Data raw_key1;
|
|
1947 Lisp_Key_Data raw_key2;
|
428
|
1948 if (STRINGP (keys))
|
867
|
1949 c = make_char (string_ichar (keys, idx));
|
428
|
1950 else
|
|
1951 c = XVECTOR_DATA (keys) [idx];
|
|
1952
|
|
1953 define_key_parser (c, &raw_key1);
|
|
1954
|
|
1955 if (!metized && ascii_hack && meta_prefix_char_p (&raw_key1))
|
|
1956 {
|
|
1957 if (idx == (len - 1))
|
|
1958 {
|
|
1959 /* This is a hack to prevent a binding for the meta-prefix-char
|
|
1960 from being made in a map which already has a non-empty "meta"
|
|
1961 submap. That is, we can't let both "escape" and "meta" have
|
|
1962 a binding in the same keymap. This implies that the idiom
|
|
1963 (define-key my-map "\e" my-escape-map)
|
|
1964 (define-key my-escape-map "a" 'my-command)
|
|
1965 no longer works. That's ok. Instead the luser should do
|
|
1966 (define-key my-map "\ea" 'my-command)
|
|
1967 or, more correctly
|
|
1968 (define-key my-map "\M-a" 'my-command)
|
|
1969 and then perhaps
|
|
1970 (defvar my-escape-map (lookup-key my-map "\e"))
|
|
1971 if the luser really wants the map in a variable.
|
|
1972 */
|
440
|
1973 Lisp_Object meta_map;
|
428
|
1974 struct gcpro ngcpro1;
|
|
1975
|
|
1976 NGCPRO1 (c);
|
442
|
1977 meta_map = Fgethash (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META),
|
440
|
1978 XKEYMAP (keymap)->table, Qnil);
|
|
1979 if (!NILP (meta_map)
|
|
1980 && keymap_fullness (meta_map) != 0)
|
563
|
1981 invalid_operation_2
|
440
|
1982 ("Map contains meta-bindings, can't bind",
|
|
1983 Fsingle_key_description (Vmeta_prefix_char), keymap);
|
428
|
1984 NUNGCPRO;
|
|
1985 }
|
|
1986 else
|
|
1987 {
|
|
1988 metized = 1;
|
|
1989 idx++;
|
|
1990 continue;
|
|
1991 }
|
|
1992 }
|
|
1993
|
|
1994 if (ascii_hack)
|
|
1995 define_key_alternate_name (&raw_key1, &raw_key2);
|
|
1996 else
|
|
1997 {
|
|
1998 raw_key2.keysym = Qnil;
|
|
1999 raw_key2.modifiers = 0;
|
|
2000 }
|
|
2001
|
|
2002 if (metized)
|
|
2003 {
|
442
|
2004 raw_key1.modifiers |= XEMACS_MOD_META;
|
|
2005 raw_key2.modifiers |= XEMACS_MOD_META;
|
428
|
2006 metized = 0;
|
|
2007 }
|
|
2008
|
|
2009 /* This crap is to make sure that someone doesn't bind something like
|
|
2010 "C-x M-a" while "C-x ESC" has a non-keymap binding. */
|
442
|
2011 if (raw_key1.modifiers & XEMACS_MOD_META)
|
428
|
2012 ensure_meta_prefix_char_keymapp (keys, idx, keymap);
|
|
2013
|
|
2014 if (++idx == len)
|
|
2015 {
|
|
2016 keymap_store (keymap, &raw_key1, def);
|
|
2017 if (ascii_hack && !NILP (raw_key2.keysym))
|
|
2018 keymap_store (keymap, &raw_key2, def);
|
|
2019 UNGCPRO;
|
|
2020 return def;
|
|
2021 }
|
|
2022
|
|
2023 {
|
|
2024 Lisp_Object cmd;
|
|
2025 struct gcpro ngcpro1;
|
|
2026 NGCPRO1 (c);
|
|
2027
|
|
2028 cmd = keymap_lookup_1 (keymap, &raw_key1, 0);
|
|
2029 if (NILP (cmd))
|
|
2030 {
|
|
2031 cmd = Fmake_sparse_keymap (Qnil);
|
|
2032 XKEYMAP (cmd)->name /* for debugging */
|
|
2033 = list2 (make_key_description (&raw_key1, 1), keymap);
|
|
2034 keymap_store (keymap, &raw_key1, cmd);
|
|
2035 }
|
|
2036 if (NILP (Fkeymapp (cmd)))
|
563
|
2037 sferror_2 ("Invalid prefix keys in sequence",
|
428
|
2038 c, keys);
|
|
2039
|
|
2040 if (ascii_hack && !NILP (raw_key2.keysym) &&
|
|
2041 NILP (keymap_lookup_1 (keymap, &raw_key2, 0)))
|
|
2042 keymap_store (keymap, &raw_key2, cmd);
|
|
2043
|
|
2044 keymap = get_keymap (cmd, 1, 1);
|
|
2045 NUNGCPRO;
|
|
2046 }
|
|
2047 }
|
|
2048 }
|
|
2049
|
|
2050
|
|
2051 /************************************************************************/
|
|
2052 /* Looking up keys in keymaps */
|
|
2053 /************************************************************************/
|
|
2054
|
|
2055 /* We need a very fast (i.e., non-consing) version of lookup-key in order
|
|
2056 to make where-is-internal really fly. */
|
|
2057
|
|
2058 struct raw_lookup_key_mapper_closure
|
|
2059 {
|
|
2060 int remaining;
|
934
|
2061 const Lisp_Key_Data *raw_keys;
|
428
|
2062 int raw_keys_count;
|
|
2063 int keys_so_far;
|
|
2064 int accept_default;
|
|
2065 };
|
|
2066
|
|
2067 static Lisp_Object raw_lookup_key_mapper (Lisp_Object k, void *);
|
|
2068
|
|
2069 /* Caller should gc-protect args (keymaps may autoload) */
|
|
2070 static Lisp_Object
|
|
2071 raw_lookup_key (Lisp_Object keymap,
|
934
|
2072 const Lisp_Key_Data *raw_keys, int raw_keys_count,
|
428
|
2073 int keys_so_far, int accept_default)
|
|
2074 {
|
|
2075 /* This function can GC */
|
|
2076 struct raw_lookup_key_mapper_closure c;
|
|
2077 c.remaining = raw_keys_count - 1;
|
|
2078 c.raw_keys = raw_keys;
|
|
2079 c.raw_keys_count = raw_keys_count;
|
|
2080 c.keys_so_far = keys_so_far;
|
|
2081 c.accept_default = accept_default;
|
|
2082
|
|
2083 return traverse_keymaps (keymap, Qnil, raw_lookup_key_mapper, &c);
|
|
2084 }
|
|
2085
|
|
2086 static Lisp_Object
|
|
2087 raw_lookup_key_mapper (Lisp_Object k, void *arg)
|
|
2088 {
|
|
2089 /* This function can GC */
|
|
2090 struct raw_lookup_key_mapper_closure *c =
|
|
2091 (struct raw_lookup_key_mapper_closure *) arg;
|
|
2092 int accept_default = c->accept_default;
|
|
2093 int remaining = c->remaining;
|
|
2094 int keys_so_far = c->keys_so_far;
|
934
|
2095 const Lisp_Key_Data *raw_keys = c->raw_keys;
|
428
|
2096 Lisp_Object cmd;
|
|
2097
|
|
2098 if (! meta_prefix_char_p (&(raw_keys[0])))
|
|
2099 {
|
|
2100 /* Normal case: every case except the meta-hack (see below). */
|
|
2101 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default);
|
|
2102
|
|
2103 if (remaining == 0)
|
|
2104 /* Return whatever we found if we're out of keys */
|
|
2105 ;
|
|
2106 else if (NILP (cmd))
|
|
2107 /* Found nothing (though perhaps parent map may have binding) */
|
|
2108 ;
|
|
2109 else if (NILP (Fkeymapp (cmd)))
|
|
2110 /* Didn't find a keymap, and we have more keys.
|
|
2111 * Return a fixnum to indicate that keys were too long.
|
|
2112 */
|
|
2113 cmd = make_int (keys_so_far + 1);
|
|
2114 else
|
|
2115 cmd = raw_lookup_key (cmd, raw_keys + 1, remaining,
|
|
2116 keys_so_far + 1, accept_default);
|
|
2117 }
|
|
2118 else
|
|
2119 {
|
|
2120 /* This is a hack so that looking up a key-sequence whose last
|
|
2121 * element is the meta-prefix-char will return the keymap that
|
|
2122 * the "meta" keys are stored in, if there is no binding for
|
|
2123 * the meta-prefix-char (and if this map has a "meta" submap).
|
|
2124 * If this map doesn't have a "meta" submap, then the
|
|
2125 * meta-prefix-char is looked up just like any other key.
|
|
2126 */
|
|
2127 if (remaining == 0)
|
|
2128 {
|
|
2129 /* First look for the prefix-char directly */
|
|
2130 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default);
|
|
2131 if (NILP (cmd))
|
|
2132 {
|
|
2133 /* Do kludgy return of the meta-map */
|
442
|
2134 cmd = Fgethash (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META),
|
428
|
2135 XKEYMAP (k)->table, Qnil);
|
|
2136 }
|
|
2137 }
|
|
2138 else
|
|
2139 {
|
|
2140 /* Search for the prefix-char-prefixed sequence directly */
|
|
2141 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default);
|
|
2142 cmd = get_keymap (cmd, 0, 1);
|
|
2143 if (!NILP (cmd))
|
|
2144 cmd = raw_lookup_key (cmd, raw_keys + 1, remaining,
|
|
2145 keys_so_far + 1, accept_default);
|
442
|
2146 else if ((raw_keys[1].modifiers & XEMACS_MOD_META) == 0)
|
428
|
2147 {
|
934
|
2148 Lisp_Key_Data metified;
|
428
|
2149 metified.keysym = raw_keys[1].keysym;
|
442
|
2150 metified.modifiers = raw_keys[1].modifiers |
|
|
2151 (unsigned char) XEMACS_MOD_META;
|
428
|
2152
|
|
2153 /* Search for meta-next-char sequence directly */
|
|
2154 cmd = keymap_lookup_1 (k, &metified, accept_default);
|
|
2155 if (remaining == 1)
|
|
2156 ;
|
|
2157 else
|
|
2158 {
|
|
2159 cmd = get_keymap (cmd, 0, 1);
|
|
2160 if (!NILP (cmd))
|
|
2161 cmd = raw_lookup_key (cmd, raw_keys + 2, remaining - 1,
|
|
2162 keys_so_far + 2,
|
|
2163 accept_default);
|
|
2164 }
|
|
2165 }
|
|
2166 }
|
|
2167 }
|
|
2168 if (accept_default && NILP (cmd))
|
|
2169 cmd = XKEYMAP (k)->default_binding;
|
|
2170 return cmd;
|
|
2171 }
|
|
2172
|
|
2173 /* Value is number if `keys' is too long; NIL if valid but has no definition.*/
|
|
2174 /* Caller should gc-protect arguments */
|
|
2175 static Lisp_Object
|
|
2176 lookup_keys (Lisp_Object keymap, int nkeys, Lisp_Object *keys,
|
|
2177 int accept_default)
|
|
2178 {
|
|
2179 /* This function can GC */
|
934
|
2180 Lisp_Key_Data kkk[20];
|
|
2181 Lisp_Key_Data *raw_keys;
|
428
|
2182 int i;
|
|
2183
|
|
2184 if (nkeys == 0)
|
|
2185 return Qnil;
|
|
2186
|
438
|
2187 if (nkeys < countof (kkk))
|
428
|
2188 raw_keys = kkk;
|
|
2189 else
|
934
|
2190 raw_keys = alloca_array (Lisp_Key_Data, nkeys);
|
428
|
2191
|
|
2192 for (i = 0; i < nkeys; i++)
|
|
2193 {
|
|
2194 define_key_parser (keys[i], &(raw_keys[i]));
|
|
2195 }
|
|
2196 return raw_lookup_key (keymap, raw_keys, nkeys, 0, accept_default);
|
|
2197 }
|
|
2198
|
|
2199 static Lisp_Object
|
|
2200 lookup_events (Lisp_Object event_head, int nmaps, Lisp_Object keymaps[],
|
|
2201 int accept_default)
|
|
2202 {
|
|
2203 /* This function can GC */
|
934
|
2204 Lisp_Key_Data kkk[20];
|
428
|
2205 Lisp_Object event;
|
|
2206
|
|
2207 int nkeys;
|
934
|
2208 Lisp_Key_Data *raw_keys;
|
428
|
2209 Lisp_Object tem = Qnil;
|
|
2210 struct gcpro gcpro1, gcpro2;
|
|
2211 int iii;
|
|
2212
|
|
2213 CHECK_LIVE_EVENT (event_head);
|
|
2214
|
|
2215 nkeys = event_chain_count (event_head);
|
|
2216
|
438
|
2217 if (nkeys < countof (kkk))
|
428
|
2218 raw_keys = kkk;
|
|
2219 else
|
934
|
2220 raw_keys = alloca_array (Lisp_Key_Data, nkeys);
|
428
|
2221
|
|
2222 nkeys = 0;
|
|
2223 EVENT_CHAIN_LOOP (event, event_head)
|
|
2224 define_key_parser (event, &(raw_keys[nkeys++]));
|
|
2225 GCPRO2 (keymaps[0], event_head);
|
|
2226 gcpro1.nvars = nmaps;
|
|
2227 /* ####raw_keys[].keysym slots aren't gc-protected. We rely (but shouldn't)
|
|
2228 * on somebody else somewhere (obarray) having a pointer to all keysyms. */
|
|
2229 for (iii = 0; iii < nmaps; iii++)
|
|
2230 {
|
|
2231 tem = raw_lookup_key (keymaps[iii], raw_keys, nkeys, 0,
|
|
2232 accept_default);
|
|
2233 if (INTP (tem))
|
|
2234 {
|
|
2235 /* Too long in some local map means don't look at global map */
|
|
2236 tem = Qnil;
|
|
2237 break;
|
|
2238 }
|
|
2239 else if (!NILP (tem))
|
|
2240 break;
|
|
2241 }
|
|
2242 UNGCPRO;
|
|
2243 return tem;
|
|
2244 }
|
|
2245
|
|
2246 DEFUN ("lookup-key", Flookup_key, 2, 3, 0, /*
|
|
2247 In keymap KEYMAP, look up key-sequence KEYS. Return the definition.
|
|
2248 Nil is returned if KEYS is unbound. See documentation of `define-key'
|
|
2249 for valid key definitions and key-sequence specifications.
|
|
2250 A number is returned if KEYS is "too long"; that is, the leading
|
|
2251 characters fail to be a valid sequence of prefix characters in KEYMAP.
|
444
|
2252 The number is how many key strokes at the front of KEYS it takes to
|
|
2253 reach a non-prefix command.
|
428
|
2254 */
|
|
2255 (keymap, keys, accept_default))
|
|
2256 {
|
|
2257 /* This function can GC */
|
|
2258 if (VECTORP (keys))
|
|
2259 return lookup_keys (keymap,
|
|
2260 XVECTOR_LENGTH (keys),
|
|
2261 XVECTOR_DATA (keys),
|
|
2262 !NILP (accept_default));
|
|
2263 else if (SYMBOLP (keys) || CHAR_OR_CHAR_INTP (keys) || CONSP (keys))
|
|
2264 return lookup_keys (keymap, 1, &keys, !NILP (accept_default));
|
|
2265 else if (STRINGP (keys))
|
|
2266 {
|
826
|
2267 int length = string_char_length (keys);
|
428
|
2268 int i;
|
934
|
2269 Lisp_Key_Data *raw_keys = alloca_array (Lisp_Key_Data, length);
|
428
|
2270 if (length == 0)
|
|
2271 return Qnil;
|
|
2272
|
|
2273 for (i = 0; i < length; i++)
|
|
2274 {
|
867
|
2275 Ichar n = string_ichar (keys, i);
|
428
|
2276 define_key_parser (make_char (n), &(raw_keys[i]));
|
|
2277 }
|
|
2278 return raw_lookup_key (keymap, raw_keys, length, 0,
|
|
2279 !NILP (accept_default));
|
|
2280 }
|
|
2281 else
|
|
2282 {
|
|
2283 keys = wrong_type_argument (Qsequencep, keys);
|
|
2284 return Flookup_key (keymap, keys, accept_default);
|
|
2285 }
|
|
2286 }
|
|
2287
|
|
2288 /* Given a key sequence, returns a list of keymaps to search for bindings.
|
|
2289 Does all manner of semi-hairy heuristics, like looking in the current
|
|
2290 buffer's map before looking in the global map and looking in the local
|
|
2291 map of the buffer in which the mouse was clicked in event0 is a click.
|
|
2292
|
|
2293 It would be kind of nice if this were in Lisp so that this semi-hairy
|
|
2294 semi-heuristic command-lookup behavior could be readily understood and
|
|
2295 customised. However, this needs to be pretty fast, or performance of
|
|
2296 keyboard macros goes to shit; putting this in lisp slows macros down
|
|
2297 2-3x. And they're already slower than v18 by 5-6x.
|
|
2298 */
|
|
2299
|
|
2300 struct relevant_maps
|
|
2301 {
|
|
2302 int nmaps;
|
647
|
2303 int max_maps;
|
428
|
2304 Lisp_Object *maps;
|
|
2305 struct gcpro *gcpro;
|
|
2306 };
|
|
2307
|
|
2308 static void get_relevant_extent_keymaps (Lisp_Object pos,
|
|
2309 Lisp_Object buffer_or_string,
|
|
2310 Lisp_Object glyph,
|
|
2311 struct relevant_maps *closure);
|
|
2312 static void get_relevant_minor_maps (Lisp_Object buffer,
|
|
2313 struct relevant_maps *closure);
|
|
2314
|
|
2315 static void
|
|
2316 relevant_map_push (Lisp_Object map, struct relevant_maps *closure)
|
|
2317 {
|
647
|
2318 int nmaps = closure->nmaps;
|
428
|
2319
|
|
2320 if (!KEYMAPP (map))
|
|
2321 return;
|
|
2322 closure->nmaps = nmaps + 1;
|
|
2323 if (nmaps < closure->max_maps)
|
|
2324 {
|
|
2325 closure->maps[nmaps] = map;
|
|
2326 closure->gcpro->nvars = nmaps;
|
|
2327 }
|
|
2328 }
|
|
2329
|
|
2330 static int
|
|
2331 get_relevant_keymaps (Lisp_Object keys,
|
|
2332 int max_maps, Lisp_Object maps[])
|
|
2333 {
|
|
2334 /* This function can GC */
|
|
2335 Lisp_Object terminal = Qnil;
|
|
2336 struct gcpro gcpro1;
|
|
2337 struct relevant_maps closure;
|
|
2338 struct console *con;
|
|
2339
|
|
2340 GCPRO1 (*maps);
|
|
2341 gcpro1.nvars = 0;
|
|
2342 closure.nmaps = 0;
|
|
2343 closure.max_maps = max_maps;
|
|
2344 closure.maps = maps;
|
|
2345 closure.gcpro = &gcpro1;
|
|
2346
|
|
2347 if (EVENTP (keys))
|
|
2348 terminal = event_chain_tail (keys);
|
|
2349 else if (VECTORP (keys))
|
|
2350 {
|
|
2351 int len = XVECTOR_LENGTH (keys);
|
|
2352 if (len > 0)
|
|
2353 terminal = XVECTOR_DATA (keys)[len - 1];
|
|
2354 }
|
|
2355
|
|
2356 if (EVENTP (terminal))
|
|
2357 {
|
|
2358 CHECK_LIVE_EVENT (terminal);
|
|
2359 con = event_console_or_selected (terminal);
|
|
2360 }
|
|
2361 else
|
|
2362 con = XCONSOLE (Vselected_console);
|
|
2363
|
|
2364 if (KEYMAPP (con->overriding_terminal_local_map)
|
|
2365 || KEYMAPP (Voverriding_local_map))
|
|
2366 {
|
|
2367 if (KEYMAPP (con->overriding_terminal_local_map))
|
|
2368 relevant_map_push (con->overriding_terminal_local_map, &closure);
|
|
2369 if (KEYMAPP (Voverriding_local_map))
|
|
2370 relevant_map_push (Voverriding_local_map, &closure);
|
|
2371 }
|
|
2372 else if (!EVENTP (terminal)
|
|
2373 || (XEVENT (terminal)->event_type != button_press_event
|
|
2374 && XEVENT (terminal)->event_type != button_release_event))
|
|
2375 {
|
793
|
2376 Lisp_Object tem = wrap_buffer (current_buffer);
|
|
2377
|
428
|
2378 /* It's not a mouse event; order of keymaps searched is:
|
|
2379 o keymap of any/all extents under the mouse
|
|
2380 o minor-mode maps
|
|
2381 o local-map of current-buffer
|
771
|
2382 o global-tty-map or global-window-system-map
|
428
|
2383 o global-map
|
|
2384 */
|
|
2385 /* The terminal element of the lookup may be nil or a keysym.
|
|
2386 In those cases we don't want to check for an extent
|
|
2387 keymap. */
|
|
2388 if (EVENTP (terminal))
|
|
2389 {
|
|
2390 get_relevant_extent_keymaps (make_int (BUF_PT (current_buffer)),
|
|
2391 tem, Qnil, &closure);
|
|
2392 }
|
|
2393 get_relevant_minor_maps (tem, &closure);
|
|
2394
|
|
2395 tem = current_buffer->keymap;
|
|
2396 if (!NILP (tem))
|
|
2397 relevant_map_push (tem, &closure);
|
|
2398 }
|
|
2399 #ifdef HAVE_WINDOW_SYSTEM
|
|
2400 else
|
|
2401 {
|
|
2402 /* It's a mouse event; order of keymaps searched is:
|
|
2403 o vertical-divider-map, if event is over a divider
|
|
2404 o local-map of mouse-grabbed-buffer
|
|
2405 o keymap of any/all extents under the mouse
|
|
2406 if the mouse is over a modeline:
|
|
2407 o modeline-map of buffer corresponding to that modeline
|
|
2408 o else, local-map of buffer under the mouse
|
|
2409 o minor-mode maps
|
|
2410 o local-map of current-buffer
|
771
|
2411 o global-tty-map or global-window-system-map
|
428
|
2412 o global-map
|
|
2413 */
|
|
2414 Lisp_Object window = Fevent_window (terminal);
|
|
2415
|
|
2416 if (!NILP (Fevent_over_vertical_divider_p (terminal)))
|
|
2417 {
|
|
2418 if (KEYMAPP (Vvertical_divider_map))
|
|
2419 relevant_map_push (Vvertical_divider_map, &closure);
|
|
2420 }
|
|
2421
|
|
2422 if (BUFFERP (Vmouse_grabbed_buffer))
|
|
2423 {
|
|
2424 Lisp_Object map = XBUFFER (Vmouse_grabbed_buffer)->keymap;
|
|
2425
|
|
2426 get_relevant_minor_maps (Vmouse_grabbed_buffer, &closure);
|
|
2427 if (!NILP (map))
|
|
2428 relevant_map_push (map, &closure);
|
|
2429 }
|
|
2430
|
|
2431 if (!NILP (window))
|
|
2432 {
|
|
2433 Lisp_Object buffer = Fwindow_buffer (window);
|
|
2434
|
|
2435 if (!NILP (buffer))
|
|
2436 {
|
|
2437 if (!NILP (Fevent_over_modeline_p (terminal)))
|
|
2438 {
|
|
2439 Lisp_Object map = symbol_value_in_buffer (Qmodeline_map,
|
|
2440 buffer);
|
|
2441
|
|
2442 get_relevant_extent_keymaps
|
|
2443 (Fevent_modeline_position (terminal),
|
|
2444 XBUFFER (buffer)->generated_modeline_string,
|
438
|
2445 Fevent_glyph_extent (terminal), &closure);
|
428
|
2446
|
|
2447 if (!UNBOUNDP (map) && !NILP (map))
|
|
2448 relevant_map_push (get_keymap (map, 1, 1), &closure);
|
|
2449 }
|
|
2450 else
|
|
2451 {
|
|
2452 get_relevant_extent_keymaps (Fevent_point (terminal), buffer,
|
|
2453 Fevent_glyph_extent (terminal),
|
|
2454 &closure);
|
|
2455 }
|
|
2456
|
|
2457 if (!EQ (buffer, Vmouse_grabbed_buffer)) /* already pushed */
|
|
2458 {
|
|
2459 Lisp_Object map = XBUFFER (buffer)->keymap;
|
|
2460
|
|
2461 get_relevant_minor_maps (buffer, &closure);
|
|
2462 if (!NILP(map))
|
|
2463 relevant_map_push (map, &closure);
|
|
2464 }
|
|
2465 }
|
|
2466 }
|
|
2467 else if (!NILP (Fevent_over_toolbar_p (terminal)))
|
|
2468 {
|
|
2469 Lisp_Object map = Fsymbol_value (Qtoolbar_map);
|
|
2470
|
|
2471 if (!UNBOUNDP (map) && !NILP (map))
|
|
2472 relevant_map_push (map, &closure);
|
|
2473 }
|
|
2474 }
|
|
2475 #endif /* HAVE_WINDOW_SYSTEM */
|
|
2476
|
771
|
2477 if (CONSOLE_TTY_P (con))
|
|
2478 relevant_map_push (Vglobal_tty_map, &closure);
|
|
2479 else
|
|
2480 relevant_map_push (Vglobal_window_system_map, &closure);
|
|
2481
|
428
|
2482 {
|
|
2483 int nmaps = closure.nmaps;
|
|
2484 /* Silently truncate at 100 keymaps to prevent infinite lossage */
|
|
2485 if (nmaps >= max_maps && max_maps > 0)
|
|
2486 maps[max_maps - 1] = Vcurrent_global_map;
|
|
2487 else
|
|
2488 maps[nmaps] = Vcurrent_global_map;
|
|
2489 UNGCPRO;
|
|
2490 return nmaps + 1;
|
|
2491 }
|
|
2492 }
|
|
2493
|
|
2494 /* Returns a set of keymaps extracted from the extents at POS in
|
|
2495 BUFFER_OR_STRING. The GLYPH arg, if specified, is one more extent
|
|
2496 to look for a keymap in, and if it has one, its keymap will be the
|
|
2497 first element in the list returned. This is so we can correctly
|
|
2498 search the keymaps associated with glyphs which may be physically
|
|
2499 disjoint from their extents: for example, if a glyph is out in the
|
|
2500 margin, we should still consult the keymap of that glyph's extent,
|
|
2501 which may not itself be under the mouse.
|
|
2502 */
|
|
2503
|
|
2504 static void
|
|
2505 get_relevant_extent_keymaps (Lisp_Object pos, Lisp_Object buffer_or_string,
|
|
2506 Lisp_Object glyph,
|
|
2507 struct relevant_maps *closure)
|
|
2508 {
|
|
2509 /* This function can GC */
|
|
2510 /* the glyph keymap, if any, comes first.
|
|
2511 (Processing it twice is no big deal: noop.) */
|
|
2512 if (!NILP (glyph))
|
|
2513 {
|
|
2514 Lisp_Object keymap = Fextent_property (glyph, Qkeymap, Qnil);
|
|
2515 if (!NILP (keymap))
|
|
2516 relevant_map_push (get_keymap (keymap, 1, 1), closure);
|
|
2517 }
|
|
2518
|
|
2519 /* Next check the extents at the text position, if any */
|
|
2520 if (!NILP (pos))
|
|
2521 {
|
|
2522 Lisp_Object extent;
|
|
2523 for (extent = Fextent_at (pos, buffer_or_string, Qkeymap, Qnil, Qnil);
|
|
2524 !NILP (extent);
|
|
2525 extent = Fextent_at (pos, buffer_or_string, Qkeymap, extent, Qnil))
|
|
2526 {
|
|
2527 Lisp_Object keymap = Fextent_property (extent, Qkeymap, Qnil);
|
|
2528 if (!NILP (keymap))
|
|
2529 relevant_map_push (get_keymap (keymap, 1, 1), closure);
|
|
2530 QUIT;
|
|
2531 }
|
|
2532 }
|
|
2533 }
|
|
2534
|
|
2535 static Lisp_Object
|
|
2536 minor_mode_keymap_predicate (Lisp_Object assoc, Lisp_Object buffer)
|
|
2537 {
|
|
2538 /* This function can GC */
|
|
2539 if (CONSP (assoc))
|
|
2540 {
|
|
2541 Lisp_Object sym = XCAR (assoc);
|
|
2542 if (SYMBOLP (sym))
|
|
2543 {
|
|
2544 Lisp_Object val = symbol_value_in_buffer (sym, buffer);
|
|
2545 if (!NILP (val) && !UNBOUNDP (val))
|
|
2546 {
|
793
|
2547 return get_keymap (XCDR (assoc), 0, 1);
|
428
|
2548 }
|
|
2549 }
|
|
2550 }
|
|
2551 return Qnil;
|
|
2552 }
|
|
2553
|
|
2554 static void
|
|
2555 get_relevant_minor_maps (Lisp_Object buffer, struct relevant_maps *closure)
|
|
2556 {
|
|
2557 /* This function can GC */
|
|
2558 Lisp_Object alist;
|
|
2559
|
|
2560 /* Will you ever lose badly if you make this circular! */
|
|
2561 for (alist = symbol_value_in_buffer (Qminor_mode_map_alist, buffer);
|
|
2562 CONSP (alist);
|
|
2563 alist = XCDR (alist))
|
|
2564 {
|
|
2565 Lisp_Object m = minor_mode_keymap_predicate (XCAR (alist),
|
|
2566 buffer);
|
|
2567 if (!NILP (m)) relevant_map_push (m, closure);
|
|
2568 QUIT;
|
|
2569 }
|
|
2570 }
|
|
2571
|
|
2572 /* #### Would map-current-keymaps be a better thing?? */
|
|
2573 DEFUN ("current-keymaps", Fcurrent_keymaps, 0, 1, 0, /*
|
|
2574 Return a list of the current keymaps that will be searched for bindings.
|
|
2575 This lists keymaps such as the current local map and the minor-mode maps,
|
|
2576 but does not list the parents of those keymaps.
|
|
2577 EVENT-OR-KEYS controls which keymaps will be listed.
|
|
2578 If EVENT-OR-KEYS is a mouse event (or a vector whose last element is a
|
|
2579 mouse event), the keymaps for that mouse event will be listed (see
|
|
2580 `key-binding'). Otherwise, the keymaps for key presses will be listed.
|
771
|
2581 See `key-binding' for a description of which keymaps are searched in
|
|
2582 various situations.
|
428
|
2583 */
|
|
2584 (event_or_keys))
|
|
2585 {
|
|
2586 /* This function can GC */
|
|
2587 struct gcpro gcpro1;
|
|
2588 Lisp_Object maps[100];
|
|
2589 Lisp_Object *gubbish = maps;
|
|
2590 int nmaps;
|
|
2591
|
|
2592 GCPRO1 (event_or_keys);
|
|
2593 nmaps = get_relevant_keymaps (event_or_keys, countof (maps),
|
|
2594 gubbish);
|
|
2595 if (nmaps > countof (maps))
|
|
2596 {
|
|
2597 gubbish = alloca_array (Lisp_Object, nmaps);
|
|
2598 nmaps = get_relevant_keymaps (event_or_keys, nmaps, gubbish);
|
|
2599 }
|
|
2600 UNGCPRO;
|
|
2601 return Flist (nmaps, gubbish);
|
|
2602 }
|
|
2603
|
|
2604 DEFUN ("key-binding", Fkey_binding, 1, 2, 0, /*
|
|
2605 Return the binding for command KEYS in current keymaps.
|
|
2606 KEYS is a string, a vector of events, or a vector of key-description lists
|
|
2607 as described in the documentation for the `define-key' function.
|
|
2608 The binding is probably a symbol with a function definition; see
|
|
2609 the documentation for `lookup-key' for more information.
|
|
2610
|
|
2611 For key-presses, the order of keymaps searched is:
|
|
2612 - the `keymap' property of any extent(s) at point;
|
|
2613 - any applicable minor-mode maps;
|
444
|
2614 - the current local map of the current-buffer;
|
771
|
2615 - either `global-tty-map' or `global-window-system-map', depending on
|
|
2616 whether the current console is a TTY or non-TTY console;
|
428
|
2617 - the current global map.
|
|
2618
|
|
2619 For mouse-clicks, the order of keymaps searched is:
|
|
2620 - the current-local-map of the `mouse-grabbed-buffer' if any;
|
|
2621 - vertical-divider-map, if the event happened over a vertical divider
|
|
2622 - the `keymap' property of any extent(s) at the position of the click
|
|
2623 (this includes modeline extents);
|
|
2624 - the modeline-map of the buffer corresponding to the modeline under
|
|
2625 the mouse (if the click happened over a modeline);
|
444
|
2626 - the value of `toolbar-map' in the current-buffer (if the click
|
428
|
2627 happened over a toolbar);
|
444
|
2628 - the current local map of the buffer under the mouse (does not
|
428
|
2629 apply to toolbar clicks);
|
|
2630 - any applicable minor-mode maps;
|
771
|
2631 - either `global-tty-map' or `global-window-system-map', depending on
|
|
2632 whether the current console is a TTY or non-TTY console;
|
428
|
2633 - the current global map.
|
|
2634
|
|
2635 Note that if `overriding-local-map' or `overriding-terminal-local-map'
|
|
2636 is non-nil, *only* those two maps and the current global map are searched.
|
771
|
2637
|
|
2638 Note also that key sequences actually received from the keyboard driver
|
|
2639 may be processed in various ways to generate the key sequence that is
|
|
2640 actually looked up in the keymaps. In particular:
|
|
2641
|
|
2642 -- Keysyms are individually passed through `keyboard-translate-table' before
|
|
2643 any other processing.
|
|
2644 -- After this, key sequences as a whole are passed through
|
|
2645 `key-translation-map'.
|
|
2646 -- The resulting key sequence is actually looked up in the keymaps.
|
|
2647 -- If there's no binding found, the key sequence is passed through
|
|
2648 `function-key-map' and looked up again.
|
|
2649 -- If no binding is found and `retry-undefined-key-binding-unshifted' is
|
|
2650 set (it usually is) and the final keysym is an uppercase character,
|
|
2651 we lowercase it and start over from the `key-translation-map' stage.
|
|
2652 -- If no binding is found and we're on MS Windows and have international
|
|
2653 support, we successively remap the key sequence using the keyboard layouts
|
|
2654 of various default locales (current language environment, user default,
|
|
2655 system default, US ASCII) and try again. This makes (e.g.) sequences
|
|
2656 such as `C-x b' work in a Russian locale, where the alphabetic keys are
|
|
2657 actually generating Russian characters and not the Roman letters written
|
|
2658 on the keycaps. (Not yet implemented)
|
|
2659 -- Finally, if the last keystroke matches `help-char', we automatically
|
|
2660 generate and display a list of possible key sequences and bindings
|
|
2661 given the prefix so far generated.
|
428
|
2662 */
|
|
2663 (keys, accept_default))
|
|
2664 {
|
|
2665 /* This function can GC */
|
|
2666 int i;
|
|
2667 Lisp_Object maps[100];
|
|
2668 int nmaps;
|
|
2669 struct gcpro gcpro1, gcpro2;
|
|
2670 GCPRO2 (keys, accept_default); /* get_relevant_keymaps may autoload */
|
|
2671
|
|
2672 nmaps = get_relevant_keymaps (keys, countof (maps), maps);
|
|
2673
|
|
2674 UNGCPRO;
|
|
2675
|
|
2676 if (EVENTP (keys)) /* unadvertised "feature" for the future */
|
|
2677 return lookup_events (keys, nmaps, maps, !NILP (accept_default));
|
|
2678
|
|
2679 for (i = 0; i < nmaps; i++)
|
|
2680 {
|
|
2681 Lisp_Object tem = Flookup_key (maps[i], keys,
|
|
2682 accept_default);
|
|
2683 if (INTP (tem))
|
|
2684 {
|
|
2685 /* Too long in some local map means don't look at global map */
|
|
2686 return Qnil;
|
|
2687 }
|
|
2688 else if (!NILP (tem))
|
|
2689 return tem;
|
|
2690 }
|
|
2691 return Qnil;
|
|
2692 }
|
|
2693
|
|
2694 static Lisp_Object
|
|
2695 process_event_binding_result (Lisp_Object result)
|
|
2696 {
|
|
2697 if (EQ (result, Qundefined))
|
|
2698 /* The suppress-keymap function binds keys to 'undefined - special-case
|
|
2699 that here, so that being bound to that has the same error-behavior as
|
|
2700 not being defined at all.
|
|
2701 */
|
|
2702 result = Qnil;
|
|
2703 if (!NILP (result))
|
|
2704 {
|
|
2705 Lisp_Object map;
|
|
2706 /* Snap out possible keymap indirections */
|
|
2707 map = get_keymap (result, 0, 1);
|
|
2708 if (!NILP (map))
|
|
2709 result = map;
|
|
2710 }
|
|
2711
|
|
2712 return result;
|
|
2713 }
|
|
2714
|
|
2715 /* Attempts to find a command corresponding to the event-sequence
|
|
2716 whose head is event0 (sequence is threaded though event_next).
|
|
2717
|
|
2718 The return value will be
|
|
2719
|
|
2720 -- nil (there is no binding; this will also be returned
|
|
2721 whenever the event chain is "too long", i.e. there
|
|
2722 is a non-nil, non-keymap binding for a prefix of
|
|
2723 the event chain)
|
|
2724 -- a keymap (part of a command has been specified)
|
|
2725 -- a command (anything that satisfies `commandp'; this includes
|
|
2726 some symbols, lists, subrs, strings, vectors, and
|
|
2727 compiled-function objects) */
|
|
2728 Lisp_Object
|
|
2729 event_binding (Lisp_Object event0, int accept_default)
|
|
2730 {
|
|
2731 /* This function can GC */
|
|
2732 Lisp_Object maps[100];
|
|
2733 int nmaps;
|
|
2734
|
|
2735 assert (EVENTP (event0));
|
|
2736
|
|
2737 nmaps = get_relevant_keymaps (event0, countof (maps), maps);
|
|
2738 if (nmaps > countof (maps))
|
|
2739 nmaps = countof (maps);
|
|
2740 return process_event_binding_result (lookup_events (event0, nmaps, maps,
|
|
2741 accept_default));
|
|
2742 }
|
|
2743
|
|
2744 /* like event_binding, but specify a keymap to search */
|
|
2745
|
|
2746 Lisp_Object
|
|
2747 event_binding_in (Lisp_Object event0, Lisp_Object keymap, int accept_default)
|
|
2748 {
|
|
2749 /* This function can GC */
|
|
2750 if (!KEYMAPP (keymap))
|
|
2751 return Qnil;
|
|
2752
|
|
2753 return process_event_binding_result (lookup_events (event0, 1, &keymap,
|
|
2754 accept_default));
|
|
2755 }
|
|
2756
|
|
2757 /* Attempts to find a function key mapping corresponding to the
|
|
2758 event-sequence whose head is event0 (sequence is threaded through
|
|
2759 event_next). The return value will be the same as for event_binding(). */
|
|
2760 Lisp_Object
|
|
2761 munging_key_map_event_binding (Lisp_Object event0,
|
|
2762 enum munge_me_out_the_door munge)
|
|
2763 {
|
|
2764 Lisp_Object keymap = (munge == MUNGE_ME_FUNCTION_KEY) ?
|
|
2765 CONSOLE_FUNCTION_KEY_MAP (event_console_or_selected (event0)) :
|
|
2766 Vkey_translation_map;
|
|
2767
|
|
2768 if (NILP (keymap))
|
|
2769 return Qnil;
|
|
2770
|
|
2771 return process_event_binding_result (lookup_events (event0, 1, &keymap, 1));
|
|
2772 }
|
|
2773
|
|
2774
|
|
2775 /************************************************************************/
|
|
2776 /* Setting/querying the global and local maps */
|
|
2777 /************************************************************************/
|
|
2778
|
|
2779 DEFUN ("use-global-map", Fuse_global_map, 1, 1, 0, /*
|
|
2780 Select KEYMAP as the global keymap.
|
|
2781 */
|
|
2782 (keymap))
|
|
2783 {
|
|
2784 /* This function can GC */
|
|
2785 keymap = get_keymap (keymap, 1, 1);
|
|
2786 Vcurrent_global_map = keymap;
|
|
2787 return Qnil;
|
|
2788 }
|
|
2789
|
|
2790 DEFUN ("use-local-map", Fuse_local_map, 1, 2, 0, /*
|
|
2791 Select KEYMAP as the local keymap in BUFFER.
|
|
2792 If KEYMAP is nil, that means no local keymap.
|
|
2793 If BUFFER is nil, the current buffer is assumed.
|
|
2794 */
|
|
2795 (keymap, buffer))
|
|
2796 {
|
|
2797 /* This function can GC */
|
|
2798 struct buffer *b = decode_buffer (buffer, 0);
|
|
2799 if (!NILP (keymap))
|
|
2800 keymap = get_keymap (keymap, 1, 1);
|
|
2801
|
|
2802 b->keymap = keymap;
|
|
2803
|
|
2804 return Qnil;
|
|
2805 }
|
|
2806
|
|
2807 DEFUN ("current-local-map", Fcurrent_local_map, 0, 1, 0, /*
|
|
2808 Return BUFFER's local keymap, or nil if it has none.
|
|
2809 If BUFFER is nil, the current buffer is assumed.
|
|
2810 */
|
|
2811 (buffer))
|
|
2812 {
|
|
2813 struct buffer *b = decode_buffer (buffer, 0);
|
|
2814 return b->keymap;
|
|
2815 }
|
|
2816
|
|
2817 DEFUN ("current-global-map", Fcurrent_global_map, 0, 0, 0, /*
|
|
2818 Return the current global keymap.
|
|
2819 */
|
|
2820 ())
|
|
2821 {
|
|
2822 return Vcurrent_global_map;
|
|
2823 }
|
|
2824
|
|
2825
|
|
2826 /************************************************************************/
|
|
2827 /* Mapping over keymap elements */
|
|
2828 /************************************************************************/
|
|
2829
|
|
2830 /* Since keymaps are arranged in a hierarchy, one keymap per bucky bit or
|
|
2831 prefix key, it's not entirely obvious what map-keymap should do, but
|
|
2832 what it does is: map over all keys in this map; then recursively map
|
|
2833 over all submaps of this map that are "bucky" submaps. This means that,
|
|
2834 when mapping over a keymap, it appears that "x" and "C-x" are in the
|
|
2835 same map, although "C-x" is really in the "control" submap of this one.
|
|
2836 However, since we don't recursively descend the submaps that are bound
|
|
2837 to prefix keys (like C-x, C-h, etc) the caller will have to recurse on
|
|
2838 those explicitly, if that's what they want.
|
|
2839
|
|
2840 So the end result of this is that the bucky keymaps (the ones indexed
|
|
2841 under the large integers returned from MAKE_MODIFIER_HASH_KEY()) are
|
|
2842 invisible from elisp. They're just an implementation detail that code
|
|
2843 outside of this file doesn't need to know about.
|
|
2844 */
|
|
2845
|
|
2846 struct map_keymap_unsorted_closure
|
|
2847 {
|
934
|
2848 void (*fn) (const Lisp_Key_Data *, Lisp_Object binding, void *arg);
|
428
|
2849 void *arg;
|
442
|
2850 int modifiers;
|
428
|
2851 };
|
|
2852
|
|
2853 /* used by map_keymap() */
|
|
2854 static int
|
|
2855 map_keymap_unsorted_mapper (Lisp_Object keysym, Lisp_Object value,
|
|
2856 void *map_keymap_unsorted_closure)
|
|
2857 {
|
|
2858 /* This function can GC */
|
|
2859 struct map_keymap_unsorted_closure *closure =
|
|
2860 (struct map_keymap_unsorted_closure *) map_keymap_unsorted_closure;
|
442
|
2861 int modifiers = closure->modifiers;
|
|
2862 int mod_bit;
|
428
|
2863 mod_bit = MODIFIER_HASH_KEY_BITS (keysym);
|
|
2864 if (mod_bit != 0)
|
|
2865 {
|
|
2866 int omod = modifiers;
|
|
2867 closure->modifiers = (modifiers | mod_bit);
|
|
2868 value = get_keymap (value, 1, 0);
|
|
2869 elisp_maphash (map_keymap_unsorted_mapper,
|
|
2870 XKEYMAP (value)->table,
|
|
2871 map_keymap_unsorted_closure);
|
|
2872 closure->modifiers = omod;
|
|
2873 }
|
|
2874 else
|
|
2875 {
|
934
|
2876 Lisp_Key_Data key;
|
428
|
2877 key.keysym = keysym;
|
|
2878 key.modifiers = modifiers;
|
|
2879 ((*closure->fn) (&key, value, closure->arg));
|
|
2880 }
|
|
2881 return 0;
|
|
2882 }
|
|
2883
|
|
2884
|
|
2885 struct map_keymap_sorted_closure
|
|
2886 {
|
|
2887 Lisp_Object *result_locative;
|
|
2888 };
|
|
2889
|
|
2890 /* used by map_keymap_sorted() */
|
|
2891 static int
|
|
2892 map_keymap_sorted_mapper (Lisp_Object key, Lisp_Object value,
|
|
2893 void *map_keymap_sorted_closure)
|
|
2894 {
|
|
2895 struct map_keymap_sorted_closure *cl =
|
|
2896 (struct map_keymap_sorted_closure *) map_keymap_sorted_closure;
|
|
2897 Lisp_Object *list = cl->result_locative;
|
|
2898 *list = Fcons (Fcons (key, value), *list);
|
|
2899 return 0;
|
|
2900 }
|
|
2901
|
|
2902
|
|
2903 /* used by map_keymap_sorted(), describe_map_sort_predicate(),
|
|
2904 and keymap_submaps().
|
|
2905 */
|
|
2906 static int
|
|
2907 map_keymap_sort_predicate (Lisp_Object obj1, Lisp_Object obj2,
|
2286
|
2908 Lisp_Object UNUSED (pred))
|
428
|
2909 {
|
|
2910 /* obj1 and obj2 are conses with keysyms in their cars. Cdrs are ignored.
|
|
2911 */
|
442
|
2912 int bit1, bit2;
|
428
|
2913 int sym1_p = 0;
|
|
2914 int sym2_p = 0;
|
2828
|
2915 extern Lisp_Object Qcharacter_of_keysym;
|
|
2916
|
428
|
2917 obj1 = XCAR (obj1);
|
|
2918 obj2 = XCAR (obj2);
|
|
2919
|
|
2920 if (EQ (obj1, obj2))
|
|
2921 return -1;
|
|
2922 bit1 = MODIFIER_HASH_KEY_BITS (obj1);
|
|
2923 bit2 = MODIFIER_HASH_KEY_BITS (obj2);
|
|
2924
|
2828
|
2925 /* If either is a symbol with a Qcharacter_of_keysym property, then sort it by
|
428
|
2926 that code instead of alphabetically.
|
|
2927 */
|
|
2928 if (! bit1 && SYMBOLP (obj1))
|
|
2929 {
|
2828
|
2930 Lisp_Object code = Fget (obj1, Qcharacter_of_keysym, Qnil);
|
428
|
2931 if (CHAR_OR_CHAR_INTP (code))
|
|
2932 {
|
|
2933 obj1 = code;
|
|
2934 CHECK_CHAR_COERCE_INT (obj1);
|
|
2935 sym1_p = 1;
|
|
2936 }
|
|
2937 }
|
|
2938 if (! bit2 && SYMBOLP (obj2))
|
|
2939 {
|
2828
|
2940 Lisp_Object code = Fget (obj2, Qcharacter_of_keysym, Qnil);
|
428
|
2941 if (CHAR_OR_CHAR_INTP (code))
|
|
2942 {
|
|
2943 obj2 = code;
|
|
2944 CHECK_CHAR_COERCE_INT (obj2);
|
|
2945 sym2_p = 1;
|
|
2946 }
|
|
2947 }
|
|
2948
|
|
2949 /* all symbols (non-ASCIIs) come after characters (ASCIIs) */
|
|
2950 if (XTYPE (obj1) != XTYPE (obj2))
|
|
2951 return SYMBOLP (obj2) ? 1 : -1;
|
|
2952
|
|
2953 if (! bit1 && CHARP (obj1)) /* they're both ASCII */
|
|
2954 {
|
|
2955 int o1 = XCHAR (obj1);
|
|
2956 int o2 = XCHAR (obj2);
|
|
2957 if (o1 == o2 && /* If one started out as a symbol and the */
|
|
2958 sym1_p != sym2_p) /* other didn't, the symbol comes last. */
|
|
2959 return sym2_p ? 1 : -1;
|
|
2960
|
|
2961 return o1 < o2 ? 1 : -1; /* else just compare them */
|
|
2962 }
|
|
2963
|
|
2964 /* else they're both symbols. If they're both buckys, then order them. */
|
|
2965 if (bit1 && bit2)
|
|
2966 return bit1 < bit2 ? 1 : -1;
|
|
2967
|
|
2968 /* if only one is a bucky, then it comes later */
|
|
2969 if (bit1 || bit2)
|
|
2970 return bit2 ? 1 : -1;
|
|
2971
|
|
2972 /* otherwise, string-sort them. */
|
|
2973 {
|
867
|
2974 Ibyte *s1 = XSTRING_DATA (XSYMBOL (obj1)->name);
|
|
2975 Ibyte *s2 = XSTRING_DATA (XSYMBOL (obj2)->name);
|
793
|
2976 return 0 > qxestrcmp (s1, s2) ? 1 : -1;
|
428
|
2977 }
|
|
2978 }
|
|
2979
|
|
2980
|
|
2981 /* used by map_keymap() */
|
|
2982 static void
|
|
2983 map_keymap_sorted (Lisp_Object keymap_table,
|
442
|
2984 int modifiers,
|
934
|
2985 void (*function) (const Lisp_Key_Data *key,
|
428
|
2986 Lisp_Object binding,
|
|
2987 void *map_keymap_sorted_closure),
|
|
2988 void *map_keymap_sorted_closure)
|
|
2989 {
|
|
2990 /* This function can GC */
|
|
2991 struct gcpro gcpro1;
|
|
2992 Lisp_Object contents = Qnil;
|
|
2993
|
|
2994 if (XINT (Fhash_table_count (keymap_table)) == 0)
|
|
2995 return;
|
|
2996
|
|
2997 GCPRO1 (contents);
|
|
2998
|
|
2999 {
|
|
3000 struct map_keymap_sorted_closure c1;
|
|
3001 c1.result_locative = &contents;
|
|
3002 elisp_maphash (map_keymap_sorted_mapper, keymap_table, &c1);
|
|
3003 }
|
|
3004 contents = list_sort (contents, Qnil, map_keymap_sort_predicate);
|
|
3005 for (; !NILP (contents); contents = XCDR (contents))
|
|
3006 {
|
|
3007 Lisp_Object keysym = XCAR (XCAR (contents));
|
|
3008 Lisp_Object binding = XCDR (XCAR (contents));
|
442
|
3009 int sub_bits = MODIFIER_HASH_KEY_BITS (keysym);
|
428
|
3010 if (sub_bits != 0)
|
|
3011 map_keymap_sorted (XKEYMAP (get_keymap (binding,
|
|
3012 1, 1))->table,
|
|
3013 (modifiers | sub_bits),
|
|
3014 function,
|
|
3015 map_keymap_sorted_closure);
|
|
3016 else
|
|
3017 {
|
934
|
3018 Lisp_Key_Data k;
|
428
|
3019 k.keysym = keysym;
|
|
3020 k.modifiers = modifiers;
|
|
3021 ((*function) (&k, binding, map_keymap_sorted_closure));
|
|
3022 }
|
|
3023 }
|
|
3024 UNGCPRO;
|
|
3025 }
|
|
3026
|
|
3027
|
|
3028 /* used by Fmap_keymap() */
|
|
3029 static void
|
934
|
3030 map_keymap_mapper (const Lisp_Key_Data *key,
|
428
|
3031 Lisp_Object binding,
|
|
3032 void *function)
|
|
3033 {
|
|
3034 /* This function can GC */
|
|
3035 Lisp_Object fn;
|
826
|
3036 fn = VOID_TO_LISP (function);
|
428
|
3037 call2 (fn, make_key_description (key, 1), binding);
|
|
3038 }
|
|
3039
|
|
3040
|
|
3041 static void
|
|
3042 map_keymap (Lisp_Object keymap_table, int sort_first,
|
934
|
3043 void (*function) (const Lisp_Key_Data *key,
|
428
|
3044 Lisp_Object binding,
|
|
3045 void *fn_arg),
|
|
3046 void *fn_arg)
|
|
3047 {
|
|
3048 /* This function can GC */
|
|
3049 if (sort_first)
|
|
3050 map_keymap_sorted (keymap_table, 0, function, fn_arg);
|
|
3051 else
|
|
3052 {
|
|
3053 struct map_keymap_unsorted_closure map_keymap_unsorted_closure;
|
|
3054 map_keymap_unsorted_closure.fn = function;
|
|
3055 map_keymap_unsorted_closure.arg = fn_arg;
|
|
3056 map_keymap_unsorted_closure.modifiers = 0;
|
|
3057 elisp_maphash (map_keymap_unsorted_mapper, keymap_table,
|
|
3058 &map_keymap_unsorted_closure);
|
|
3059 }
|
|
3060 }
|
|
3061
|
|
3062 DEFUN ("map-keymap", Fmap_keymap, 2, 3, 0, /*
|
|
3063 Apply FUNCTION to each element of KEYMAP.
|
|
3064 FUNCTION will be called with two arguments: a key-description list, and
|
|
3065 the binding. The order in which the elements of the keymap are passed to
|
|
3066 the function is unspecified. If the function inserts new elements into
|
|
3067 the keymap, it may or may not be called with them later. No element of
|
|
3068 the keymap will ever be passed to the function more than once.
|
|
3069
|
|
3070 The function will not be called on elements of this keymap's parents
|
|
3071 \(see the function `keymap-parents') or upon keymaps which are contained
|
|
3072 within this keymap (multi-character definitions).
|
|
3073 It will be called on "meta" characters since they are not really
|
|
3074 two-character sequences.
|
|
3075
|
|
3076 If the optional third argument SORT-FIRST is non-nil, then the elements of
|
|
3077 the keymap will be passed to the mapper function in a canonical order.
|
|
3078 Otherwise, they will be passed in hash (that is, random) order, which is
|
|
3079 faster.
|
|
3080 */
|
|
3081 (function, keymap, sort_first))
|
|
3082 {
|
|
3083 /* This function can GC */
|
489
|
3084 struct gcpro gcpro1, gcpro2;
|
428
|
3085
|
|
3086 /* tolerate obviously transposed args */
|
|
3087 if (!NILP (Fkeymapp (function)))
|
|
3088 {
|
|
3089 Lisp_Object tmp = function;
|
|
3090 function = keymap;
|
|
3091 keymap = tmp;
|
|
3092 }
|
489
|
3093 GCPRO2 (function, keymap);
|
428
|
3094 keymap = get_keymap (keymap, 1, 1);
|
489
|
3095 map_keymap (XKEYMAP (keymap)->table, !NILP (sort_first),
|
428
|
3096 map_keymap_mapper, LISP_TO_VOID (function));
|
|
3097 UNGCPRO;
|
|
3098 return Qnil;
|
|
3099 }
|
|
3100
|
|
3101
|
|
3102
|
|
3103 /************************************************************************/
|
|
3104 /* Accessible keymaps */
|
|
3105 /************************************************************************/
|
|
3106
|
|
3107 struct accessible_keymaps_closure
|
|
3108 {
|
|
3109 Lisp_Object tail;
|
|
3110 };
|
|
3111
|
|
3112
|
|
3113 static void
|
|
3114 accessible_keymaps_mapper_1 (Lisp_Object keysym, Lisp_Object contents,
|
442
|
3115 int modifiers,
|
428
|
3116 struct accessible_keymaps_closure *closure)
|
|
3117 {
|
|
3118 /* This function can GC */
|
442
|
3119 int subbits = MODIFIER_HASH_KEY_BITS (keysym);
|
428
|
3120
|
|
3121 if (subbits != 0)
|
|
3122 {
|
|
3123 Lisp_Object submaps;
|
|
3124
|
|
3125 contents = get_keymap (contents, 1, 1);
|
|
3126 submaps = keymap_submaps (contents);
|
|
3127 for (; !NILP (submaps); submaps = XCDR (submaps))
|
|
3128 {
|
|
3129 accessible_keymaps_mapper_1 (XCAR (XCAR (submaps)),
|
|
3130 XCDR (XCAR (submaps)),
|
|
3131 (subbits | modifiers),
|
|
3132 closure);
|
|
3133 }
|
|
3134 }
|
|
3135 else
|
|
3136 {
|
|
3137 Lisp_Object thisseq = Fcar (Fcar (closure->tail));
|
|
3138 Lisp_Object cmd = get_keyelt (contents, 1);
|
|
3139 Lisp_Object vec;
|
|
3140 int j;
|
|
3141 int len;
|
934
|
3142 Lisp_Key_Data key;
|
428
|
3143 key.keysym = keysym;
|
|
3144 key.modifiers = modifiers;
|
|
3145
|
|
3146 if (NILP (cmd))
|
2500
|
3147 ABORT ();
|
428
|
3148 cmd = get_keymap (cmd, 0, 1);
|
|
3149 if (!KEYMAPP (cmd))
|
2500
|
3150 ABORT ();
|
428
|
3151
|
|
3152 vec = make_vector (XVECTOR_LENGTH (thisseq) + 1, Qnil);
|
|
3153 len = XVECTOR_LENGTH (thisseq);
|
|
3154 for (j = 0; j < len; j++)
|
|
3155 XVECTOR_DATA (vec) [j] = XVECTOR_DATA (thisseq) [j];
|
|
3156 XVECTOR_DATA (vec) [j] = make_key_description (&key, 1);
|
|
3157
|
|
3158 nconc2 (closure->tail, list1 (Fcons (vec, cmd)));
|
|
3159 }
|
|
3160 }
|
|
3161
|
|
3162
|
|
3163 static Lisp_Object
|
|
3164 accessible_keymaps_keymap_mapper (Lisp_Object thismap, void *arg)
|
|
3165 {
|
|
3166 /* This function can GC */
|
|
3167 struct accessible_keymaps_closure *closure =
|
|
3168 (struct accessible_keymaps_closure *) arg;
|
|
3169 Lisp_Object submaps = keymap_submaps (thismap);
|
|
3170
|
|
3171 for (; !NILP (submaps); submaps = XCDR (submaps))
|
|
3172 {
|
|
3173 accessible_keymaps_mapper_1 (XCAR (XCAR (submaps)),
|
|
3174 XCDR (XCAR (submaps)),
|
|
3175 0,
|
|
3176 closure);
|
|
3177 }
|
|
3178 return Qnil;
|
|
3179 }
|
|
3180
|
|
3181
|
|
3182 DEFUN ("accessible-keymaps", Faccessible_keymaps, 1, 2, 0, /*
|
|
3183 Find all keymaps accessible via prefix characters from KEYMAP.
|
|
3184 Returns a list of elements of the form (KEYS . MAP), where the sequence
|
|
3185 KEYS starting from KEYMAP gets you to MAP. These elements are ordered
|
|
3186 so that the KEYS increase in length. The first element is ([] . KEYMAP).
|
|
3187 An optional argument PREFIX, if non-nil, should be a key sequence;
|
|
3188 then the value includes only maps for prefixes that start with PREFIX.
|
|
3189 */
|
|
3190 (keymap, prefix))
|
|
3191 {
|
|
3192 /* This function can GC */
|
|
3193 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
3194 Lisp_Object accessible_keymaps = Qnil;
|
|
3195 struct accessible_keymaps_closure c;
|
|
3196 c.tail = Qnil;
|
|
3197 GCPRO4 (accessible_keymaps, c.tail, prefix, keymap);
|
|
3198
|
440
|
3199 keymap = get_keymap (keymap, 1, 1);
|
|
3200
|
428
|
3201 retry:
|
|
3202 if (NILP (prefix))
|
|
3203 {
|
440
|
3204 prefix = make_vector (0, Qnil);
|
428
|
3205 }
|
440
|
3206 else if (VECTORP (prefix) || STRINGP (prefix))
|
428
|
3207 {
|
|
3208 int len = XINT (Flength (prefix));
|
440
|
3209 Lisp_Object def;
|
428
|
3210 Lisp_Object p;
|
|
3211 int iii;
|
|
3212 struct gcpro ngcpro1;
|
|
3213
|
440
|
3214 if (len == 0)
|
|
3215 {
|
|
3216 prefix = Qnil;
|
|
3217 goto retry;
|
|
3218 }
|
|
3219
|
|
3220 def = Flookup_key (keymap, prefix, Qnil);
|
428
|
3221 def = get_keymap (def, 0, 1);
|
|
3222 if (!KEYMAPP (def))
|
|
3223 goto RETURN;
|
|
3224
|
|
3225 keymap = def;
|
|
3226 p = make_vector (len, Qnil);
|
|
3227 NGCPRO1 (p);
|
|
3228 for (iii = 0; iii < len; iii++)
|
|
3229 {
|
934
|
3230 Lisp_Key_Data key;
|
428
|
3231 define_key_parser (Faref (prefix, make_int (iii)), &key);
|
|
3232 XVECTOR_DATA (p)[iii] = make_key_description (&key, 1);
|
|
3233 }
|
|
3234 NUNGCPRO;
|
|
3235 prefix = p;
|
|
3236 }
|
440
|
3237 else
|
|
3238 {
|
|
3239 prefix = wrong_type_argument (Qarrayp, prefix);
|
|
3240 goto retry;
|
|
3241 }
|
428
|
3242
|
|
3243 accessible_keymaps = list1 (Fcons (prefix, keymap));
|
|
3244
|
440
|
3245 /* For each map in the list maps, look at any other maps it points
|
|
3246 to and stick them at the end if they are not already in the list */
|
428
|
3247
|
|
3248 for (c.tail = accessible_keymaps;
|
|
3249 !NILP (c.tail);
|
|
3250 c.tail = XCDR (c.tail))
|
|
3251 {
|
|
3252 Lisp_Object thismap = Fcdr (Fcar (c.tail));
|
|
3253 CHECK_KEYMAP (thismap);
|
|
3254 traverse_keymaps (thismap, Qnil,
|
|
3255 accessible_keymaps_keymap_mapper, &c);
|
|
3256 }
|
|
3257 RETURN:
|
|
3258 UNGCPRO;
|
|
3259 return accessible_keymaps;
|
|
3260 }
|
|
3261
|
|
3262
|
|
3263
|
|
3264 /************************************************************************/
|
|
3265 /* Pretty descriptions of key sequences */
|
|
3266 /************************************************************************/
|
|
3267
|
|
3268 DEFUN ("key-description", Fkey_description, 1, 1, 0, /*
|
|
3269 Return a pretty description of key-sequence KEYS.
|
|
3270 Control characters turn into "C-foo" sequences, meta into "M-foo",
|
|
3271 spaces are put between sequence elements, etc...
|
|
3272 */
|
|
3273 (keys))
|
|
3274 {
|
|
3275 if (CHAR_OR_CHAR_INTP (keys) || CONSP (keys) || SYMBOLP (keys)
|
|
3276 || EVENTP (keys))
|
|
3277 {
|
|
3278 return Fsingle_key_description (keys);
|
|
3279 }
|
|
3280 else if (VECTORP (keys) ||
|
|
3281 STRINGP (keys))
|
|
3282 {
|
|
3283 Lisp_Object string = Qnil;
|
|
3284 /* Lisp_Object sep = Qnil; */
|
|
3285 int size = XINT (Flength (keys));
|
|
3286 int i;
|
|
3287
|
|
3288 for (i = 0; i < size; i++)
|
|
3289 {
|
|
3290 Lisp_Object s2 = Fsingle_key_description
|
|
3291 (STRINGP (keys)
|
867
|
3292 ? make_char (string_ichar (keys, i))
|
428
|
3293 : XVECTOR_DATA (keys)[i]);
|
|
3294
|
|
3295 if (i == 0)
|
|
3296 string = s2;
|
|
3297 else
|
|
3298 {
|
|
3299 /* if (NILP (sep)) Lisp_Object sep = build_string (" ") */;
|
|
3300 string = concat2 (string, concat2 (Vsingle_space_string, s2));
|
|
3301 }
|
|
3302 }
|
|
3303 return string;
|
|
3304 }
|
|
3305 return Fkey_description (wrong_type_argument (Qsequencep, keys));
|
|
3306 }
|
|
3307
|
|
3308 DEFUN ("single-key-description", Fsingle_key_description, 1, 1, 0, /*
|
|
3309 Return a pretty description of command character KEY.
|
|
3310 Control characters turn into C-whatever, etc.
|
|
3311 This differs from `text-char-description' in that it returns a description
|
|
3312 of a key read from the user rather than a character from a buffer.
|
|
3313 */
|
|
3314 (key))
|
|
3315 {
|
|
3316 if (SYMBOLP (key))
|
|
3317 key = Fcons (key, Qnil); /* sleaze sleaze */
|
|
3318
|
|
3319 if (EVENTP (key) || CHAR_OR_CHAR_INTP (key))
|
|
3320 {
|
793
|
3321 DECLARE_EISTRING_MALLOC (buf);
|
|
3322 Lisp_Object str;
|
|
3323
|
428
|
3324 if (!EVENTP (key))
|
|
3325 {
|
934
|
3326 Lisp_Object event = Fmake_event (Qnil, Qnil);
|
|
3327 CHECK_CHAR_COERCE_INT (key);
|
1204
|
3328 character_to_event (XCHAR (key), XEVENT (event),
|
934
|
3329 XCONSOLE (Vselected_console), 0, 1);
|
|
3330 format_event_object (buf, event, 1);
|
1204
|
3331 Fdeallocate_event (event);
|
934
|
3332 }
|
|
3333 else
|
|
3334 format_event_object (buf, key, 1);
|
793
|
3335 str = eimake_string (buf);
|
|
3336 eifree (buf);
|
|
3337 return str;
|
428
|
3338 }
|
|
3339
|
|
3340 if (CONSP (key))
|
|
3341 {
|
793
|
3342 DECLARE_EISTRING (bufp);
|
|
3343
|
428
|
3344 Lisp_Object rest;
|
|
3345 LIST_LOOP (rest, key)
|
|
3346 {
|
|
3347 Lisp_Object keysym = XCAR (rest);
|
2421
|
3348 if (EQ (keysym, Qcontrol)) eicat_ascii (bufp, "C-");
|
|
3349 else if (EQ (keysym, Qctrl)) eicat_ascii (bufp, "C-");
|
|
3350 else if (EQ (keysym, Qmeta)) eicat_ascii (bufp, "M-");
|
|
3351 else if (EQ (keysym, Qsuper)) eicat_ascii (bufp, "S-");
|
|
3352 else if (EQ (keysym, Qhyper)) eicat_ascii (bufp, "H-");
|
|
3353 else if (EQ (keysym, Qalt)) eicat_ascii (bufp, "A-");
|
|
3354 else if (EQ (keysym, Qshift)) eicat_ascii (bufp, "Sh-");
|
428
|
3355 else if (CHAR_OR_CHAR_INTP (keysym))
|
793
|
3356 eicat_ch (bufp, XCHAR_OR_CHAR_INT (keysym));
|
428
|
3357 else
|
|
3358 {
|
|
3359 CHECK_SYMBOL (keysym);
|
|
3360 #if 0 /* This is bogus */
|
2421
|
3361 if (EQ (keysym, QKlinefeed)) eicat_ascii (bufp, "LFD");
|
|
3362 else if (EQ (keysym, QKtab)) eicat_ascii (bufp, "TAB");
|
|
3363 else if (EQ (keysym, QKreturn)) eicat_ascii (bufp, "RET");
|
|
3364 else if (EQ (keysym, QKescape)) eicat_ascii (bufp, "ESC");
|
|
3365 else if (EQ (keysym, QKdelete)) eicat_ascii (bufp, "DEL");
|
|
3366 else if (EQ (keysym, QKspace)) eicat_ascii (bufp, "SPC");
|
|
3367 else if (EQ (keysym, QKbackspace)) eicat_ascii (bufp, "BS");
|
428
|
3368 else
|
|
3369 #endif
|
793
|
3370 eicat_lstr (bufp, XSYMBOL (keysym)->name);
|
428
|
3371 if (!NILP (XCDR (rest)))
|
793
|
3372 invalid_argument ("Invalid key description", key);
|
428
|
3373 }
|
|
3374 }
|
793
|
3375 return eimake_string (bufp);
|
428
|
3376 }
|
|
3377 return Fsingle_key_description
|
|
3378 (wrong_type_argument (intern ("char-or-event-p"), key));
|
|
3379 }
|
|
3380
|
|
3381 DEFUN ("text-char-description", Ftext_char_description, 1, 1, 0, /*
|
|
3382 Return a pretty description of file-character CHR.
|
|
3383 Unprintable characters turn into "^char" or \\NNN, depending on the value
|
|
3384 of the `ctl-arrow' variable.
|
|
3385 This differs from `single-key-description' in that it returns a description
|
|
3386 of a character from a buffer rather than a key read from the user.
|
|
3387 */
|
|
3388 (chr))
|
|
3389 {
|
867
|
3390 Ibyte buf[200];
|
|
3391 Ibyte *p;
|
|
3392 Ichar c;
|
428
|
3393 Lisp_Object ctl_arrow = current_buffer->ctl_arrow;
|
|
3394 int ctl_p = !NILP (ctl_arrow);
|
867
|
3395 Ichar printable_min = (CHAR_OR_CHAR_INTP (ctl_arrow)
|
428
|
3396 ? XCHAR_OR_CHAR_INT (ctl_arrow)
|
|
3397 : ((EQ (ctl_arrow, Qt) || NILP (ctl_arrow))
|
|
3398 ? 256 : 160));
|
|
3399
|
|
3400 if (EVENTP (chr))
|
|
3401 {
|
2862
|
3402 Lisp_Object ch = Fevent_to_character (chr, Qnil, Qnil, Qnil);
|
428
|
3403 if (NILP (ch))
|
|
3404 return
|
563
|
3405 signal_continuable_error
|
|
3406 (Qinvalid_argument,
|
2828
|
3407 "key has no character equivalent (that we know of)",
|
|
3408 Fcopy_event (chr, Qnil));
|
428
|
3409 chr = ch;
|
|
3410 }
|
|
3411
|
|
3412 CHECK_CHAR_COERCE_INT (chr);
|
|
3413
|
|
3414 c = XCHAR (chr);
|
|
3415 p = buf;
|
|
3416
|
|
3417 if (c >= printable_min)
|
|
3418 {
|
867
|
3419 p += set_itext_ichar (p, c);
|
428
|
3420 }
|
|
3421 else if (c < 040 && ctl_p)
|
|
3422 {
|
|
3423 *p++ = '^';
|
|
3424 *p++ = c + 64; /* 'A' - 1 */
|
|
3425 }
|
|
3426 else if (c == 0177)
|
|
3427 {
|
|
3428 *p++ = '^';
|
|
3429 *p++ = '?';
|
|
3430 }
|
|
3431 else if (c >= 0200 || c < 040)
|
|
3432 {
|
|
3433 *p++ = '\\';
|
|
3434 #ifdef MULE
|
|
3435 /* !!#### This syntax is not readable. It will
|
|
3436 be interpreted as a 3-digit octal number rather
|
|
3437 than a 7-digit octal number. */
|
|
3438 if (c >= 0400)
|
|
3439 {
|
|
3440 *p++ = '0' + ((c & 07000000) >> 18);
|
|
3441 *p++ = '0' + ((c & 0700000) >> 15);
|
|
3442 *p++ = '0' + ((c & 070000) >> 12);
|
|
3443 *p++ = '0' + ((c & 07000) >> 9);
|
|
3444 }
|
|
3445 #endif
|
|
3446 *p++ = '0' + ((c & 0700) >> 6);
|
|
3447 *p++ = '0' + ((c & 0070) >> 3);
|
|
3448 *p++ = '0' + ((c & 0007));
|
|
3449 }
|
|
3450 else
|
|
3451 {
|
867
|
3452 p += set_itext_ichar (p, c);
|
428
|
3453 }
|
|
3454
|
|
3455 *p = 0;
|
|
3456 return build_string ((char *) buf);
|
|
3457 }
|
|
3458
|
|
3459
|
|
3460 /************************************************************************/
|
|
3461 /* where-is (mapping bindings to keys) */
|
|
3462 /************************************************************************/
|
|
3463
|
|
3464 static Lisp_Object
|
|
3465 where_is_internal (Lisp_Object definition, Lisp_Object *maps, int nmaps,
|
793
|
3466 Lisp_Object firstonly, Eistring *target_buffer);
|
428
|
3467
|
|
3468 DEFUN ("where-is-internal", Fwhere_is_internal, 1, 5, 0, /*
|
|
3469 Return list of keys that invoke DEFINITION in KEYMAPS.
|
|
3470 KEYMAPS can be either a keymap (meaning search in that keymap and the
|
|
3471 current global keymap) or a list of keymaps (meaning search in exactly
|
|
3472 those keymaps and no others). If KEYMAPS is nil, search in the currently
|
|
3473 applicable maps for EVENT-OR-KEYS (this is equivalent to specifying
|
|
3474 `(current-keymaps EVENT-OR-KEYS)' as the argument to KEYMAPS).
|
|
3475
|
|
3476 If optional 3rd arg FIRSTONLY is non-nil, return a vector representing
|
|
3477 the first key sequence found, rather than a list of all possible key
|
|
3478 sequences.
|
|
3479
|
|
3480 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections
|
|
3481 to other keymaps or slots. This makes it possible to search for an
|
|
3482 indirect definition itself.
|
|
3483 */
|
2286
|
3484 (definition, keymaps, firstonly, UNUSED (noindirect), event_or_keys))
|
428
|
3485 {
|
|
3486 /* This function can GC */
|
|
3487 Lisp_Object maps[100];
|
|
3488 Lisp_Object *gubbish = maps;
|
|
3489 int nmaps;
|
|
3490
|
|
3491 /* Get keymaps as an array */
|
|
3492 if (NILP (keymaps))
|
|
3493 {
|
|
3494 nmaps = get_relevant_keymaps (event_or_keys, countof (maps),
|
|
3495 gubbish);
|
|
3496 if (nmaps > countof (maps))
|
|
3497 {
|
|
3498 gubbish = alloca_array (Lisp_Object, nmaps);
|
|
3499 nmaps = get_relevant_keymaps (event_or_keys, nmaps, gubbish);
|
|
3500 }
|
|
3501 }
|
|
3502 else if (CONSP (keymaps))
|
|
3503 {
|
|
3504 Lisp_Object rest;
|
|
3505 int i;
|
|
3506
|
|
3507 nmaps = XINT (Flength (keymaps));
|
|
3508 if (nmaps > countof (maps))
|
|
3509 {
|
|
3510 gubbish = alloca_array (Lisp_Object, nmaps);
|
|
3511 }
|
|
3512 for (rest = keymaps, i = 0; !NILP (rest);
|
|
3513 rest = XCDR (keymaps), i++)
|
|
3514 {
|
|
3515 gubbish[i] = get_keymap (XCAR (keymaps), 1, 1);
|
|
3516 }
|
|
3517 }
|
|
3518 else
|
|
3519 {
|
|
3520 nmaps = 1;
|
|
3521 gubbish[0] = get_keymap (keymaps, 1, 1);
|
|
3522 if (!EQ (gubbish[0], Vcurrent_global_map))
|
|
3523 {
|
|
3524 gubbish[1] = Vcurrent_global_map;
|
|
3525 nmaps++;
|
|
3526 }
|
|
3527 }
|
|
3528
|
|
3529 return where_is_internal (definition, gubbish, nmaps, firstonly, 0);
|
|
3530 }
|
|
3531
|
|
3532 /* This function is like
|
|
3533 (key-description (where-is-internal definition nil t))
|
|
3534 except that it writes its output into a (char *) buffer that you
|
|
3535 provide; it doesn't cons (or allocate memory) at all, so it's
|
|
3536 very fast. This is used by menubar.c.
|
|
3537 */
|
|
3538 void
|
793
|
3539 where_is_to_char (Lisp_Object definition, Eistring *buffer)
|
428
|
3540 {
|
|
3541 /* This function can GC */
|
|
3542 Lisp_Object maps[100];
|
|
3543 Lisp_Object *gubbish = maps;
|
|
3544 int nmaps;
|
|
3545
|
|
3546 /* Get keymaps as an array */
|
|
3547 nmaps = get_relevant_keymaps (Qnil, countof (maps), gubbish);
|
|
3548 if (nmaps > countof (maps))
|
|
3549 {
|
|
3550 gubbish = alloca_array (Lisp_Object, nmaps);
|
|
3551 nmaps = get_relevant_keymaps (Qnil, nmaps, gubbish);
|
|
3552 }
|
|
3553
|
|
3554 where_is_internal (definition, maps, nmaps, Qt, buffer);
|
|
3555 }
|
|
3556
|
|
3557
|
|
3558 static Lisp_Object
|
934
|
3559 raw_keys_to_keys (Lisp_Key_Data *keys, int count)
|
428
|
3560 {
|
|
3561 Lisp_Object result = make_vector (count, Qnil);
|
|
3562 while (count--)
|
|
3563 XVECTOR_DATA (result) [count] = make_key_description (&(keys[count]), 1);
|
|
3564 return result;
|
|
3565 }
|
|
3566
|
|
3567
|
|
3568 static void
|
934
|
3569 format_raw_keys (Lisp_Key_Data *keys, int count, Eistring *buf)
|
428
|
3570 {
|
|
3571 int i;
|
934
|
3572 Lisp_Object event = Fmake_event (Qnil, Qnil);
|
|
3573 XSET_EVENT_TYPE (event, key_press_event);
|
|
3574 XSET_EVENT_CHANNEL (event, Vselected_console);
|
428
|
3575 for (i = 0; i < count; i++)
|
|
3576 {
|
1204
|
3577 XSET_EVENT_KEY_KEYSYM (event, keys[i].keysym);
|
|
3578 XSET_EVENT_KEY_MODIFIERS (event, KEY_DATA_MODIFIERS (&keys[i]));
|
934
|
3579 format_event_object (buf, event, 1);
|
793
|
3580 if (i < count - 1)
|
2421
|
3581 eicat_ascii (buf, " ");
|
428
|
3582 }
|
1204
|
3583 Fdeallocate_event (event);
|
428
|
3584 }
|
|
3585
|
|
3586
|
|
3587 /* definition is the thing to look for.
|
|
3588 map is a keymap.
|
|
3589 shadow is an array of shadow_count keymaps; if there is a different
|
|
3590 binding in any of the keymaps of a key that we are considering
|
|
3591 returning, then we reconsider.
|
|
3592 firstonly means give up after finding the first match;
|
|
3593 keys_so_far and modifiers_so_far describe which map we're looking in;
|
|
3594 If we're in the "meta" submap of the map that "C-x 4" is bound to,
|
|
3595 then keys_so_far will be {(control x), \4}, and modifiers_so_far
|
442
|
3596 will be XEMACS_MOD_META. That is, keys_so_far is the chain of keys that we
|
428
|
3597 have followed, and modifiers_so_far_so_far is the bits (partial keys)
|
|
3598 beyond that.
|
|
3599
|
|
3600 (keys_so_far is a global buffer and the keys_count arg says how much
|
|
3601 of it we're currently interested in.)
|
|
3602
|
|
3603 If target_buffer is provided, then we write a key-description into it,
|
|
3604 to avoid consing a string. This only works with firstonly on.
|
|
3605 */
|
|
3606
|
|
3607 struct where_is_closure
|
|
3608 {
|
|
3609 Lisp_Object definition;
|
|
3610 Lisp_Object *shadow;
|
|
3611 int shadow_count;
|
|
3612 int firstonly;
|
|
3613 int keys_count;
|
442
|
3614 int modifiers_so_far;
|
793
|
3615 Eistring *target_buffer;
|
934
|
3616 Lisp_Key_Data *keys_so_far;
|
428
|
3617 int keys_so_far_total_size;
|
|
3618 int keys_so_far_malloced;
|
|
3619 };
|
|
3620
|
|
3621 static Lisp_Object where_is_recursive_mapper (Lisp_Object map, void *arg);
|
|
3622
|
|
3623 static Lisp_Object
|
|
3624 where_is_recursive_mapper (Lisp_Object map, void *arg)
|
|
3625 {
|
|
3626 /* This function can GC */
|
|
3627 struct where_is_closure *c = (struct where_is_closure *) arg;
|
|
3628 Lisp_Object definition = c->definition;
|
442
|
3629 const int firstonly = c->firstonly;
|
|
3630 const int keys_count = c->keys_count;
|
|
3631 const int modifiers_so_far = c->modifiers_so_far;
|
793
|
3632 Eistring *target_buffer = c->target_buffer;
|
428
|
3633 Lisp_Object keys = Fgethash (definition,
|
|
3634 XKEYMAP (map)->inverse_table,
|
|
3635 Qnil);
|
|
3636 Lisp_Object submaps;
|
|
3637 Lisp_Object result = Qnil;
|
|
3638
|
|
3639 if (!NILP (keys))
|
|
3640 {
|
|
3641 /* One or more keys in this map match the definition we're looking for.
|
|
3642 Verify that these bindings aren't shadowed by other bindings
|
|
3643 in the shadow maps. Either nil or number as value from
|
|
3644 raw_lookup_key() means undefined. */
|
934
|
3645 Lisp_Key_Data *so_far = c->keys_so_far;
|
428
|
3646
|
|
3647 for (;;) /* loop over all keys that match */
|
|
3648 {
|
|
3649 Lisp_Object k = CONSP (keys) ? XCAR (keys) : keys;
|
|
3650 int i;
|
|
3651
|
|
3652 so_far [keys_count].keysym = k;
|
934
|
3653 SET_KEY_DATA_MODIFIERS (&so_far [keys_count], modifiers_so_far);
|
428
|
3654
|
|
3655 /* now loop over all shadow maps */
|
|
3656 for (i = 0; i < c->shadow_count; i++)
|
|
3657 {
|
|
3658 Lisp_Object shadowed = raw_lookup_key (c->shadow[i],
|
|
3659 so_far,
|
|
3660 keys_count + 1,
|
|
3661 0, 1);
|
|
3662
|
|
3663 if (NILP (shadowed) || CHARP (shadowed) ||
|
|
3664 EQ (shadowed, definition))
|
|
3665 continue; /* we passed this test; it's not shadowed here. */
|
|
3666 else
|
|
3667 /* ignore this key binding, since it actually has a
|
|
3668 different binding in a shadowing map */
|
|
3669 goto c_doesnt_have_proper_loop_exit_statements;
|
|
3670 }
|
|
3671
|
|
3672 /* OK, the key is for real */
|
|
3673 if (target_buffer)
|
|
3674 {
|
2500
|
3675 if (!firstonly) ABORT ();
|
428
|
3676 format_raw_keys (so_far, keys_count + 1, target_buffer);
|
|
3677 return make_int (1);
|
|
3678 }
|
|
3679 else if (firstonly)
|
|
3680 return raw_keys_to_keys (so_far, keys_count + 1);
|
|
3681 else
|
|
3682 result = Fcons (raw_keys_to_keys (so_far, keys_count + 1),
|
|
3683 result);
|
|
3684
|
|
3685 c_doesnt_have_proper_loop_exit_statements:
|
|
3686 /* now on to the next matching key ... */
|
|
3687 if (!CONSP (keys)) break;
|
|
3688 keys = XCDR (keys);
|
|
3689 }
|
|
3690 }
|
|
3691
|
|
3692 /* Now search the sub-keymaps of this map.
|
|
3693 If we're in "firstonly" mode and have already found one, this
|
|
3694 point is not reached. If we get one from lower down, either
|
|
3695 return it immediately (in firstonly mode) or tack it onto the
|
|
3696 end of the ones we've gotten so far.
|
|
3697 */
|
|
3698 for (submaps = keymap_submaps (map);
|
|
3699 !NILP (submaps);
|
|
3700 submaps = XCDR (submaps))
|
|
3701 {
|
|
3702 Lisp_Object key = XCAR (XCAR (submaps));
|
|
3703 Lisp_Object submap = XCDR (XCAR (submaps));
|
442
|
3704 int lower_modifiers;
|
428
|
3705 int lower_keys_count = keys_count;
|
442
|
3706 int bucky;
|
428
|
3707
|
|
3708 submap = get_keymap (submap, 0, 0);
|
|
3709
|
|
3710 if (EQ (submap, map))
|
|
3711 /* Arrgh! Some loser has introduced a loop... */
|
|
3712 continue;
|
|
3713
|
|
3714 /* If this is not a keymap, then that's probably because someone
|
|
3715 did an `fset' of a symbol that used to point to a map such that
|
|
3716 it no longer does. Sigh. Ignore this, and invalidate the cache
|
|
3717 so that it doesn't happen to us next time too.
|
|
3718 */
|
|
3719 if (NILP (submap))
|
|
3720 {
|
|
3721 XKEYMAP (map)->sub_maps_cache = Qt;
|
|
3722 continue;
|
|
3723 }
|
|
3724
|
|
3725 /* If the map is a "bucky" map, then add a bit to the
|
|
3726 modifiers_so_far list.
|
|
3727 Otherwise, add a new raw_key onto the end of keys_so_far.
|
|
3728 */
|
|
3729 bucky = MODIFIER_HASH_KEY_BITS (key);
|
|
3730 if (bucky != 0)
|
|
3731 lower_modifiers = (modifiers_so_far | bucky);
|
|
3732 else
|
|
3733 {
|
934
|
3734 Lisp_Key_Data *so_far = c->keys_so_far;
|
428
|
3735 lower_modifiers = 0;
|
|
3736 so_far [lower_keys_count].keysym = key;
|
934
|
3737 SET_KEY_DATA_MODIFIERS (&so_far [lower_keys_count], modifiers_so_far);
|
428
|
3738 lower_keys_count++;
|
|
3739 }
|
|
3740
|
|
3741 if (lower_keys_count >= c->keys_so_far_total_size)
|
|
3742 {
|
|
3743 int size = lower_keys_count + 50;
|
|
3744 if (! c->keys_so_far_malloced)
|
|
3745 {
|
934
|
3746 Lisp_Key_Data *new = xnew_array (Lisp_Key_Data, size);
|
442
|
3747 memcpy ((void *)new, (const void *)c->keys_so_far,
|
934
|
3748 c->keys_so_far_total_size * sizeof (Lisp_Key_Data));
|
428
|
3749 }
|
|
3750 else
|
934
|
3751 XREALLOC_ARRAY (c->keys_so_far, Lisp_Key_Data, size);
|
428
|
3752
|
|
3753 c->keys_so_far_total_size = size;
|
|
3754 c->keys_so_far_malloced = 1;
|
|
3755 }
|
|
3756
|
|
3757 {
|
|
3758 Lisp_Object lower;
|
|
3759
|
|
3760 c->keys_count = lower_keys_count;
|
|
3761 c->modifiers_so_far = lower_modifiers;
|
|
3762
|
|
3763 lower = traverse_keymaps (submap, Qnil, where_is_recursive_mapper, c);
|
|
3764
|
|
3765 c->keys_count = keys_count;
|
|
3766 c->modifiers_so_far = modifiers_so_far;
|
|
3767
|
|
3768 if (!firstonly)
|
|
3769 result = nconc2 (lower, result);
|
|
3770 else if (!NILP (lower))
|
|
3771 return lower;
|
|
3772 }
|
|
3773 }
|
|
3774 return result;
|
|
3775 }
|
|
3776
|
|
3777
|
|
3778 static Lisp_Object
|
|
3779 where_is_internal (Lisp_Object definition, Lisp_Object *maps, int nmaps,
|
793
|
3780 Lisp_Object firstonly, Eistring *target_buffer)
|
428
|
3781 {
|
|
3782 /* This function can GC */
|
|
3783 Lisp_Object result = Qnil;
|
|
3784 int i;
|
934
|
3785 Lisp_Key_Data raw[20];
|
428
|
3786 struct where_is_closure c;
|
|
3787
|
|
3788 c.definition = definition;
|
|
3789 c.shadow = maps;
|
|
3790 c.firstonly = !NILP (firstonly);
|
|
3791 c.target_buffer = target_buffer;
|
|
3792 c.keys_so_far = raw;
|
|
3793 c.keys_so_far_total_size = countof (raw);
|
|
3794 c.keys_so_far_malloced = 0;
|
|
3795
|
|
3796 /* Loop over each of the maps, accumulating the keys found.
|
|
3797 For each map searched, all previous maps shadow this one
|
|
3798 so that bogus keys aren't listed. */
|
|
3799 for (i = 0; i < nmaps; i++)
|
|
3800 {
|
|
3801 Lisp_Object this_result;
|
|
3802 c.shadow_count = i;
|
|
3803 /* Reset the things set in each iteration */
|
|
3804 c.keys_count = 0;
|
|
3805 c.modifiers_so_far = 0;
|
|
3806
|
|
3807 this_result = traverse_keymaps (maps[i], Qnil, where_is_recursive_mapper,
|
|
3808 &c);
|
|
3809 if (!NILP (firstonly))
|
|
3810 {
|
|
3811 result = this_result;
|
|
3812 if (!NILP (result))
|
|
3813 break;
|
|
3814 }
|
|
3815 else
|
|
3816 result = nconc2 (this_result, result);
|
|
3817 }
|
|
3818
|
|
3819 if (NILP (firstonly))
|
|
3820 result = Fnreverse (result);
|
|
3821
|
|
3822 if (c.keys_so_far_malloced)
|
1726
|
3823 xfree (c.keys_so_far, Lisp_Key_Data *);
|
428
|
3824 return result;
|
|
3825 }
|
|
3826
|
|
3827
|
|
3828 /************************************************************************/
|
|
3829 /* Describing keymaps */
|
|
3830 /************************************************************************/
|
|
3831
|
|
3832 DEFUN ("describe-bindings-internal", Fdescribe_bindings_internal, 1, 5, 0, /*
|
|
3833 Insert a list of all defined keys and their definitions in MAP.
|
|
3834 Optional second argument ALL says whether to include even "uninteresting"
|
|
3835 definitions (ie symbols with a non-nil `suppress-keymap' property.
|
|
3836 Third argument SHADOW is a list of keymaps whose bindings shadow those
|
|
3837 of map; if a binding is present in any shadowing map, it is not printed.
|
|
3838 Fourth argument PREFIX, if non-nil, should be a key sequence;
|
|
3839 only bindings which start with that key sequence will be printed.
|
|
3840 Fifth argument MOUSE-ONLY-P says to only print bindings for mouse clicks.
|
|
3841 */
|
|
3842 (map, all, shadow, prefix, mouse_only_p))
|
|
3843 {
|
|
3844 /* This function can GC */
|
|
3845
|
|
3846 /* #### At some point, this function should be changed to accept a
|
|
3847 BUFFER argument. Currently, the BUFFER argument to
|
|
3848 describe_map_tree is being used only internally. */
|
|
3849 describe_map_tree (map, NILP (all), shadow, prefix,
|
|
3850 !NILP (mouse_only_p), Fcurrent_buffer ());
|
|
3851 return Qnil;
|
|
3852 }
|
|
3853
|
|
3854
|
|
3855 /* Insert a description of the key bindings in STARTMAP,
|
|
3856 followed by those of all maps reachable through STARTMAP.
|
|
3857 If PARTIAL is nonzero, omit certain "uninteresting" commands
|
|
3858 (such as `undefined').
|
|
3859 If SHADOW is non-nil, it is a list of other maps;
|
|
3860 don't mention keys which would be shadowed by any of them
|
|
3861 If PREFIX is non-nil, only list bindings which start with those keys.
|
|
3862 */
|
|
3863
|
|
3864 void
|
|
3865 describe_map_tree (Lisp_Object startmap, int partial, Lisp_Object shadow,
|
|
3866 Lisp_Object prefix, int mice_only_p, Lisp_Object buffer)
|
|
3867 {
|
|
3868 /* This function can GC */
|
|
3869 Lisp_Object maps = Qnil;
|
|
3870 struct gcpro gcpro1, gcpro2; /* get_keymap may autoload */
|
|
3871 GCPRO2 (maps, shadow);
|
|
3872
|
|
3873 maps = Faccessible_keymaps (startmap, prefix);
|
|
3874
|
|
3875 for (; !NILP (maps); maps = Fcdr (maps))
|
|
3876 {
|
|
3877 Lisp_Object sub_shadow = Qnil;
|
|
3878 Lisp_Object elt = Fcar (maps);
|
|
3879 Lisp_Object tail;
|
|
3880 int no_prefix = (VECTORP (Fcar (elt))
|
|
3881 && XINT (Flength (Fcar (elt))) == 0);
|
|
3882 struct gcpro ngcpro1, ngcpro2, ngcpro3;
|
|
3883 NGCPRO3 (sub_shadow, elt, tail);
|
|
3884
|
|
3885 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
|
|
3886 {
|
|
3887 Lisp_Object shmap = XCAR (tail);
|
|
3888
|
|
3889 /* If the sequence by which we reach this keymap is zero-length,
|
|
3890 then the shadow maps for this keymap are just SHADOW. */
|
|
3891 if (no_prefix)
|
|
3892 ;
|
|
3893 /* If the sequence by which we reach this keymap actually has
|
|
3894 some elements, then the sequence's definition in SHADOW is
|
|
3895 what we should use. */
|
|
3896 else
|
|
3897 {
|
|
3898 shmap = Flookup_key (shmap, Fcar (elt), Qt);
|
|
3899 if (CHARP (shmap))
|
|
3900 shmap = Qnil;
|
|
3901 }
|
|
3902
|
|
3903 if (!NILP (shmap))
|
|
3904 {
|
|
3905 Lisp_Object shm = get_keymap (shmap, 0, 1);
|
|
3906 /* If shmap is not nil and not a keymap, it completely
|
|
3907 shadows this map, so don't describe this map at all. */
|
|
3908 if (!KEYMAPP (shm))
|
|
3909 goto SKIP;
|
|
3910 sub_shadow = Fcons (shm, sub_shadow);
|
|
3911 }
|
|
3912 }
|
|
3913
|
|
3914 {
|
|
3915 /* Describe the contents of map MAP, assuming that this map
|
|
3916 itself is reached by the sequence of prefix keys KEYS (a vector).
|
|
3917 PARTIAL and SHADOW are as in `describe_map_tree'. */
|
|
3918 Lisp_Object keysdesc
|
|
3919 = ((!no_prefix)
|
|
3920 ? concat2 (Fkey_description (Fcar (elt)), Vsingle_space_string)
|
|
3921 : Qnil);
|
|
3922 describe_map (Fcdr (elt), keysdesc,
|
|
3923 describe_command,
|
|
3924 partial,
|
|
3925 sub_shadow,
|
|
3926 mice_only_p,
|
|
3927 buffer);
|
|
3928 }
|
|
3929 SKIP:
|
|
3930 NUNGCPRO;
|
|
3931 }
|
|
3932 UNGCPRO;
|
|
3933 }
|
|
3934
|
|
3935
|
|
3936 static void
|
|
3937 describe_command (Lisp_Object definition, Lisp_Object buffer)
|
|
3938 {
|
|
3939 /* This function can GC */
|
|
3940 int keymapp = !NILP (Fkeymapp (definition));
|
|
3941 struct gcpro gcpro1;
|
|
3942 GCPRO1 (definition);
|
|
3943
|
|
3944 Findent_to (make_int (16), make_int (3), buffer);
|
|
3945 if (keymapp)
|
|
3946 buffer_insert_c_string (XBUFFER (buffer), "<< ");
|
|
3947
|
|
3948 if (SYMBOLP (definition))
|
|
3949 {
|
|
3950 buffer_insert1 (XBUFFER (buffer), Fsymbol_name (definition));
|
|
3951 }
|
|
3952 else if (STRINGP (definition) || VECTORP (definition))
|
|
3953 {
|
|
3954 buffer_insert_c_string (XBUFFER (buffer), "Kbd Macro: ");
|
|
3955 buffer_insert1 (XBUFFER (buffer), Fkey_description (definition));
|
|
3956 }
|
|
3957 else if (COMPILED_FUNCTIONP (definition))
|
|
3958 buffer_insert_c_string (XBUFFER (buffer), "Anonymous Compiled Function");
|
|
3959 else if (CONSP (definition) && EQ (XCAR (definition), Qlambda))
|
|
3960 buffer_insert_c_string (XBUFFER (buffer), "Anonymous Lambda");
|
|
3961 else if (KEYMAPP (definition))
|
|
3962 {
|
|
3963 Lisp_Object name = XKEYMAP (definition)->name;
|
|
3964 if (STRINGP (name) || (SYMBOLP (name) && !NILP (name)))
|
|
3965 {
|
|
3966 buffer_insert_c_string (XBUFFER (buffer), "Prefix command ");
|
|
3967 if (SYMBOLP (name)
|
|
3968 && EQ (find_symbol_value (name), definition))
|
|
3969 buffer_insert1 (XBUFFER (buffer), Fsymbol_name (name));
|
|
3970 else
|
|
3971 {
|
|
3972 buffer_insert1 (XBUFFER (buffer), Fprin1_to_string (name, Qnil));
|
|
3973 }
|
|
3974 }
|
|
3975 else
|
|
3976 buffer_insert_c_string (XBUFFER (buffer), "Prefix Command");
|
|
3977 }
|
|
3978 else
|
|
3979 buffer_insert_c_string (XBUFFER (buffer), "??");
|
|
3980
|
|
3981 if (keymapp)
|
|
3982 buffer_insert_c_string (XBUFFER (buffer), " >>");
|
|
3983 buffer_insert_c_string (XBUFFER (buffer), "\n");
|
|
3984 UNGCPRO;
|
|
3985 }
|
|
3986
|
|
3987 struct describe_map_closure
|
|
3988 {
|
|
3989 Lisp_Object *list; /* pointer to the list to update */
|
|
3990 Lisp_Object partial; /* whether to ignore suppressed commands */
|
|
3991 Lisp_Object shadow; /* list of maps shadowing this one */
|
|
3992 Lisp_Object self; /* this map */
|
|
3993 Lisp_Object self_root; /* this map, or some map that has this map as
|
|
3994 a parent. this is the base of the tree */
|
|
3995 int mice_only_p; /* whether we are to display only button bindings */
|
|
3996 };
|
|
3997
|
|
3998 struct describe_map_shadow_closure
|
|
3999 {
|
934
|
4000 const Lisp_Key_Data *raw_key;
|
428
|
4001 Lisp_Object self;
|
|
4002 };
|
|
4003
|
|
4004 static Lisp_Object
|
|
4005 describe_map_mapper_shadow_search (Lisp_Object map, void *arg)
|
|
4006 {
|
|
4007 struct describe_map_shadow_closure *c =
|
|
4008 (struct describe_map_shadow_closure *) arg;
|
|
4009
|
|
4010 if (EQ (map, c->self))
|
|
4011 return Qzero; /* Not shadowed; terminate search */
|
|
4012
|
934
|
4013 return !NILP (keymap_lookup_directly (map,
|
|
4014 KEY_DATA_KEYSYM (c->raw_key),
|
|
4015 KEY_DATA_MODIFIERS (c->raw_key)))
|
428
|
4016 ? Qt : Qnil;
|
|
4017 }
|
|
4018
|
|
4019
|
|
4020 static Lisp_Object
|
|
4021 keymap_lookup_inherited_mapper (Lisp_Object km, void *arg)
|
|
4022 {
|
934
|
4023 Lisp_Key_Data *k = (Lisp_Key_Data *) arg;
|
|
4024 return keymap_lookup_directly (km, KEY_DATA_KEYSYM (k), KEY_DATA_MODIFIERS (k));
|
428
|
4025 }
|
|
4026
|
|
4027
|
|
4028 static void
|
934
|
4029 describe_map_mapper (const Lisp_Key_Data *key,
|
428
|
4030 Lisp_Object binding,
|
|
4031 void *describe_map_closure)
|
|
4032 {
|
|
4033 /* This function can GC */
|
|
4034 struct describe_map_closure *closure =
|
|
4035 (struct describe_map_closure *) describe_map_closure;
|
934
|
4036 Lisp_Object keysym = KEY_DATA_KEYSYM (key);
|
|
4037 int modifiers = KEY_DATA_MODIFIERS (key);
|
428
|
4038
|
|
4039 /* Don't mention suppressed commands. */
|
|
4040 if (SYMBOLP (binding)
|
|
4041 && !NILP (closure->partial)
|
|
4042 && !NILP (Fget (binding, closure->partial, Qnil)))
|
|
4043 return;
|
|
4044
|
|
4045 /* If we're only supposed to display mouse bindings and this isn't one,
|
|
4046 then bug out. */
|
|
4047 if (closure->mice_only_p &&
|
|
4048 (! (EQ (keysym, Qbutton0) ||
|
|
4049 EQ (keysym, Qbutton1) ||
|
|
4050 EQ (keysym, Qbutton2) ||
|
|
4051 EQ (keysym, Qbutton3) ||
|
|
4052 EQ (keysym, Qbutton4) ||
|
|
4053 EQ (keysym, Qbutton5) ||
|
|
4054 EQ (keysym, Qbutton6) ||
|
|
4055 EQ (keysym, Qbutton7) ||
|
|
4056 EQ (keysym, Qbutton0up) ||
|
|
4057 EQ (keysym, Qbutton1up) ||
|
|
4058 EQ (keysym, Qbutton2up) ||
|
|
4059 EQ (keysym, Qbutton3up) ||
|
|
4060 EQ (keysym, Qbutton4up) ||
|
|
4061 EQ (keysym, Qbutton5up) ||
|
|
4062 EQ (keysym, Qbutton6up) ||
|
|
4063 EQ (keysym, Qbutton7up))))
|
|
4064 return;
|
|
4065
|
|
4066 /* If this command in this map is shadowed by some other map, ignore it. */
|
|
4067 {
|
|
4068 Lisp_Object tail;
|
|
4069
|
|
4070 for (tail = closure->shadow; CONSP (tail); tail = XCDR (tail))
|
|
4071 {
|
|
4072 QUIT;
|
|
4073 if (!NILP (traverse_keymaps (XCAR (tail), Qnil,
|
|
4074 keymap_lookup_inherited_mapper,
|
|
4075 /* Cast to discard `const' */
|
|
4076 (void *)key)))
|
|
4077 return;
|
|
4078 }
|
|
4079 }
|
|
4080
|
|
4081 /* If this key is in some map of which this map is a parent, then ignore
|
|
4082 it (in that case, it has been shadowed).
|
|
4083 */
|
|
4084 {
|
|
4085 Lisp_Object sh;
|
|
4086 struct describe_map_shadow_closure c;
|
|
4087 c.raw_key = key;
|
|
4088 c.self = closure->self;
|
|
4089
|
|
4090 sh = traverse_keymaps (closure->self_root, Qnil,
|
|
4091 describe_map_mapper_shadow_search, &c);
|
|
4092 if (!NILP (sh) && !ZEROP (sh))
|
|
4093 return;
|
|
4094 }
|
|
4095
|
|
4096 /* Otherwise add it to the list to be sorted. */
|
|
4097 *(closure->list) = Fcons (Fcons (Fcons (keysym, make_int (modifiers)),
|
|
4098 binding),
|
|
4099 *(closure->list));
|
|
4100 }
|
|
4101
|
|
4102
|
|
4103 static int
|
|
4104 describe_map_sort_predicate (Lisp_Object obj1, Lisp_Object obj2,
|
|
4105 Lisp_Object pred)
|
|
4106 {
|
|
4107 /* obj1 and obj2 are conses of the form
|
|
4108 ( ( <keysym> . <modifiers> ) . <binding> )
|
|
4109 keysym and modifiers are used, binding is ignored.
|
|
4110 */
|
442
|
4111 int bit1, bit2;
|
428
|
4112 obj1 = XCAR (obj1);
|
|
4113 obj2 = XCAR (obj2);
|
|
4114 bit1 = XINT (XCDR (obj1));
|
|
4115 bit2 = XINT (XCDR (obj2));
|
|
4116 if (bit1 != bit2)
|
|
4117 return bit1 < bit2 ? 1 : -1;
|
|
4118 else
|
|
4119 return map_keymap_sort_predicate (obj1, obj2, pred);
|
|
4120 }
|
|
4121
|
|
4122 /* Elide 2 or more consecutive numeric keysyms bound to the same thing,
|
|
4123 or 2 or more symbolic keysyms that are bound to the same thing and
|
|
4124 have consecutive character-set-properties.
|
|
4125 */
|
|
4126 static int
|
|
4127 elide_next_two_p (Lisp_Object list)
|
|
4128 {
|
|
4129 Lisp_Object s1, s2;
|
2828
|
4130 extern Lisp_Object Qcharacter_of_keysym;
|
428
|
4131
|
|
4132 if (NILP (XCDR (list)))
|
|
4133 return 0;
|
|
4134
|
|
4135 /* next two bindings differ */
|
|
4136 if (!EQ (XCDR (XCAR (list)),
|
|
4137 XCDR (XCAR (XCDR (list)))))
|
|
4138 return 0;
|
|
4139
|
|
4140 /* next two modifier-sets differ */
|
|
4141 if (!EQ (XCDR (XCAR (XCAR (list))),
|
|
4142 XCDR (XCAR (XCAR (XCDR (list))))))
|
|
4143 return 0;
|
|
4144
|
|
4145 s1 = XCAR (XCAR (XCAR (list)));
|
|
4146 s2 = XCAR (XCAR (XCAR (XCDR (list))));
|
|
4147
|
|
4148 if (SYMBOLP (s1))
|
|
4149 {
|
2828
|
4150 Lisp_Object code = Fget (s1, Qcharacter_of_keysym, Qnil);
|
428
|
4151 if (CHAR_OR_CHAR_INTP (code))
|
|
4152 {
|
|
4153 s1 = code;
|
|
4154 CHECK_CHAR_COERCE_INT (s1);
|
|
4155 }
|
|
4156 else return 0;
|
|
4157 }
|
|
4158 if (SYMBOLP (s2))
|
|
4159 {
|
2828
|
4160 Lisp_Object code = Fget (s2, Qcharacter_of_keysym, Qnil);
|
428
|
4161 if (CHAR_OR_CHAR_INTP (code))
|
|
4162 {
|
|
4163 s2 = code;
|
|
4164 CHECK_CHAR_COERCE_INT (s2);
|
|
4165 }
|
|
4166 else return 0;
|
|
4167 }
|
|
4168
|
|
4169 return (XCHAR (s1) == XCHAR (s2) ||
|
|
4170 XCHAR (s1) + 1 == XCHAR (s2));
|
|
4171 }
|
|
4172
|
|
4173
|
|
4174 static Lisp_Object
|
|
4175 describe_map_parent_mapper (Lisp_Object keymap, void *arg)
|
|
4176 {
|
|
4177 /* This function can GC */
|
|
4178 struct describe_map_closure *describe_map_closure =
|
|
4179 (struct describe_map_closure *) arg;
|
|
4180 describe_map_closure->self = keymap;
|
|
4181 map_keymap (XKEYMAP (keymap)->table,
|
|
4182 0, /* don't sort: we'll do it later */
|
|
4183 describe_map_mapper, describe_map_closure);
|
|
4184 return Qnil;
|
|
4185 }
|
|
4186
|
|
4187
|
|
4188 /* Describe the contents of map MAP, assuming that this map itself is
|
|
4189 reached by the sequence of prefix keys KEYS (a string or vector).
|
|
4190 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
|
|
4191
|
|
4192 static void
|
|
4193 describe_map (Lisp_Object keymap, Lisp_Object elt_prefix,
|
|
4194 void (*elt_describer) (Lisp_Object, Lisp_Object),
|
|
4195 int partial,
|
|
4196 Lisp_Object shadow,
|
|
4197 int mice_only_p,
|
|
4198 Lisp_Object buffer)
|
|
4199 {
|
|
4200 /* This function can GC */
|
|
4201 struct describe_map_closure describe_map_closure;
|
|
4202 Lisp_Object list = Qnil;
|
|
4203 struct buffer *buf = XBUFFER (buffer);
|
867
|
4204 Ichar printable_min = (CHAR_OR_CHAR_INTP (buf->ctl_arrow)
|
428
|
4205 ? XCHAR_OR_CHAR_INT (buf->ctl_arrow)
|
|
4206 : ((EQ (buf->ctl_arrow, Qt)
|
|
4207 || EQ (buf->ctl_arrow, Qnil))
|
|
4208 ? 256 : 160));
|
|
4209 int elided = 0;
|
|
4210 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
2828
|
4211 extern Lisp_Object Qcharacter_of_keysym;
|
428
|
4212
|
|
4213 keymap = get_keymap (keymap, 1, 1);
|
|
4214 describe_map_closure.partial = (partial ? Qsuppress_keymap : Qnil);
|
|
4215 describe_map_closure.shadow = shadow;
|
|
4216 describe_map_closure.list = &list;
|
|
4217 describe_map_closure.self_root = keymap;
|
|
4218 describe_map_closure.mice_only_p = mice_only_p;
|
|
4219
|
|
4220 GCPRO4 (keymap, elt_prefix, shadow, list);
|
|
4221
|
|
4222 traverse_keymaps (keymap, Qnil,
|
|
4223 describe_map_parent_mapper, &describe_map_closure);
|
|
4224
|
|
4225 if (!NILP (list))
|
|
4226 {
|
|
4227 list = list_sort (list, Qnil, describe_map_sort_predicate);
|
|
4228 buffer_insert_c_string (buf, "\n");
|
|
4229 while (!NILP (list))
|
|
4230 {
|
|
4231 Lisp_Object elt = XCAR (XCAR (list));
|
|
4232 Lisp_Object keysym = XCAR (elt);
|
442
|
4233 int modifiers = XINT (XCDR (elt));
|
428
|
4234
|
|
4235 if (!NILP (elt_prefix))
|
|
4236 buffer_insert_lisp_string (buf, elt_prefix);
|
|
4237
|
442
|
4238 if (modifiers & XEMACS_MOD_META)
|
|
4239 buffer_insert_c_string (buf, "M-");
|
|
4240 if (modifiers & XEMACS_MOD_CONTROL)
|
|
4241 buffer_insert_c_string (buf, "C-");
|
|
4242 if (modifiers & XEMACS_MOD_SUPER)
|
|
4243 buffer_insert_c_string (buf, "S-");
|
|
4244 if (modifiers & XEMACS_MOD_HYPER)
|
|
4245 buffer_insert_c_string (buf, "H-");
|
|
4246 if (modifiers & XEMACS_MOD_ALT)
|
|
4247 buffer_insert_c_string (buf, "Alt-");
|
|
4248 if (modifiers & XEMACS_MOD_SHIFT)
|
|
4249 buffer_insert_c_string (buf, "Sh-");
|
428
|
4250 if (SYMBOLP (keysym))
|
|
4251 {
|
2828
|
4252 Lisp_Object code = Fget (keysym, Qcharacter_of_keysym, Qnil);
|
867
|
4253 Ichar c = (CHAR_OR_CHAR_INTP (code)
|
|
4254 ? XCHAR_OR_CHAR_INT (code) : (Ichar) -1);
|
428
|
4255 /* Calling Fsingle_key_description() would cons more */
|
|
4256 #if 0 /* This is bogus */
|
|
4257 if (EQ (keysym, QKlinefeed))
|
|
4258 buffer_insert_c_string (buf, "LFD");
|
|
4259 else if (EQ (keysym, QKtab))
|
|
4260 buffer_insert_c_string (buf, "TAB");
|
|
4261 else if (EQ (keysym, QKreturn))
|
|
4262 buffer_insert_c_string (buf, "RET");
|
|
4263 else if (EQ (keysym, QKescape))
|
|
4264 buffer_insert_c_string (buf, "ESC");
|
|
4265 else if (EQ (keysym, QKdelete))
|
|
4266 buffer_insert_c_string (buf, "DEL");
|
|
4267 else if (EQ (keysym, QKspace))
|
|
4268 buffer_insert_c_string (buf, "SPC");
|
|
4269 else if (EQ (keysym, QKbackspace))
|
|
4270 buffer_insert_c_string (buf, "BS");
|
|
4271 else
|
|
4272 #endif
|
|
4273 if (c >= printable_min)
|
|
4274 buffer_insert_emacs_char (buf, c);
|
|
4275 else buffer_insert1 (buf, Fsymbol_name (keysym));
|
|
4276 }
|
|
4277 else if (CHARP (keysym))
|
|
4278 buffer_insert_emacs_char (buf, XCHAR (keysym));
|
|
4279 else
|
|
4280 buffer_insert_c_string (buf, "---bad keysym---");
|
|
4281
|
|
4282 if (elided)
|
|
4283 elided = 0;
|
|
4284 else
|
|
4285 {
|
|
4286 int k = 0;
|
|
4287
|
|
4288 while (elide_next_two_p (list))
|
|
4289 {
|
|
4290 k++;
|
|
4291 list = XCDR (list);
|
|
4292 }
|
|
4293 if (k != 0)
|
|
4294 {
|
|
4295 if (k == 1)
|
|
4296 buffer_insert_c_string (buf, ", ");
|
|
4297 else
|
|
4298 buffer_insert_c_string (buf, " .. ");
|
|
4299 elided = 1;
|
|
4300 continue;
|
|
4301 }
|
|
4302 }
|
|
4303
|
|
4304 /* Print a description of the definition of this character. */
|
|
4305 (*elt_describer) (XCDR (XCAR (list)), buffer);
|
|
4306 list = XCDR (list);
|
|
4307 }
|
|
4308 }
|
|
4309 UNGCPRO;
|
|
4310 }
|
|
4311
|
|
4312
|
|
4313 void
|
|
4314 syms_of_keymap (void)
|
|
4315 {
|
442
|
4316 INIT_LRECORD_IMPLEMENTATION (keymap);
|
|
4317
|
502
|
4318 DEFSYMBOL (Qminor_mode_map_alist);
|
|
4319
|
|
4320 DEFSYMBOL (Qkeymapp);
|
|
4321
|
|
4322 DEFSYMBOL (Qsuppress_keymap);
|
|
4323
|
|
4324 DEFSYMBOL (Qmodeline_map);
|
|
4325 DEFSYMBOL (Qtoolbar_map);
|
428
|
4326
|
|
4327 DEFSUBR (Fkeymap_parents);
|
|
4328 DEFSUBR (Fset_keymap_parents);
|
|
4329 DEFSUBR (Fkeymap_name);
|
|
4330 DEFSUBR (Fset_keymap_name);
|
|
4331 DEFSUBR (Fkeymap_prompt);
|
|
4332 DEFSUBR (Fset_keymap_prompt);
|
|
4333 DEFSUBR (Fkeymap_default_binding);
|
|
4334 DEFSUBR (Fset_keymap_default_binding);
|
|
4335
|
|
4336 DEFSUBR (Fkeymapp);
|
|
4337 DEFSUBR (Fmake_keymap);
|
|
4338 DEFSUBR (Fmake_sparse_keymap);
|
|
4339
|
|
4340 DEFSUBR (Fcopy_keymap);
|
|
4341 DEFSUBR (Fkeymap_fullness);
|
|
4342 DEFSUBR (Fmap_keymap);
|
|
4343 DEFSUBR (Fevent_matches_key_specifier_p);
|
|
4344 DEFSUBR (Fdefine_key);
|
|
4345 DEFSUBR (Flookup_key);
|
|
4346 DEFSUBR (Fkey_binding);
|
|
4347 DEFSUBR (Fuse_global_map);
|
|
4348 DEFSUBR (Fuse_local_map);
|
|
4349 DEFSUBR (Fcurrent_local_map);
|
|
4350 DEFSUBR (Fcurrent_global_map);
|
|
4351 DEFSUBR (Fcurrent_keymaps);
|
|
4352 DEFSUBR (Faccessible_keymaps);
|
|
4353 DEFSUBR (Fkey_description);
|
|
4354 DEFSUBR (Fsingle_key_description);
|
|
4355 DEFSUBR (Fwhere_is_internal);
|
|
4356 DEFSUBR (Fdescribe_bindings_internal);
|
|
4357
|
|
4358 DEFSUBR (Ftext_char_description);
|
|
4359
|
502
|
4360 DEFSYMBOL (Qcontrol);
|
|
4361 DEFSYMBOL (Qctrl);
|
|
4362 DEFSYMBOL (Qmeta);
|
|
4363 DEFSYMBOL (Qsuper);
|
|
4364 DEFSYMBOL (Qhyper);
|
|
4365 DEFSYMBOL (Qalt);
|
|
4366 DEFSYMBOL (Qshift);
|
|
4367 DEFSYMBOL (Qbutton0);
|
|
4368 DEFSYMBOL (Qbutton1);
|
|
4369 DEFSYMBOL (Qbutton2);
|
|
4370 DEFSYMBOL (Qbutton3);
|
|
4371 DEFSYMBOL (Qbutton4);
|
|
4372 DEFSYMBOL (Qbutton5);
|
|
4373 DEFSYMBOL (Qbutton6);
|
|
4374 DEFSYMBOL (Qbutton7);
|
|
4375 DEFSYMBOL (Qbutton0up);
|
|
4376 DEFSYMBOL (Qbutton1up);
|
|
4377 DEFSYMBOL (Qbutton2up);
|
|
4378 DEFSYMBOL (Qbutton3up);
|
|
4379 DEFSYMBOL (Qbutton4up);
|
|
4380 DEFSYMBOL (Qbutton5up);
|
|
4381 DEFSYMBOL (Qbutton6up);
|
|
4382 DEFSYMBOL (Qbutton7up);
|
|
4383 DEFSYMBOL (Qmouse_1);
|
|
4384 DEFSYMBOL (Qmouse_2);
|
|
4385 DEFSYMBOL (Qmouse_3);
|
|
4386 DEFSYMBOL (Qmouse_4);
|
|
4387 DEFSYMBOL (Qmouse_5);
|
|
4388 DEFSYMBOL (Qmouse_6);
|
|
4389 DEFSYMBOL (Qmouse_7);
|
|
4390 DEFSYMBOL (Qdown_mouse_1);
|
|
4391 DEFSYMBOL (Qdown_mouse_2);
|
|
4392 DEFSYMBOL (Qdown_mouse_3);
|
|
4393 DEFSYMBOL (Qdown_mouse_4);
|
|
4394 DEFSYMBOL (Qdown_mouse_5);
|
|
4395 DEFSYMBOL (Qdown_mouse_6);
|
|
4396 DEFSYMBOL (Qdown_mouse_7);
|
|
4397 DEFSYMBOL (Qmenu_selection);
|
|
4398 DEFSYMBOL (QLFD);
|
|
4399 DEFSYMBOL (QTAB);
|
|
4400 DEFSYMBOL (QRET);
|
|
4401 DEFSYMBOL (QESC);
|
|
4402 DEFSYMBOL (QDEL);
|
|
4403 DEFSYMBOL (QSPC);
|
|
4404 DEFSYMBOL (QBS);
|
428
|
4405 }
|
|
4406
|
|
4407 void
|
|
4408 vars_of_keymap (void)
|
|
4409 {
|
|
4410 DEFVAR_LISP ("meta-prefix-char", &Vmeta_prefix_char /*
|
|
4411 Meta-prefix character.
|
|
4412 This character followed by some character `foo' turns into `Meta-foo'.
|
|
4413 This can be any form recognized as a single key specifier.
|
|
4414 To disable the meta-prefix-char, set it to a negative number.
|
|
4415 */ );
|
|
4416 Vmeta_prefix_char = make_char (033);
|
|
4417
|
|
4418 DEFVAR_LISP ("mouse-grabbed-buffer", &Vmouse_grabbed_buffer /*
|
|
4419 A buffer which should be consulted first for all mouse activity.
|
|
4420 When a mouse-click is processed, it will first be looked up in the
|
|
4421 local-map of this buffer, and then through the normal mechanism if there
|
|
4422 is no binding for that click. This buffer's value of `mode-motion-hook'
|
|
4423 will be consulted instead of the `mode-motion-hook' of the buffer of the
|
|
4424 window under the mouse. You should *bind* this, not set it.
|
|
4425 */ );
|
|
4426 Vmouse_grabbed_buffer = Qnil;
|
|
4427
|
|
4428 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map /*
|
|
4429 Keymap that overrides all other local keymaps.
|
|
4430 If this variable is non-nil, it is used as a keymap instead of the
|
|
4431 buffer's local map, and the minor mode keymaps and extent-local keymaps.
|
|
4432 You should *bind* this, not set it.
|
|
4433 */ );
|
|
4434 Voverriding_local_map = Qnil;
|
|
4435
|
|
4436 Fset (Qminor_mode_map_alist, Qnil);
|
|
4437
|
|
4438 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map /*
|
|
4439 Keymap of key translations that can override keymaps.
|
2027
|
4440
|
|
4441 This keymap works like `function-key-map', but is searched before it,
|
428
|
4442 and applies even for keys that have ordinary bindings.
|
2027
|
4443
|
|
4444 The `read-key-sequence' function replaces any subsequence bound by
|
|
4445 `key-translation-map' with its binding. More precisely, when the active
|
|
4446 keymaps have no binding for the current key sequence but
|
|
4447 `key-translation-map' binds a suffix of the sequence to a vector or string,
|
|
4448 `read-key-sequence' replaces the matching suffix with its binding, and
|
|
4449 continues with the new sequence. See `key-binding' for details.
|
|
4450
|
|
4451 The events that come from bindings in `key-translation-map' are not
|
|
4452 themselves looked up in `key-translation-map'.
|
|
4453
|
|
4454 #### FIXME: stolen from `function-key-map'; need better example.
|
|
4455 #### I guess you could implement a Dvorak keyboard with this?
|
|
4456 For example, suppose `key-translation-map' binds `ESC O P' to [f1].
|
|
4457 Typing `ESC O P' to `read-key-sequence' would return
|
|
4458 \[#<keypress-event f1>]. Typing `C-x ESC O P' would return
|
|
4459 \[#<keypress-event control-X> #<keypress-event f1>]. If [f1]
|
|
4460 were a prefix key, typing `ESC O P x' would return
|
|
4461 \[#<keypress-event f1> #<keypress-event x>].
|
428
|
4462 */ );
|
|
4463 Vkey_translation_map = Qnil;
|
|
4464
|
771
|
4465 DEFVAR_LISP ("global-tty-map", &Vglobal_tty_map /*
|
|
4466 Global keymap that applies only to TTY's.
|
|
4467 Key bindings are looked up in this map just before looking in the global map,
|
|
4468 but only when the current console is a TTY console. See also
|
|
4469 `global-window-system-map'.
|
|
4470 */ );
|
|
4471 Vglobal_tty_map = Qnil;
|
|
4472
|
|
4473 DEFVAR_LISP ("global-window-system-map", &Vglobal_window_system_map /*
|
|
4474 Global keymap that applies only to window systems.
|
|
4475 Key bindings are looked up in this map just before looking in the global map,
|
|
4476 but only when the current console is not a TTY console. See also
|
|
4477 `global-tty-map'.
|
|
4478 */ );
|
|
4479 Vglobal_window_system_map = Qnil;
|
|
4480
|
428
|
4481 DEFVAR_LISP ("vertical-divider-map", &Vvertical_divider_map /*
|
|
4482 Keymap which handles mouse clicks over vertical dividers.
|
|
4483 */ );
|
|
4484 Vvertical_divider_map = Qnil;
|
|
4485
|
|
4486 DEFVAR_INT ("keymap-tick", &keymap_tick /*
|
|
4487 Incremented for each change to any keymap.
|
|
4488 */ );
|
|
4489 keymap_tick = 0;
|
|
4490
|
|
4491 staticpro (&Vcurrent_global_map);
|
|
4492
|
867
|
4493 Vsingle_space_string = make_string ((const Ibyte *) " ", 1);
|
428
|
4494 staticpro (&Vsingle_space_string);
|
|
4495 }
|
|
4496
|
|
4497 void
|
|
4498 complex_vars_of_keymap (void)
|
|
4499 {
|
|
4500 /* This function can GC */
|
|
4501 Lisp_Object ESC_prefix = intern ("ESC-prefix");
|
|
4502 Lisp_Object meta_disgustitute;
|
|
4503
|
|
4504 Vcurrent_global_map = Fmake_keymap (Qnil);
|
771
|
4505 Vglobal_tty_map = Fmake_keymap (intern ("global-tty-map"));
|
|
4506 Vglobal_window_system_map =
|
|
4507 Fmake_keymap (intern ("global-window-system-map"));
|
428
|
4508
|
|
4509 meta_disgustitute = Fmake_keymap (Qnil);
|
|
4510 Ffset (ESC_prefix, meta_disgustitute);
|
|
4511 /* no need to protect meta_disgustitute, though */
|
442
|
4512 keymap_store_internal (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META),
|
428
|
4513 XKEYMAP (Vcurrent_global_map),
|
|
4514 meta_disgustitute);
|
|
4515 XKEYMAP (Vcurrent_global_map)->sub_maps_cache = Qt;
|
|
4516
|
|
4517 Vkey_translation_map = Fmake_sparse_keymap (intern ("key-translation-map"));
|
|
4518 }
|