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