(Fset_keymap_parent, Fdefine_prefix_command): Doc fixes.
[bpt/emacs.git] / src / keymap.c
1 /* Manipulation of keymaps
2 Copyright (C) 1985, 86,87,88,93,94,95,98,99, 2000, 01, 2004
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24 #include <stdio.h>
25 #include "lisp.h"
26 #include "commands.h"
27 #include "buffer.h"
28 #include "charset.h"
29 #include "keyboard.h"
30 #include "termhooks.h"
31 #include "blockinput.h"
32 #include "puresize.h"
33 #include "intervals.h"
34 #include "keymap.h"
35
36 /* The number of elements in keymap vectors. */
37 #define DENSE_TABLE_SIZE (0200)
38
39 /* Actually allocate storage for these variables */
40
41 Lisp_Object current_global_map; /* Current global keymap */
42
43 Lisp_Object global_map; /* default global key bindings */
44
45 Lisp_Object meta_map; /* The keymap used for globally bound
46 ESC-prefixed default commands */
47
48 Lisp_Object control_x_map; /* The keymap used for globally bound
49 C-x-prefixed default commands */
50
51 /* was MinibufLocalMap */
52 Lisp_Object Vminibuffer_local_map;
53 /* The keymap used by the minibuf for local
54 bindings when spaces are allowed in the
55 minibuf */
56
57 /* was MinibufLocalNSMap */
58 Lisp_Object Vminibuffer_local_ns_map;
59 /* The keymap used by the minibuf for local
60 bindings when spaces are not encouraged
61 in the minibuf */
62
63 /* keymap used for minibuffers when doing completion */
64 /* was MinibufLocalCompletionMap */
65 Lisp_Object Vminibuffer_local_completion_map;
66
67 /* keymap used for minibuffers when doing completion and require a match */
68 /* was MinibufLocalMustMatchMap */
69 Lisp_Object Vminibuffer_local_must_match_map;
70
71 /* Alist of minor mode variables and keymaps. */
72 Lisp_Object Vminor_mode_map_alist;
73
74 /* Alist of major-mode-specific overrides for
75 minor mode variables and keymaps. */
76 Lisp_Object Vminor_mode_overriding_map_alist;
77
78 /* List of emulation mode keymap alists. */
79 Lisp_Object Vemulation_mode_map_alists;
80
81 /* Keymap mapping ASCII function key sequences onto their preferred forms.
82 Initialized by the terminal-specific lisp files. See DEFVAR for more
83 documentation. */
84 Lisp_Object Vfunction_key_map;
85
86 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
87 Lisp_Object Vkey_translation_map;
88
89 /* A list of all commands given new bindings since a certain time
90 when nil was stored here.
91 This is used to speed up recomputation of menu key equivalents
92 when Emacs starts up. t means don't record anything here. */
93 Lisp_Object Vdefine_key_rebound_commands;
94
95 Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii, Qmenu_item, Qremap;
96
97 /* Alist of elements like (DEL . "\d"). */
98 static Lisp_Object exclude_keys;
99
100 /* Pre-allocated 2-element vector for Fcommand_remapping to use. */
101 static Lisp_Object command_remapping_vector;
102
103 /* A char with the CHAR_META bit set in a vector or the 0200 bit set
104 in a string key sequence is equivalent to prefixing with this
105 character. */
106 extern Lisp_Object meta_prefix_char;
107
108 extern Lisp_Object Voverriding_local_map;
109
110 /* Hash table used to cache a reverse-map to speed up calls to where-is. */
111 static Lisp_Object where_is_cache;
112 /* Which keymaps are reverse-stored in the cache. */
113 static Lisp_Object where_is_cache_keymaps;
114
115 static Lisp_Object store_in_keymap P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
116 static void fix_submap_inheritance P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
117
118 static Lisp_Object define_as_prefix P_ ((Lisp_Object, Lisp_Object));
119 static void describe_command P_ ((Lisp_Object, Lisp_Object));
120 static void describe_translation P_ ((Lisp_Object, Lisp_Object));
121 static void describe_map P_ ((Lisp_Object, Lisp_Object,
122 void (*) P_ ((Lisp_Object, Lisp_Object)),
123 int, Lisp_Object, Lisp_Object*, int));
124 static void describe_vector P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
125 void (*) (Lisp_Object, Lisp_Object), int,
126 Lisp_Object, Lisp_Object, int *, int, int));
127 static void silly_event_symbol_error P_ ((Lisp_Object));
128 \f
129 /* Keymap object support - constructors and predicates. */
130
131 DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0,
132 doc: /* Construct and return a new keymap, of the form (keymap CHARTABLE . ALIST).
133 CHARTABLE is a char-table that holds the bindings for the ASCII
134 characters. ALIST is an assoc-list which holds bindings for function keys,
135 mouse events, and any other things that appear in the input stream.
136 All entries in it are initially nil, meaning "command undefined".
137
138 The optional arg STRING supplies a menu name for the keymap
139 in case you use it as a menu with `x-popup-menu'. */)
140 (string)
141 Lisp_Object string;
142 {
143 Lisp_Object tail;
144 if (!NILP (string))
145 tail = Fcons (string, Qnil);
146 else
147 tail = Qnil;
148 return Fcons (Qkeymap,
149 Fcons (Fmake_char_table (Qkeymap, Qnil), tail));
150 }
151
152 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0,
153 doc: /* Construct and return a new sparse keymap.
154 Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),
155 which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),
156 which binds the function key or mouse event SYMBOL to DEFINITION.
157 Initially the alist is nil.
158
159 The optional arg STRING supplies a menu name for the keymap
160 in case you use it as a menu with `x-popup-menu'. */)
161 (string)
162 Lisp_Object string;
163 {
164 if (!NILP (string))
165 return Fcons (Qkeymap, Fcons (string, Qnil));
166 return Fcons (Qkeymap, Qnil);
167 }
168
169 /* This function is used for installing the standard key bindings
170 at initialization time.
171
172 For example:
173
174 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
175
176 void
177 initial_define_key (keymap, key, defname)
178 Lisp_Object keymap;
179 int key;
180 char *defname;
181 {
182 store_in_keymap (keymap, make_number (key), intern (defname));
183 }
184
185 void
186 initial_define_lispy_key (keymap, keyname, defname)
187 Lisp_Object keymap;
188 char *keyname;
189 char *defname;
190 {
191 store_in_keymap (keymap, intern (keyname), intern (defname));
192 }
193
194 DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0,
195 doc: /* Return t if OBJECT is a keymap.
196
197 A keymap is a list (keymap . ALIST),
198 or a symbol whose function definition is itself a keymap.
199 ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);
200 a vector of densely packed bindings for small character codes
201 is also allowed as an element. */)
202 (object)
203 Lisp_Object object;
204 {
205 return (KEYMAPP (object) ? Qt : Qnil);
206 }
207
208 DEFUN ("keymap-prompt", Fkeymap_prompt, Skeymap_prompt, 1, 1, 0,
209 doc: /* Return the prompt-string of a keymap MAP.
210 If non-nil, the prompt is shown in the echo-area
211 when reading a key-sequence to be looked-up in this keymap. */)
212 (map)
213 Lisp_Object map;
214 {
215 while (CONSP (map))
216 {
217 register Lisp_Object tem;
218 tem = Fcar (map);
219 if (STRINGP (tem))
220 return tem;
221 map = Fcdr (map);
222 }
223 return Qnil;
224 }
225
226 /* Check that OBJECT is a keymap (after dereferencing through any
227 symbols). If it is, return it.
228
229 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
230 is an autoload form, do the autoload and try again.
231 If AUTOLOAD is nonzero, callers must assume GC is possible.
232
233 If the map needs to be autoloaded, but AUTOLOAD is zero (and ERROR
234 is zero as well), return Qt.
235
236 ERROR controls how we respond if OBJECT isn't a keymap.
237 If ERROR is non-zero, signal an error; otherwise, just return Qnil.
238
239 Note that most of the time, we don't want to pursue autoloads.
240 Functions like Faccessible_keymaps which scan entire keymap trees
241 shouldn't load every autoloaded keymap. I'm not sure about this,
242 but it seems to me that only read_key_sequence, Flookup_key, and
243 Fdefine_key should cause keymaps to be autoloaded.
244
245 This function can GC when AUTOLOAD is non-zero, because it calls
246 do_autoload which can GC. */
247
248 Lisp_Object
249 get_keymap (object, error, autoload)
250 Lisp_Object object;
251 int error, autoload;
252 {
253 Lisp_Object tem;
254
255 autoload_retry:
256 if (NILP (object))
257 goto end;
258 if (CONSP (object) && EQ (XCAR (object), Qkeymap))
259 return object;
260
261 tem = indirect_function (object);
262 if (CONSP (tem))
263 {
264 if (EQ (XCAR (tem), Qkeymap))
265 return tem;
266
267 /* Should we do an autoload? Autoload forms for keymaps have
268 Qkeymap as their fifth element. */
269 if ((autoload || !error) && EQ (XCAR (tem), Qautoload))
270 {
271 Lisp_Object tail;
272
273 tail = Fnth (make_number (4), tem);
274 if (EQ (tail, Qkeymap))
275 {
276 if (autoload)
277 {
278 struct gcpro gcpro1, gcpro2;
279
280 GCPRO2 (tem, object);
281 do_autoload (tem, object);
282 UNGCPRO;
283
284 goto autoload_retry;
285 }
286 else
287 return Qt;
288 }
289 }
290 }
291
292 end:
293 if (error)
294 wrong_type_argument (Qkeymapp, object);
295 return Qnil;
296 }
297 \f
298 /* Return the parent map of KEYMAP, or nil if it has none.
299 We assume that KEYMAP is a valid keymap. */
300
301 Lisp_Object
302 keymap_parent (keymap, autoload)
303 Lisp_Object keymap;
304 int autoload;
305 {
306 Lisp_Object list;
307
308 keymap = get_keymap (keymap, 1, autoload);
309
310 /* Skip past the initial element `keymap'. */
311 list = XCDR (keymap);
312 for (; CONSP (list); list = XCDR (list))
313 {
314 /* See if there is another `keymap'. */
315 if (KEYMAPP (list))
316 return list;
317 }
318
319 return get_keymap (list, 0, autoload);
320 }
321
322 DEFUN ("keymap-parent", Fkeymap_parent, Skeymap_parent, 1, 1, 0,
323 doc: /* Return the parent keymap of KEYMAP. */)
324 (keymap)
325 Lisp_Object keymap;
326 {
327 return keymap_parent (keymap, 1);
328 }
329
330 /* Check whether MAP is one of MAPS parents. */
331 int
332 keymap_memberp (map, maps)
333 Lisp_Object map, maps;
334 {
335 if (NILP (map)) return 0;
336 while (KEYMAPP (maps) && !EQ (map, maps))
337 maps = keymap_parent (maps, 0);
338 return (EQ (map, maps));
339 }
340
341 /* Set the parent keymap of MAP to PARENT. */
342
343 DEFUN ("set-keymap-parent", Fset_keymap_parent, Sset_keymap_parent, 2, 2, 0,
344 doc: /* Modify KEYMAP to set its parent map to PARENT.
345 Return PARENT.
346 PARENT should be nil or another keymap. */)
347 (keymap, parent)
348 Lisp_Object keymap, parent;
349 {
350 Lisp_Object list, prev;
351 struct gcpro gcpro1, gcpro2;
352 int i;
353
354 /* Force a keymap flush for the next call to where-is.
355 Since this can be called from within where-is, we don't set where_is_cache
356 directly but only where_is_cache_keymaps, since where_is_cache shouldn't
357 be changed during where-is, while where_is_cache_keymaps is only used at
358 the very beginning of where-is and can thus be changed here without any
359 adverse effect.
360 This is a very minor correctness (rather than safety) issue. */
361 where_is_cache_keymaps = Qt;
362
363 GCPRO2 (keymap, parent);
364 keymap = get_keymap (keymap, 1, 1);
365
366 if (!NILP (parent))
367 {
368 parent = get_keymap (parent, 1, 1);
369
370 /* Check for cycles. */
371 if (keymap_memberp (keymap, parent))
372 error ("Cyclic keymap inheritance");
373 }
374
375 /* Skip past the initial element `keymap'. */
376 prev = keymap;
377 while (1)
378 {
379 list = XCDR (prev);
380 /* If there is a parent keymap here, replace it.
381 If we came to the end, add the parent in PREV. */
382 if (!CONSP (list) || KEYMAPP (list))
383 {
384 /* If we already have the right parent, return now
385 so that we avoid the loops below. */
386 if (EQ (XCDR (prev), parent))
387 RETURN_UNGCPRO (parent);
388
389 XSETCDR (prev, parent);
390 break;
391 }
392 prev = list;
393 }
394
395 /* Scan through for submaps, and set their parents too. */
396
397 for (list = XCDR (keymap); CONSP (list); list = XCDR (list))
398 {
399 /* Stop the scan when we come to the parent. */
400 if (EQ (XCAR (list), Qkeymap))
401 break;
402
403 /* If this element holds a prefix map, deal with it. */
404 if (CONSP (XCAR (list))
405 && CONSP (XCDR (XCAR (list))))
406 fix_submap_inheritance (keymap, XCAR (XCAR (list)),
407 XCDR (XCAR (list)));
408
409 if (VECTORP (XCAR (list)))
410 for (i = 0; i < XVECTOR (XCAR (list))->size; i++)
411 if (CONSP (XVECTOR (XCAR (list))->contents[i]))
412 fix_submap_inheritance (keymap, make_number (i),
413 XVECTOR (XCAR (list))->contents[i]);
414
415 if (CHAR_TABLE_P (XCAR (list)))
416 {
417 Lisp_Object indices[3];
418
419 map_char_table (fix_submap_inheritance, Qnil,
420 XCAR (list), XCAR (list),
421 keymap, 0, indices);
422 }
423 }
424
425 RETURN_UNGCPRO (parent);
426 }
427
428 /* EVENT is defined in MAP as a prefix, and SUBMAP is its definition.
429 if EVENT is also a prefix in MAP's parent,
430 make sure that SUBMAP inherits that definition as its own parent. */
431
432 static void
433 fix_submap_inheritance (map, event, submap)
434 Lisp_Object map, event, submap;
435 {
436 Lisp_Object map_parent, parent_entry;
437
438 /* SUBMAP is a cons that we found as a key binding.
439 Discard the other things found in a menu key binding. */
440
441 submap = get_keymap (get_keyelt (submap, 0), 0, 0);
442
443 /* If it isn't a keymap now, there's no work to do. */
444 if (!CONSP (submap))
445 return;
446
447 map_parent = keymap_parent (map, 0);
448 if (!NILP (map_parent))
449 parent_entry =
450 get_keymap (access_keymap (map_parent, event, 0, 0, 0), 0, 0);
451 else
452 parent_entry = Qnil;
453
454 /* If MAP's parent has something other than a keymap,
455 our own submap shadows it completely. */
456 if (!CONSP (parent_entry))
457 return;
458
459 if (! EQ (parent_entry, submap))
460 {
461 Lisp_Object submap_parent;
462 submap_parent = submap;
463 while (1)
464 {
465 Lisp_Object tem;
466
467 tem = keymap_parent (submap_parent, 0);
468
469 if (KEYMAPP (tem))
470 {
471 if (keymap_memberp (tem, parent_entry))
472 /* Fset_keymap_parent could create a cycle. */
473 return;
474 submap_parent = tem;
475 }
476 else
477 break;
478 }
479 Fset_keymap_parent (submap_parent, parent_entry);
480 }
481 }
482 \f
483 /* Look up IDX in MAP. IDX may be any sort of event.
484 Note that this does only one level of lookup; IDX must be a single
485 event, not a sequence.
486
487 If T_OK is non-zero, bindings for Qt are treated as default
488 bindings; any key left unmentioned by other tables and bindings is
489 given the binding of Qt.
490
491 If T_OK is zero, bindings for Qt are not treated specially.
492
493 If NOINHERIT, don't accept a subkeymap found in an inherited keymap. */
494
495 Lisp_Object
496 access_keymap (map, idx, t_ok, noinherit, autoload)
497 Lisp_Object map;
498 Lisp_Object idx;
499 int t_ok;
500 int noinherit;
501 int autoload;
502 {
503 Lisp_Object val;
504
505 /* Qunbound in VAL means we have found no binding yet. */
506 val = Qunbound;
507
508 /* If idx is a list (some sort of mouse click, perhaps?),
509 the index we want to use is the car of the list, which
510 ought to be a symbol. */
511 idx = EVENT_HEAD (idx);
512
513 /* If idx is a symbol, it might have modifiers, which need to
514 be put in the canonical order. */
515 if (SYMBOLP (idx))
516 idx = reorder_modifiers (idx);
517 else if (INTEGERP (idx))
518 /* Clobber the high bits that can be present on a machine
519 with more than 24 bits of integer. */
520 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
521
522 /* Handle the special meta -> esc mapping. */
523 if (INTEGERP (idx) && XUINT (idx) & meta_modifier)
524 {
525 /* See if there is a meta-map. If there's none, there is
526 no binding for IDX, unless a default binding exists in MAP. */
527 struct gcpro gcpro1;
528 Lisp_Object meta_map;
529 GCPRO1 (map);
530 meta_map = get_keymap (access_keymap (map, meta_prefix_char,
531 t_ok, noinherit, autoload),
532 0, autoload);
533 UNGCPRO;
534 if (CONSP (meta_map))
535 {
536 map = meta_map;
537 idx = make_number (XUINT (idx) & ~meta_modifier);
538 }
539 else if (t_ok)
540 /* Set IDX to t, so that we only find a default binding. */
541 idx = Qt;
542 else
543 /* We know there is no binding. */
544 return Qnil;
545 }
546
547 /* t_binding is where we put a default binding that applies,
548 to use in case we do not find a binding specifically
549 for this key sequence. */
550 {
551 Lisp_Object tail;
552 Lisp_Object t_binding = Qnil;
553 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
554
555 GCPRO4 (map, tail, idx, t_binding);
556
557 /* If `t_ok' is 2, both `t' and generic-char bindings are accepted.
558 If it is 1, only generic-char bindings are accepted.
559 Otherwise, neither are. */
560 t_ok = t_ok ? 2 : 0;
561
562 for (tail = XCDR (map);
563 (CONSP (tail)
564 || (tail = get_keymap (tail, 0, autoload), CONSP (tail)));
565 tail = XCDR (tail))
566 {
567 Lisp_Object binding;
568
569 binding = XCAR (tail);
570 if (SYMBOLP (binding))
571 {
572 /* If NOINHERIT, stop finding prefix definitions
573 after we pass a second occurrence of the `keymap' symbol. */
574 if (noinherit && EQ (binding, Qkeymap))
575 RETURN_UNGCPRO (Qnil);
576 }
577 else if (CONSP (binding))
578 {
579 Lisp_Object key = XCAR (binding);
580
581 if (EQ (key, idx))
582 val = XCDR (binding);
583 else if (t_ok
584 && INTEGERP (idx)
585 && (XINT (idx) & CHAR_MODIFIER_MASK) == 0
586 && INTEGERP (key)
587 && (XINT (key) & CHAR_MODIFIER_MASK) == 0
588 && !SINGLE_BYTE_CHAR_P (XINT (idx))
589 && !SINGLE_BYTE_CHAR_P (XINT (key))
590 && CHAR_VALID_P (XINT (key), 1)
591 && !CHAR_VALID_P (XINT (key), 0)
592 && (CHAR_CHARSET (XINT (key))
593 == CHAR_CHARSET (XINT (idx))))
594 {
595 /* KEY is the generic character of the charset of IDX.
596 Use KEY's binding if there isn't a binding for IDX
597 itself. */
598 t_binding = XCDR (binding);
599 t_ok = 0;
600 }
601 else if (t_ok > 1 && EQ (key, Qt))
602 {
603 t_binding = XCDR (binding);
604 t_ok = 1;
605 }
606 }
607 else if (VECTORP (binding))
608 {
609 if (NATNUMP (idx) && XFASTINT (idx) < ASIZE (binding))
610 val = AREF (binding, XFASTINT (idx));
611 }
612 else if (CHAR_TABLE_P (binding))
613 {
614 /* Character codes with modifiers
615 are not included in a char-table.
616 All character codes without modifiers are included. */
617 if (NATNUMP (idx) && (XFASTINT (idx) & CHAR_MODIFIER_MASK) == 0)
618 {
619 val = Faref (binding, idx);
620 /* `nil' has a special meaning for char-tables, so
621 we use something else to record an explicitly
622 unbound entry. */
623 if (NILP (val))
624 val = Qunbound;
625 }
626 }
627
628 /* If we found a binding, clean it up and return it. */
629 if (!EQ (val, Qunbound))
630 {
631 if (EQ (val, Qt))
632 /* A Qt binding is just like an explicit nil binding
633 (i.e. it shadows any parent binding but not bindings in
634 keymaps of lower precedence). */
635 val = Qnil;
636 val = get_keyelt (val, autoload);
637 if (KEYMAPP (val))
638 fix_submap_inheritance (map, idx, val);
639 RETURN_UNGCPRO (val);
640 }
641 QUIT;
642 }
643 UNGCPRO;
644 return get_keyelt (t_binding, autoload);
645 }
646 }
647
648 static void
649 map_keymap_item (fun, args, key, val, data)
650 map_keymap_function_t fun;
651 Lisp_Object args, key, val;
652 void *data;
653 {
654 /* We should maybe try to detect bindings shadowed by previous
655 ones and things like that. */
656 if (EQ (val, Qt))
657 val = Qnil;
658 (*fun) (key, val, args, data);
659 }
660
661 static void
662 map_keymap_char_table_item (args, key, val)
663 Lisp_Object args, key, val;
664 {
665 if (!NILP (val))
666 {
667 map_keymap_function_t fun = XSAVE_VALUE (XCAR (args))->pointer;
668 args = XCDR (args);
669 map_keymap_item (fun, XCDR (args), key, val,
670 XSAVE_VALUE (XCAR (args))->pointer);
671 }
672 }
673
674 /* Call FUN for every binding in MAP.
675 FUN is called with 4 arguments: FUN (KEY, BINDING, ARGS, DATA).
676 AUTOLOAD if non-zero means that we can autoload keymaps if necessary. */
677 void
678 map_keymap (map, fun, args, data, autoload)
679 map_keymap_function_t fun;
680 Lisp_Object map, args;
681 void *data;
682 int autoload;
683 {
684 struct gcpro gcpro1, gcpro2, gcpro3;
685 Lisp_Object tail;
686
687 GCPRO3 (map, args, tail);
688 map = get_keymap (map, 1, autoload);
689 for (tail = (CONSP (map) && EQ (Qkeymap, XCAR (map))) ? XCDR (map) : map;
690 CONSP (tail) || (tail = get_keymap (tail, 0, autoload), CONSP (tail));
691 tail = XCDR (tail))
692 {
693 Lisp_Object binding = XCAR (tail);
694
695 if (CONSP (binding))
696 map_keymap_item (fun, args, XCAR (binding), XCDR (binding), data);
697 else if (VECTORP (binding))
698 {
699 /* Loop over the char values represented in the vector. */
700 int len = ASIZE (binding);
701 int c;
702 for (c = 0; c < len; c++)
703 {
704 Lisp_Object character;
705 XSETFASTINT (character, c);
706 map_keymap_item (fun, args, character, AREF (binding, c), data);
707 }
708 }
709 else if (CHAR_TABLE_P (binding))
710 {
711 Lisp_Object indices[3];
712 map_char_table (map_keymap_char_table_item, Qnil, binding, binding,
713 Fcons (make_save_value (fun, 0),
714 Fcons (make_save_value (data, 0),
715 args)),
716 0, indices);
717 }
718 }
719 UNGCPRO;
720 }
721
722 static void
723 map_keymap_call (key, val, fun, dummy)
724 Lisp_Object key, val, fun;
725 void *dummy;
726 {
727 call2 (fun, key, val);
728 }
729
730 DEFUN ("map-keymap", Fmap_keymap, Smap_keymap, 2, 2, 0,
731 doc: /* Call FUNCTION for every binding in KEYMAP.
732 FUNCTION is called with two arguments: the event and its binding. */)
733 (function, keymap)
734 Lisp_Object function, keymap;
735 {
736 if (INTEGERP (function))
737 /* We have to stop integers early since map_keymap gives them special
738 significance. */
739 Fsignal (Qinvalid_function, Fcons (function, Qnil));
740 map_keymap (keymap, map_keymap_call, function, NULL, 1);
741 return Qnil;
742 }
743
744 /* Given OBJECT which was found in a slot in a keymap,
745 trace indirect definitions to get the actual definition of that slot.
746 An indirect definition is a list of the form
747 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
748 and INDEX is the object to look up in KEYMAP to yield the definition.
749
750 Also if OBJECT has a menu string as the first element,
751 remove that. Also remove a menu help string as second element.
752
753 If AUTOLOAD is nonzero, load autoloadable keymaps
754 that are referred to with indirection. */
755
756 Lisp_Object
757 get_keyelt (object, autoload)
758 Lisp_Object object;
759 int autoload;
760 {
761 while (1)
762 {
763 if (!(CONSP (object)))
764 /* This is really the value. */
765 return object;
766
767 /* If the keymap contents looks like (keymap ...) or (lambda ...)
768 then use itself. */
769 else if (EQ (XCAR (object), Qkeymap) || EQ (XCAR (object), Qlambda))
770 return object;
771
772 /* If the keymap contents looks like (menu-item name . DEFN)
773 or (menu-item name DEFN ...) then use DEFN.
774 This is a new format menu item. */
775 else if (EQ (XCAR (object), Qmenu_item))
776 {
777 if (CONSP (XCDR (object)))
778 {
779 Lisp_Object tem;
780
781 object = XCDR (XCDR (object));
782 tem = object;
783 if (CONSP (object))
784 object = XCAR (object);
785
786 /* If there's a `:filter FILTER', apply FILTER to the
787 menu-item's definition to get the real definition to
788 use. */
789 for (; CONSP (tem) && CONSP (XCDR (tem)); tem = XCDR (tem))
790 if (EQ (XCAR (tem), QCfilter) && autoload)
791 {
792 Lisp_Object filter;
793 filter = XCAR (XCDR (tem));
794 filter = list2 (filter, list2 (Qquote, object));
795 object = menu_item_eval_property (filter);
796 break;
797 }
798 }
799 else
800 /* Invalid keymap. */
801 return object;
802 }
803
804 /* If the keymap contents looks like (STRING . DEFN), use DEFN.
805 Keymap alist elements like (CHAR MENUSTRING . DEFN)
806 will be used by HierarKey menus. */
807 else if (STRINGP (XCAR (object)))
808 {
809 object = XCDR (object);
810 /* Also remove a menu help string, if any,
811 following the menu item name. */
812 if (CONSP (object) && STRINGP (XCAR (object)))
813 object = XCDR (object);
814 /* Also remove the sublist that caches key equivalences, if any. */
815 if (CONSP (object) && CONSP (XCAR (object)))
816 {
817 Lisp_Object carcar;
818 carcar = XCAR (XCAR (object));
819 if (NILP (carcar) || VECTORP (carcar))
820 object = XCDR (object);
821 }
822 }
823
824 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
825 else
826 {
827 struct gcpro gcpro1;
828 Lisp_Object map;
829 GCPRO1 (object);
830 map = get_keymap (Fcar_safe (object), 0, autoload);
831 UNGCPRO;
832 return (!CONSP (map) ? object /* Invalid keymap */
833 : access_keymap (map, Fcdr (object), 0, 0, autoload));
834 }
835 }
836 }
837
838 static Lisp_Object
839 store_in_keymap (keymap, idx, def)
840 Lisp_Object keymap;
841 register Lisp_Object idx;
842 register Lisp_Object def;
843 {
844 /* Flush any reverse-map cache. */
845 where_is_cache = Qnil;
846 where_is_cache_keymaps = Qt;
847
848 /* If we are preparing to dump, and DEF is a menu element
849 with a menu item indicator, copy it to ensure it is not pure. */
850 if (CONSP (def) && PURE_P (def)
851 && (EQ (XCAR (def), Qmenu_item) || STRINGP (XCAR (def))))
852 def = Fcons (XCAR (def), XCDR (def));
853
854 if (!CONSP (keymap) || !EQ (XCAR (keymap), Qkeymap))
855 error ("attempt to define a key in a non-keymap");
856
857 /* If idx is a list (some sort of mouse click, perhaps?),
858 the index we want to use is the car of the list, which
859 ought to be a symbol. */
860 idx = EVENT_HEAD (idx);
861
862 /* If idx is a symbol, it might have modifiers, which need to
863 be put in the canonical order. */
864 if (SYMBOLP (idx))
865 idx = reorder_modifiers (idx);
866 else if (INTEGERP (idx))
867 /* Clobber the high bits that can be present on a machine
868 with more than 24 bits of integer. */
869 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
870
871 /* Scan the keymap for a binding of idx. */
872 {
873 Lisp_Object tail;
874
875 /* The cons after which we should insert new bindings. If the
876 keymap has a table element, we record its position here, so new
877 bindings will go after it; this way, the table will stay
878 towards the front of the alist and character lookups in dense
879 keymaps will remain fast. Otherwise, this just points at the
880 front of the keymap. */
881 Lisp_Object insertion_point;
882
883 insertion_point = keymap;
884 for (tail = XCDR (keymap); CONSP (tail); tail = XCDR (tail))
885 {
886 Lisp_Object elt;
887
888 elt = XCAR (tail);
889 if (VECTORP (elt))
890 {
891 if (NATNUMP (idx) && XFASTINT (idx) < ASIZE (elt))
892 {
893 ASET (elt, XFASTINT (idx), def);
894 return def;
895 }
896 insertion_point = tail;
897 }
898 else if (CHAR_TABLE_P (elt))
899 {
900 /* Character codes with modifiers
901 are not included in a char-table.
902 All character codes without modifiers are included. */
903 if (NATNUMP (idx) && !(XFASTINT (idx) & CHAR_MODIFIER_MASK))
904 {
905 Faset (elt, idx,
906 /* `nil' has a special meaning for char-tables, so
907 we use something else to record an explicitly
908 unbound entry. */
909 NILP (def) ? Qt : def);
910 return def;
911 }
912 insertion_point = tail;
913 }
914 else if (CONSP (elt))
915 {
916 if (EQ (idx, XCAR (elt)))
917 {
918 XSETCDR (elt, def);
919 return def;
920 }
921 }
922 else if (EQ (elt, Qkeymap))
923 /* If we find a 'keymap' symbol in the spine of KEYMAP,
924 then we must have found the start of a second keymap
925 being used as the tail of KEYMAP, and a binding for IDX
926 should be inserted before it. */
927 goto keymap_end;
928
929 QUIT;
930 }
931
932 keymap_end:
933 /* We have scanned the entire keymap, and not found a binding for
934 IDX. Let's add one. */
935 XSETCDR (insertion_point,
936 Fcons (Fcons (idx, def), XCDR (insertion_point)));
937 }
938
939 return def;
940 }
941
942 EXFUN (Fcopy_keymap, 1);
943
944 Lisp_Object
945 copy_keymap_item (elt)
946 Lisp_Object elt;
947 {
948 Lisp_Object res, tem;
949
950 if (!CONSP (elt))
951 return elt;
952
953 res = tem = elt;
954
955 /* Is this a new format menu item. */
956 if (EQ (XCAR (tem), Qmenu_item))
957 {
958 /* Copy cell with menu-item marker. */
959 res = elt = Fcons (XCAR (tem), XCDR (tem));
960 tem = XCDR (elt);
961 if (CONSP (tem))
962 {
963 /* Copy cell with menu-item name. */
964 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
965 elt = XCDR (elt);
966 tem = XCDR (elt);
967 }
968 if (CONSP (tem))
969 {
970 /* Copy cell with binding and if the binding is a keymap,
971 copy that. */
972 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
973 elt = XCDR (elt);
974 tem = XCAR (elt);
975 if (CONSP (tem) && EQ (XCAR (tem), Qkeymap))
976 XSETCAR (elt, Fcopy_keymap (tem));
977 tem = XCDR (elt);
978 if (CONSP (tem) && CONSP (XCAR (tem)))
979 /* Delete cache for key equivalences. */
980 XSETCDR (elt, XCDR (tem));
981 }
982 }
983 else
984 {
985 /* It may be an old fomat menu item.
986 Skip the optional menu string. */
987 if (STRINGP (XCAR (tem)))
988 {
989 /* Copy the cell, since copy-alist didn't go this deep. */
990 res = elt = Fcons (XCAR (tem), XCDR (tem));
991 tem = XCDR (elt);
992 /* Also skip the optional menu help string. */
993 if (CONSP (tem) && STRINGP (XCAR (tem)))
994 {
995 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
996 elt = XCDR (elt);
997 tem = XCDR (elt);
998 }
999 /* There may also be a list that caches key equivalences.
1000 Just delete it for the new keymap. */
1001 if (CONSP (tem)
1002 && CONSP (XCAR (tem))
1003 && (NILP (XCAR (XCAR (tem)))
1004 || VECTORP (XCAR (XCAR (tem)))))
1005 {
1006 XSETCDR (elt, XCDR (tem));
1007 tem = XCDR (tem);
1008 }
1009 if (CONSP (tem) && EQ (XCAR (tem), Qkeymap))
1010 XSETCDR (elt, Fcopy_keymap (tem));
1011 }
1012 else if (EQ (XCAR (tem), Qkeymap))
1013 res = Fcopy_keymap (elt);
1014 }
1015 return res;
1016 }
1017
1018 static void
1019 copy_keymap_1 (chartable, idx, elt)
1020 Lisp_Object chartable, idx, elt;
1021 {
1022 Faset (chartable, idx, copy_keymap_item (elt));
1023 }
1024
1025 DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
1026 doc: /* Return a copy of the keymap KEYMAP.
1027 The copy starts out with the same definitions of KEYMAP,
1028 but changing either the copy or KEYMAP does not affect the other.
1029 Any key definitions that are subkeymaps are recursively copied.
1030 However, a key definition which is a symbol whose definition is a keymap
1031 is not copied. */)
1032 (keymap)
1033 Lisp_Object keymap;
1034 {
1035 register Lisp_Object copy, tail;
1036 keymap = get_keymap (keymap, 1, 0);
1037 copy = tail = Fcons (Qkeymap, Qnil);
1038 keymap = XCDR (keymap); /* Skip the `keymap' symbol. */
1039
1040 while (CONSP (keymap) && !EQ (XCAR (keymap), Qkeymap))
1041 {
1042 Lisp_Object elt = XCAR (keymap);
1043 if (CHAR_TABLE_P (elt))
1044 {
1045 Lisp_Object indices[3];
1046 elt = Fcopy_sequence (elt);
1047 map_char_table (copy_keymap_1, Qnil, elt, elt, elt, 0, indices);
1048 }
1049 else if (VECTORP (elt))
1050 {
1051 int i;
1052 elt = Fcopy_sequence (elt);
1053 for (i = 0; i < ASIZE (elt); i++)
1054 ASET (elt, i, copy_keymap_item (AREF (elt, i)));
1055 }
1056 else if (CONSP (elt))
1057 elt = Fcons (XCAR (elt), copy_keymap_item (XCDR (elt)));
1058 XSETCDR (tail, Fcons (elt, Qnil));
1059 tail = XCDR (tail);
1060 keymap = XCDR (keymap);
1061 }
1062 XSETCDR (tail, keymap);
1063 return copy;
1064 }
1065 \f
1066 /* Simple Keymap mutators and accessors. */
1067
1068 /* GC is possible in this function if it autoloads a keymap. */
1069
1070 DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
1071 doc: /* In KEYMAP, define key sequence KEY as DEF.
1072 KEYMAP is a keymap.
1073
1074 KEY is a string or a vector of symbols and characters meaning a
1075 sequence of keystrokes and events. Non-ASCII characters with codes
1076 above 127 (such as ISO Latin-1) can be included if you use a vector.
1077 Using [t] for KEY creates a default definition, which applies to any
1078 event type that has no other definition in this keymap.
1079
1080 DEF is anything that can be a key's definition:
1081 nil (means key is undefined in this keymap),
1082 a command (a Lisp function suitable for interactive calling),
1083 a string (treated as a keyboard macro),
1084 a keymap (to define a prefix key),
1085 a symbol (when the key is looked up, the symbol will stand for its
1086 function definition, which should at that time be one of the above,
1087 or another symbol whose function definition is used, etc.),
1088 a cons (STRING . DEFN), meaning that DEFN is the definition
1089 (DEFN should be a valid definition in its own right),
1090 or a cons (MAP . CHAR), meaning use definition of CHAR in keymap MAP.
1091
1092 If KEYMAP is a sparse keymap with a binding for KEY, the existing
1093 binding is altered. If there is no binding for KEY, the new pair
1094 binding KEY to DEF is added at the front of KEYMAP. */)
1095 (keymap, key, def)
1096 Lisp_Object keymap;
1097 Lisp_Object key;
1098 Lisp_Object def;
1099 {
1100 register int idx;
1101 register Lisp_Object c;
1102 register Lisp_Object cmd;
1103 int metized = 0;
1104 int meta_bit;
1105 int length;
1106 struct gcpro gcpro1, gcpro2, gcpro3;
1107
1108 GCPRO3 (keymap, key, def);
1109 keymap = get_keymap (keymap, 1, 1);
1110
1111 if (!VECTORP (key) && !STRINGP (key))
1112 key = wrong_type_argument (Qarrayp, key);
1113
1114 length = XFASTINT (Flength (key));
1115 if (length == 0)
1116 RETURN_UNGCPRO (Qnil);
1117
1118 if (SYMBOLP (def) && !EQ (Vdefine_key_rebound_commands, Qt))
1119 Vdefine_key_rebound_commands = Fcons (def, Vdefine_key_rebound_commands);
1120
1121 meta_bit = VECTORP (key) ? meta_modifier : 0x80;
1122
1123 idx = 0;
1124 while (1)
1125 {
1126 c = Faref (key, make_number (idx));
1127
1128 if (CONSP (c) && lucid_event_type_list_p (c))
1129 c = Fevent_convert_list (c);
1130
1131 if (SYMBOLP (c))
1132 silly_event_symbol_error (c);
1133
1134 if (INTEGERP (c)
1135 && (XINT (c) & meta_bit)
1136 && !metized)
1137 {
1138 c = meta_prefix_char;
1139 metized = 1;
1140 }
1141 else
1142 {
1143 if (INTEGERP (c))
1144 XSETINT (c, XINT (c) & ~meta_bit);
1145
1146 metized = 0;
1147 idx++;
1148 }
1149
1150 if (!INTEGERP (c) && !SYMBOLP (c) && !CONSP (c))
1151 error ("Key sequence contains invalid event");
1152
1153 if (idx == length)
1154 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
1155
1156 cmd = access_keymap (keymap, c, 0, 1, 1);
1157
1158 /* If this key is undefined, make it a prefix. */
1159 if (NILP (cmd))
1160 cmd = define_as_prefix (keymap, c);
1161
1162 keymap = get_keymap (cmd, 0, 1);
1163 if (!CONSP (keymap))
1164 /* We must use Fkey_description rather than just passing key to
1165 error; key might be a vector, not a string. */
1166 error ("Key sequence %s uses invalid prefix characters",
1167 SDATA (Fkey_description (key, Qnil)));
1168 }
1169 }
1170
1171 /* This function may GC (it calls Fkey_binding). */
1172
1173 DEFUN ("command-remapping", Fcommand_remapping, Scommand_remapping, 1, 1, 0,
1174 doc: /* Return the remapping for command COMMAND in current keymaps.
1175 Returns nil if COMMAND is not remapped (or not a symbol). */)
1176 (command)
1177 Lisp_Object command;
1178 {
1179 if (!SYMBOLP (command))
1180 return Qnil;
1181
1182 ASET (command_remapping_vector, 1, command);
1183 return Fkey_binding (command_remapping_vector, Qnil, Qt);
1184 }
1185
1186 /* Value is number if KEY is too long; nil if valid but has no definition. */
1187 /* GC is possible in this function if it autoloads a keymap. */
1188
1189 DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
1190 doc: /* In keymap KEYMAP, look up key sequence KEY. Return the definition.
1191 nil means undefined. See doc of `define-key' for kinds of definitions.
1192
1193 A number as value means KEY is "too long";
1194 that is, characters or symbols in it except for the last one
1195 fail to be a valid sequence of prefix characters in KEYMAP.
1196 The number is how many characters at the front of KEY
1197 it takes to reach a non-prefix command.
1198
1199 Normally, `lookup-key' ignores bindings for t, which act as default
1200 bindings, used when nothing else in the keymap applies; this makes it
1201 usable as a general function for probing keymaps. However, if the
1202 third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will
1203 recognize the default bindings, just as `read-key-sequence' does. */)
1204 (keymap, key, accept_default)
1205 Lisp_Object keymap;
1206 Lisp_Object key;
1207 Lisp_Object accept_default;
1208 {
1209 register int idx;
1210 register Lisp_Object cmd;
1211 register Lisp_Object c;
1212 int length;
1213 int t_ok = !NILP (accept_default);
1214 struct gcpro gcpro1, gcpro2;
1215
1216 GCPRO2 (keymap, key);
1217 keymap = get_keymap (keymap, 1, 1);
1218
1219 if (!VECTORP (key) && !STRINGP (key))
1220 key = wrong_type_argument (Qarrayp, key);
1221
1222 length = XFASTINT (Flength (key));
1223 if (length == 0)
1224 RETURN_UNGCPRO (keymap);
1225
1226 idx = 0;
1227 while (1)
1228 {
1229 c = Faref (key, make_number (idx++));
1230
1231 if (CONSP (c) && lucid_event_type_list_p (c))
1232 c = Fevent_convert_list (c);
1233
1234 /* Turn the 8th bit of string chars into a meta modifier. */
1235 if (XINT (c) & 0x80 && STRINGP (key))
1236 XSETINT (c, (XINT (c) | meta_modifier) & ~0x80);
1237
1238 /* Allow string since binding for `menu-bar-select-buffer'
1239 includes the buffer name in the key sequence. */
1240 if (!INTEGERP (c) && !SYMBOLP (c) && !CONSP (c) && !STRINGP (c))
1241 error ("Key sequence contains invalid event");
1242
1243 cmd = access_keymap (keymap, c, t_ok, 0, 1);
1244 if (idx == length)
1245 RETURN_UNGCPRO (cmd);
1246
1247 keymap = get_keymap (cmd, 0, 1);
1248 if (!CONSP (keymap))
1249 RETURN_UNGCPRO (make_number (idx));
1250
1251 QUIT;
1252 }
1253 }
1254
1255 /* Make KEYMAP define event C as a keymap (i.e., as a prefix).
1256 Assume that currently it does not define C at all.
1257 Return the keymap. */
1258
1259 static Lisp_Object
1260 define_as_prefix (keymap, c)
1261 Lisp_Object keymap, c;
1262 {
1263 Lisp_Object cmd;
1264
1265 cmd = Fmake_sparse_keymap (Qnil);
1266 /* If this key is defined as a prefix in an inherited keymap,
1267 make it a prefix in this map, and make its definition
1268 inherit the other prefix definition. */
1269 cmd = nconc2 (cmd, access_keymap (keymap, c, 0, 0, 0));
1270 store_in_keymap (keymap, c, cmd);
1271
1272 return cmd;
1273 }
1274
1275 /* Append a key to the end of a key sequence. We always make a vector. */
1276
1277 Lisp_Object
1278 append_key (key_sequence, key)
1279 Lisp_Object key_sequence, key;
1280 {
1281 Lisp_Object args[2];
1282
1283 args[0] = key_sequence;
1284
1285 args[1] = Fcons (key, Qnil);
1286 return Fvconcat (2, args);
1287 }
1288
1289 /* Given a event type C which is a symbol,
1290 signal an error if is a mistake such as RET or M-RET or C-DEL, etc. */
1291
1292 static void
1293 silly_event_symbol_error (c)
1294 Lisp_Object c;
1295 {
1296 Lisp_Object parsed, base, name, assoc;
1297 int modifiers;
1298
1299 parsed = parse_modifiers (c);
1300 modifiers = (int) XUINT (XCAR (XCDR (parsed)));
1301 base = XCAR (parsed);
1302 name = Fsymbol_name (base);
1303 /* This alist includes elements such as ("RET" . "\\r"). */
1304 assoc = Fassoc (name, exclude_keys);
1305
1306 if (! NILP (assoc))
1307 {
1308 char new_mods[sizeof ("\\A-\\C-\\H-\\M-\\S-\\s-")];
1309 char *p = new_mods;
1310 Lisp_Object keystring;
1311 if (modifiers & alt_modifier)
1312 { *p++ = '\\'; *p++ = 'A'; *p++ = '-'; }
1313 if (modifiers & ctrl_modifier)
1314 { *p++ = '\\'; *p++ = 'C'; *p++ = '-'; }
1315 if (modifiers & hyper_modifier)
1316 { *p++ = '\\'; *p++ = 'H'; *p++ = '-'; }
1317 if (modifiers & meta_modifier)
1318 { *p++ = '\\'; *p++ = 'M'; *p++ = '-'; }
1319 if (modifiers & shift_modifier)
1320 { *p++ = '\\'; *p++ = 'S'; *p++ = '-'; }
1321 if (modifiers & super_modifier)
1322 { *p++ = '\\'; *p++ = 's'; *p++ = '-'; }
1323 *p = 0;
1324
1325 c = reorder_modifiers (c);
1326 keystring = concat2 (build_string (new_mods), XCDR (assoc));
1327
1328 error ((modifiers & ~meta_modifier
1329 ? "To bind the key %s, use [?%s], not [%s]"
1330 : "To bind the key %s, use \"%s\", not [%s]"),
1331 SDATA (SYMBOL_NAME (c)), SDATA (keystring),
1332 SDATA (SYMBOL_NAME (c)));
1333 }
1334 }
1335 \f
1336 /* Global, local, and minor mode keymap stuff. */
1337
1338 /* We can't put these variables inside current_minor_maps, since under
1339 some systems, static gets macro-defined to be the empty string.
1340 Ickypoo. */
1341 static Lisp_Object *cmm_modes = NULL, *cmm_maps = NULL;
1342 static int cmm_size = 0;
1343
1344 /* Error handler used in current_minor_maps. */
1345 static Lisp_Object
1346 current_minor_maps_error ()
1347 {
1348 return Qnil;
1349 }
1350
1351 /* Store a pointer to an array of the keymaps of the currently active
1352 minor modes in *buf, and return the number of maps it contains.
1353
1354 This function always returns a pointer to the same buffer, and may
1355 free or reallocate it, so if you want to keep it for a long time or
1356 hand it out to lisp code, copy it. This procedure will be called
1357 for every key sequence read, so the nice lispy approach (return a
1358 new assoclist, list, what have you) for each invocation would
1359 result in a lot of consing over time.
1360
1361 If we used xrealloc/xmalloc and ran out of memory, they would throw
1362 back to the command loop, which would try to read a key sequence,
1363 which would call this function again, resulting in an infinite
1364 loop. Instead, we'll use realloc/malloc and silently truncate the
1365 list, let the key sequence be read, and hope some other piece of
1366 code signals the error. */
1367 int
1368 current_minor_maps (modeptr, mapptr)
1369 Lisp_Object **modeptr, **mapptr;
1370 {
1371 int i = 0;
1372 int list_number = 0;
1373 Lisp_Object alist, assoc, var, val;
1374 Lisp_Object emulation_alists;
1375 Lisp_Object lists[2];
1376
1377 emulation_alists = Vemulation_mode_map_alists;
1378 lists[0] = Vminor_mode_overriding_map_alist;
1379 lists[1] = Vminor_mode_map_alist;
1380
1381 for (list_number = 0; list_number < 2; list_number++)
1382 {
1383 if (CONSP (emulation_alists))
1384 {
1385 alist = XCAR (emulation_alists);
1386 emulation_alists = XCDR (emulation_alists);
1387 if (SYMBOLP (alist))
1388 alist = find_symbol_value (alist);
1389 list_number = -1;
1390 }
1391 else
1392 alist = lists[list_number];
1393
1394 for ( ; CONSP (alist); alist = XCDR (alist))
1395 if ((assoc = XCAR (alist), CONSP (assoc))
1396 && (var = XCAR (assoc), SYMBOLP (var))
1397 && (val = find_symbol_value (var), !EQ (val, Qunbound))
1398 && !NILP (val))
1399 {
1400 Lisp_Object temp;
1401
1402 /* If a variable has an entry in Vminor_mode_overriding_map_alist,
1403 and also an entry in Vminor_mode_map_alist,
1404 ignore the latter. */
1405 if (list_number == 1)
1406 {
1407 val = assq_no_quit (var, lists[0]);
1408 if (!NILP (val))
1409 continue;
1410 }
1411
1412 if (i >= cmm_size)
1413 {
1414 int newsize, allocsize;
1415 Lisp_Object *newmodes, *newmaps;
1416
1417 newsize = cmm_size == 0 ? 30 : cmm_size * 2;
1418 allocsize = newsize * sizeof *newmodes;
1419
1420 /* Use malloc here. See the comment above this function.
1421 Avoid realloc here; it causes spurious traps on GNU/Linux [KFS] */
1422 BLOCK_INPUT;
1423 newmodes = (Lisp_Object *) malloc (allocsize);
1424 if (newmodes)
1425 {
1426 if (cmm_modes)
1427 {
1428 bcopy (cmm_modes, newmodes, cmm_size * sizeof cmm_modes[0]);
1429 free (cmm_modes);
1430 }
1431 cmm_modes = newmodes;
1432 }
1433
1434 newmaps = (Lisp_Object *) malloc (allocsize);
1435 if (newmaps)
1436 {
1437 if (cmm_maps)
1438 {
1439 bcopy (cmm_maps, newmaps, cmm_size * sizeof cmm_maps[0]);
1440 free (cmm_maps);
1441 }
1442 cmm_maps = newmaps;
1443 }
1444 UNBLOCK_INPUT;
1445
1446 if (newmodes == NULL || newmaps == NULL)
1447 break;
1448 cmm_size = newsize;
1449 }
1450
1451 /* Get the keymap definition--or nil if it is not defined. */
1452 temp = internal_condition_case_1 (Findirect_function,
1453 XCDR (assoc),
1454 Qerror, current_minor_maps_error);
1455 if (!NILP (temp))
1456 {
1457 cmm_modes[i] = var;
1458 cmm_maps [i] = temp;
1459 i++;
1460 }
1461 }
1462 }
1463
1464 if (modeptr) *modeptr = cmm_modes;
1465 if (mapptr) *mapptr = cmm_maps;
1466 return i;
1467 }
1468
1469 DEFUN ("current-active-maps", Fcurrent_active_maps, Scurrent_active_maps,
1470 0, 1, 0,
1471 doc: /* Return a list of the currently active keymaps.
1472 OLP if non-nil indicates that we should obey `overriding-local-map' and
1473 `overriding-terminal-local-map'. */)
1474 (olp)
1475 Lisp_Object olp;
1476 {
1477 Lisp_Object keymaps = Fcons (current_global_map, Qnil);
1478
1479 if (!NILP (olp))
1480 {
1481 if (!NILP (Voverriding_local_map))
1482 keymaps = Fcons (Voverriding_local_map, keymaps);
1483 if (!NILP (current_kboard->Voverriding_terminal_local_map))
1484 keymaps = Fcons (current_kboard->Voverriding_terminal_local_map, keymaps);
1485 }
1486 if (NILP (XCDR (keymaps)))
1487 {
1488 Lisp_Object local;
1489 Lisp_Object *maps;
1490 int nmaps, i;
1491
1492 local = get_local_map (PT, current_buffer, Qlocal_map);
1493 if (!NILP (local))
1494 keymaps = Fcons (local, keymaps);
1495
1496 nmaps = current_minor_maps (0, &maps);
1497
1498 for (i = --nmaps; i >= 0; i--)
1499 if (!NILP (maps[i]))
1500 keymaps = Fcons (maps[i], keymaps);
1501
1502 local = get_local_map (PT, current_buffer, Qkeymap);
1503 if (!NILP (local))
1504 keymaps = Fcons (local, keymaps);
1505 }
1506
1507 return keymaps;
1508 }
1509
1510 /* GC is possible in this function if it autoloads a keymap. */
1511
1512 DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 3, 0,
1513 doc: /* Return the binding for command KEY in current keymaps.
1514 KEY is a string or vector, a sequence of keystrokes.
1515 The binding is probably a symbol with a function definition.
1516
1517 Normally, `key-binding' ignores bindings for t, which act as default
1518 bindings, used when nothing else in the keymap applies; this makes it
1519 usable as a general function for probing keymaps. However, if the
1520 optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does
1521 recognize the default bindings, just as `read-key-sequence' does.
1522
1523 Like the normal command loop, `key-binding' will remap the command
1524 resulting from looking up KEY by looking up the command in the
1525 current keymaps. However, if the optional third argument NO-REMAP
1526 is non-nil, `key-binding' returns the unmapped command. */)
1527 (key, accept_default, no_remap)
1528 Lisp_Object key, accept_default, no_remap;
1529 {
1530 Lisp_Object *maps, value;
1531 int nmaps, i;
1532 struct gcpro gcpro1;
1533
1534 GCPRO1 (key);
1535
1536 if (!NILP (current_kboard->Voverriding_terminal_local_map))
1537 {
1538 value = Flookup_key (current_kboard->Voverriding_terminal_local_map,
1539 key, accept_default);
1540 if (! NILP (value) && !INTEGERP (value))
1541 goto done;
1542 }
1543 else if (!NILP (Voverriding_local_map))
1544 {
1545 value = Flookup_key (Voverriding_local_map, key, accept_default);
1546 if (! NILP (value) && !INTEGERP (value))
1547 goto done;
1548 }
1549 else
1550 {
1551 Lisp_Object local;
1552
1553 local = get_local_map (PT, current_buffer, Qkeymap);
1554 if (! NILP (local))
1555 {
1556 value = Flookup_key (local, key, accept_default);
1557 if (! NILP (value) && !INTEGERP (value))
1558 goto done;
1559 }
1560
1561 nmaps = current_minor_maps (0, &maps);
1562 /* Note that all these maps are GCPRO'd
1563 in the places where we found them. */
1564
1565 for (i = 0; i < nmaps; i++)
1566 if (! NILP (maps[i]))
1567 {
1568 value = Flookup_key (maps[i], key, accept_default);
1569 if (! NILP (value) && !INTEGERP (value))
1570 goto done;
1571 }
1572
1573 local = get_local_map (PT, current_buffer, Qlocal_map);
1574 if (! NILP (local))
1575 {
1576 value = Flookup_key (local, key, accept_default);
1577 if (! NILP (value) && !INTEGERP (value))
1578 goto done;
1579 }
1580 }
1581
1582 value = Flookup_key (current_global_map, key, accept_default);
1583
1584 done:
1585 UNGCPRO;
1586 if (NILP (value) || INTEGERP (value))
1587 return Qnil;
1588
1589 /* If the result of the ordinary keymap lookup is an interactive
1590 command, look for a key binding (ie. remapping) for that command. */
1591
1592 if (NILP (no_remap) && SYMBOLP (value))
1593 {
1594 Lisp_Object value1;
1595 if (value1 = Fcommand_remapping (value), !NILP (value1))
1596 value = value1;
1597 }
1598
1599 return value;
1600 }
1601
1602 /* GC is possible in this function if it autoloads a keymap. */
1603
1604 DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
1605 doc: /* Return the binding for command KEYS in current local keymap only.
1606 KEYS is a string, a sequence of keystrokes.
1607 The binding is probably a symbol with a function definition.
1608
1609 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1610 bindings; see the description of `lookup-key' for more details about this. */)
1611 (keys, accept_default)
1612 Lisp_Object keys, accept_default;
1613 {
1614 register Lisp_Object map;
1615 map = current_buffer->keymap;
1616 if (NILP (map))
1617 return Qnil;
1618 return Flookup_key (map, keys, accept_default);
1619 }
1620
1621 /* GC is possible in this function if it autoloads a keymap. */
1622
1623 DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
1624 doc: /* Return the binding for command KEYS in current global keymap only.
1625 KEYS is a string, a sequence of keystrokes.
1626 The binding is probably a symbol with a function definition.
1627 This function's return values are the same as those of `lookup-key'
1628 \(which see).
1629
1630 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1631 bindings; see the description of `lookup-key' for more details about this. */)
1632 (keys, accept_default)
1633 Lisp_Object keys, accept_default;
1634 {
1635 return Flookup_key (current_global_map, keys, accept_default);
1636 }
1637
1638 /* GC is possible in this function if it autoloads a keymap. */
1639
1640 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
1641 doc: /* Find the visible minor mode bindings of KEY.
1642 Return an alist of pairs (MODENAME . BINDING), where MODENAME is the
1643 the symbol which names the minor mode binding KEY, and BINDING is
1644 KEY's definition in that mode. In particular, if KEY has no
1645 minor-mode bindings, return nil. If the first binding is a
1646 non-prefix, all subsequent bindings will be omitted, since they would
1647 be ignored. Similarly, the list doesn't include non-prefix bindings
1648 that come after prefix bindings.
1649
1650 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1651 bindings; see the description of `lookup-key' for more details about this. */)
1652 (key, accept_default)
1653 Lisp_Object key, accept_default;
1654 {
1655 Lisp_Object *modes, *maps;
1656 int nmaps;
1657 Lisp_Object binding;
1658 int i, j;
1659 struct gcpro gcpro1, gcpro2;
1660
1661 nmaps = current_minor_maps (&modes, &maps);
1662 /* Note that all these maps are GCPRO'd
1663 in the places where we found them. */
1664
1665 binding = Qnil;
1666 GCPRO2 (key, binding);
1667
1668 for (i = j = 0; i < nmaps; i++)
1669 if (!NILP (maps[i])
1670 && !NILP (binding = Flookup_key (maps[i], key, accept_default))
1671 && !INTEGERP (binding))
1672 {
1673 if (KEYMAPP (binding))
1674 maps[j++] = Fcons (modes[i], binding);
1675 else if (j == 0)
1676 RETURN_UNGCPRO (Fcons (Fcons (modes[i], binding), Qnil));
1677 }
1678
1679 UNGCPRO;
1680 return Flist (j, maps);
1681 }
1682
1683 DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 3, 0,
1684 doc: /* Define COMMAND as a prefix command. COMMAND should be a symbol.
1685 A new sparse keymap is stored as COMMAND's function definition and its value.
1686 If a second optional argument MAPVAR is given, the map is stored as
1687 its value instead of as COMMAND's value; but COMMAND is still defined
1688 as a function.
1689 The third optional argument NAME, if given, supplies a menu name
1690 string for the map. This is required to use the keymap as a menu.
1691 This function returns COMMAND. */)
1692 (command, mapvar, name)
1693 Lisp_Object command, mapvar, name;
1694 {
1695 Lisp_Object map;
1696 map = Fmake_sparse_keymap (name);
1697 Ffset (command, map);
1698 if (!NILP (mapvar))
1699 Fset (mapvar, map);
1700 else
1701 Fset (command, map);
1702 return command;
1703 }
1704
1705 DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0,
1706 doc: /* Select KEYMAP as the global keymap. */)
1707 (keymap)
1708 Lisp_Object keymap;
1709 {
1710 keymap = get_keymap (keymap, 1, 1);
1711 current_global_map = keymap;
1712
1713 return Qnil;
1714 }
1715
1716 DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
1717 doc: /* Select KEYMAP as the local keymap.
1718 If KEYMAP is nil, that means no local keymap. */)
1719 (keymap)
1720 Lisp_Object keymap;
1721 {
1722 if (!NILP (keymap))
1723 keymap = get_keymap (keymap, 1, 1);
1724
1725 current_buffer->keymap = keymap;
1726
1727 return Qnil;
1728 }
1729
1730 DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
1731 doc: /* Return current buffer's local keymap, or nil if it has none. */)
1732 ()
1733 {
1734 return current_buffer->keymap;
1735 }
1736
1737 DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0,
1738 doc: /* Return the current global keymap. */)
1739 ()
1740 {
1741 return current_global_map;
1742 }
1743
1744 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0,
1745 doc: /* Return a list of keymaps for the minor modes of the current buffer. */)
1746 ()
1747 {
1748 Lisp_Object *maps;
1749 int nmaps = current_minor_maps (0, &maps);
1750
1751 return Flist (nmaps, maps);
1752 }
1753 \f
1754 /* Help functions for describing and documenting keymaps. */
1755
1756
1757 static void
1758 accessible_keymaps_1 (key, cmd, maps, tail, thisseq, is_metized)
1759 Lisp_Object maps, tail, thisseq, key, cmd;
1760 int is_metized; /* If 1, `key' is assumed to be INTEGERP. */
1761 {
1762 Lisp_Object tem;
1763
1764 cmd = get_keymap (get_keyelt (cmd, 0), 0, 0);
1765 if (NILP (cmd))
1766 return;
1767
1768 /* Look for and break cycles. */
1769 while (!NILP (tem = Frassq (cmd, maps)))
1770 {
1771 Lisp_Object prefix = XCAR (tem);
1772 int lim = XINT (Flength (XCAR (tem)));
1773 if (lim <= XINT (Flength (thisseq)))
1774 { /* This keymap was already seen with a smaller prefix. */
1775 int i = 0;
1776 while (i < lim && EQ (Faref (prefix, make_number (i)),
1777 Faref (thisseq, make_number (i))))
1778 i++;
1779 if (i >= lim)
1780 /* `prefix' is a prefix of `thisseq' => there's a cycle. */
1781 return;
1782 }
1783 /* This occurrence of `cmd' in `maps' does not correspond to a cycle,
1784 but maybe `cmd' occurs again further down in `maps', so keep
1785 looking. */
1786 maps = XCDR (Fmemq (tem, maps));
1787 }
1788
1789 /* If the last key in thisseq is meta-prefix-char,
1790 turn it into a meta-ized keystroke. We know
1791 that the event we're about to append is an
1792 ascii keystroke since we're processing a
1793 keymap table. */
1794 if (is_metized)
1795 {
1796 int meta_bit = meta_modifier;
1797 Lisp_Object last = make_number (XINT (Flength (thisseq)) - 1);
1798 tem = Fcopy_sequence (thisseq);
1799
1800 Faset (tem, last, make_number (XINT (key) | meta_bit));
1801
1802 /* This new sequence is the same length as
1803 thisseq, so stick it in the list right
1804 after this one. */
1805 XSETCDR (tail,
1806 Fcons (Fcons (tem, cmd), XCDR (tail)));
1807 }
1808 else
1809 {
1810 tem = append_key (thisseq, key);
1811 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
1812 }
1813 }
1814
1815 static void
1816 accessible_keymaps_char_table (args, index, cmd)
1817 Lisp_Object args, index, cmd;
1818 {
1819 accessible_keymaps_1 (index, cmd,
1820 XCAR (XCAR (args)),
1821 XCAR (XCDR (args)),
1822 XCDR (XCDR (args)),
1823 XINT (XCDR (XCAR (args))));
1824 }
1825
1826 /* This function cannot GC. */
1827
1828 DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
1829 1, 2, 0,
1830 doc: /* Find all keymaps accessible via prefix characters from KEYMAP.
1831 Returns a list of elements of the form (KEYS . MAP), where the sequence
1832 KEYS starting from KEYMAP gets you to MAP. These elements are ordered
1833 so that the KEYS increase in length. The first element is ([] . KEYMAP).
1834 An optional argument PREFIX, if non-nil, should be a key sequence;
1835 then the value includes only maps for prefixes that start with PREFIX. */)
1836 (keymap, prefix)
1837 Lisp_Object keymap, prefix;
1838 {
1839 Lisp_Object maps, tail;
1840 int prefixlen = 0;
1841
1842 /* no need for gcpro because we don't autoload any keymaps. */
1843
1844 if (!NILP (prefix))
1845 prefixlen = XINT (Flength (prefix));
1846
1847 if (!NILP (prefix))
1848 {
1849 /* If a prefix was specified, start with the keymap (if any) for
1850 that prefix, so we don't waste time considering other prefixes. */
1851 Lisp_Object tem;
1852 tem = Flookup_key (keymap, prefix, Qt);
1853 /* Flookup_key may give us nil, or a number,
1854 if the prefix is not defined in this particular map.
1855 It might even give us a list that isn't a keymap. */
1856 tem = get_keymap (tem, 0, 0);
1857 if (CONSP (tem))
1858 {
1859 /* Convert PREFIX to a vector now, so that later on
1860 we don't have to deal with the possibility of a string. */
1861 if (STRINGP (prefix))
1862 {
1863 int i, i_byte, c;
1864 Lisp_Object copy;
1865
1866 copy = Fmake_vector (make_number (SCHARS (prefix)), Qnil);
1867 for (i = 0, i_byte = 0; i < SCHARS (prefix);)
1868 {
1869 int i_before = i;
1870
1871 FETCH_STRING_CHAR_ADVANCE (c, prefix, i, i_byte);
1872 if (SINGLE_BYTE_CHAR_P (c) && (c & 0200))
1873 c ^= 0200 | meta_modifier;
1874 ASET (copy, i_before, make_number (c));
1875 }
1876 prefix = copy;
1877 }
1878 maps = Fcons (Fcons (prefix, tem), Qnil);
1879 }
1880 else
1881 return Qnil;
1882 }
1883 else
1884 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
1885 get_keymap (keymap, 1, 0)),
1886 Qnil);
1887
1888 /* For each map in the list maps,
1889 look at any other maps it points to,
1890 and stick them at the end if they are not already in the list.
1891
1892 This is a breadth-first traversal, where tail is the queue of
1893 nodes, and maps accumulates a list of all nodes visited. */
1894
1895 for (tail = maps; CONSP (tail); tail = XCDR (tail))
1896 {
1897 register Lisp_Object thisseq, thismap;
1898 Lisp_Object last;
1899 /* Does the current sequence end in the meta-prefix-char? */
1900 int is_metized;
1901
1902 thisseq = Fcar (Fcar (tail));
1903 thismap = Fcdr (Fcar (tail));
1904 last = make_number (XINT (Flength (thisseq)) - 1);
1905 is_metized = (XINT (last) >= 0
1906 /* Don't metize the last char of PREFIX. */
1907 && XINT (last) >= prefixlen
1908 && EQ (Faref (thisseq, last), meta_prefix_char));
1909
1910 for (; CONSP (thismap); thismap = XCDR (thismap))
1911 {
1912 Lisp_Object elt;
1913
1914 elt = XCAR (thismap);
1915
1916 QUIT;
1917
1918 if (CHAR_TABLE_P (elt))
1919 {
1920 Lisp_Object indices[3];
1921
1922 map_char_table (accessible_keymaps_char_table, Qnil, elt,
1923 elt, Fcons (Fcons (maps, make_number (is_metized)),
1924 Fcons (tail, thisseq)),
1925 0, indices);
1926 }
1927 else if (VECTORP (elt))
1928 {
1929 register int i;
1930
1931 /* Vector keymap. Scan all the elements. */
1932 for (i = 0; i < ASIZE (elt); i++)
1933 accessible_keymaps_1 (make_number (i), AREF (elt, i),
1934 maps, tail, thisseq, is_metized);
1935
1936 }
1937 else if (CONSP (elt))
1938 accessible_keymaps_1 (XCAR (elt), XCDR (elt),
1939 maps, tail, thisseq,
1940 is_metized && INTEGERP (XCAR (elt)));
1941
1942 }
1943 }
1944
1945 return maps;
1946 }
1947 \f
1948 Lisp_Object Qsingle_key_description, Qkey_description;
1949
1950 /* This function cannot GC. */
1951
1952 DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0,
1953 doc: /* Return a pretty description of key-sequence KEYS.
1954 Optional arg PREFIX is the sequence of keys leading up to KEYS.
1955 Control characters turn into "C-foo" sequences, meta into "M-foo",
1956 spaces are put between sequence elements, etc. */)
1957 (keys, prefix)
1958 Lisp_Object keys, prefix;
1959 {
1960 int len = 0;
1961 int i, i_byte;
1962 Lisp_Object *args;
1963 int size = XINT (Flength (keys));
1964 Lisp_Object list;
1965 Lisp_Object sep = build_string (" ");
1966 Lisp_Object key;
1967 int add_meta = 0;
1968
1969 if (!NILP (prefix))
1970 size += XINT (Flength (prefix));
1971
1972 /* This has one extra element at the end that we don't pass to Fconcat. */
1973 args = (Lisp_Object *) alloca (size * 4 * sizeof (Lisp_Object));
1974
1975 /* In effect, this computes
1976 (mapconcat 'single-key-description keys " ")
1977 but we shouldn't use mapconcat because it can do GC. */
1978
1979 next_list:
1980 if (!NILP (prefix))
1981 list = prefix, prefix = Qnil;
1982 else if (!NILP (keys))
1983 list = keys, keys = Qnil;
1984 else
1985 {
1986 if (add_meta)
1987 {
1988 args[len] = Fsingle_key_description (meta_prefix_char, Qnil);
1989 len += 2;
1990 }
1991 else if (len == 0)
1992 return empty_string;
1993 return Fconcat (len - 1, args);
1994 }
1995
1996 if (STRINGP (list))
1997 size = SCHARS (list);
1998 else if (VECTORP (list))
1999 size = XVECTOR (list)->size;
2000 else if (CONSP (list))
2001 size = XINT (Flength (list));
2002 else
2003 wrong_type_argument (Qarrayp, list);
2004
2005 i = i_byte = 0;
2006
2007 while (i < size)
2008 {
2009 if (STRINGP (list))
2010 {
2011 int c;
2012 FETCH_STRING_CHAR_ADVANCE (c, list, i, i_byte);
2013 if (SINGLE_BYTE_CHAR_P (c) && (c & 0200))
2014 c ^= 0200 | meta_modifier;
2015 XSETFASTINT (key, c);
2016 }
2017 else if (VECTORP (list))
2018 {
2019 key = AREF (list, i++);
2020 }
2021 else
2022 {
2023 key = XCAR (list);
2024 list = XCDR (list);
2025 i++;
2026 }
2027
2028 if (add_meta)
2029 {
2030 if (!INTEGERP (key)
2031 || EQ (key, meta_prefix_char)
2032 || (XINT (key) & meta_modifier))
2033 {
2034 args[len++] = Fsingle_key_description (meta_prefix_char, Qnil);
2035 args[len++] = sep;
2036 if (EQ (key, meta_prefix_char))
2037 continue;
2038 }
2039 else
2040 XSETINT (key, (XINT (key) | meta_modifier) & ~0x80);
2041 add_meta = 0;
2042 }
2043 else if (EQ (key, meta_prefix_char))
2044 {
2045 add_meta = 1;
2046 continue;
2047 }
2048 args[len++] = Fsingle_key_description (key, Qnil);
2049 args[len++] = sep;
2050 }
2051 goto next_list;
2052 }
2053
2054
2055 char *
2056 push_key_description (c, p, force_multibyte)
2057 register unsigned int c;
2058 register char *p;
2059 int force_multibyte;
2060 {
2061 unsigned c2;
2062
2063 /* Clear all the meaningless bits above the meta bit. */
2064 c &= meta_modifier | ~ - meta_modifier;
2065 c2 = c & ~(alt_modifier | ctrl_modifier | hyper_modifier
2066 | meta_modifier | shift_modifier | super_modifier);
2067
2068 if (c & alt_modifier)
2069 {
2070 *p++ = 'A';
2071 *p++ = '-';
2072 c -= alt_modifier;
2073 }
2074 if ((c & ctrl_modifier) != 0
2075 || (c2 < ' ' && c2 != 27 && c2 != '\t' && c2 != Ctl ('M')))
2076 {
2077 *p++ = 'C';
2078 *p++ = '-';
2079 c &= ~ctrl_modifier;
2080 }
2081 if (c & hyper_modifier)
2082 {
2083 *p++ = 'H';
2084 *p++ = '-';
2085 c -= hyper_modifier;
2086 }
2087 if (c & meta_modifier)
2088 {
2089 *p++ = 'M';
2090 *p++ = '-';
2091 c -= meta_modifier;
2092 }
2093 if (c & shift_modifier)
2094 {
2095 *p++ = 'S';
2096 *p++ = '-';
2097 c -= shift_modifier;
2098 }
2099 if (c & super_modifier)
2100 {
2101 *p++ = 's';
2102 *p++ = '-';
2103 c -= super_modifier;
2104 }
2105 if (c < 040)
2106 {
2107 if (c == 033)
2108 {
2109 *p++ = 'E';
2110 *p++ = 'S';
2111 *p++ = 'C';
2112 }
2113 else if (c == '\t')
2114 {
2115 *p++ = 'T';
2116 *p++ = 'A';
2117 *p++ = 'B';
2118 }
2119 else if (c == Ctl ('M'))
2120 {
2121 *p++ = 'R';
2122 *p++ = 'E';
2123 *p++ = 'T';
2124 }
2125 else
2126 {
2127 /* `C-' already added above. */
2128 if (c > 0 && c <= Ctl ('Z'))
2129 *p++ = c + 0140;
2130 else
2131 *p++ = c + 0100;
2132 }
2133 }
2134 else if (c == 0177)
2135 {
2136 *p++ = 'D';
2137 *p++ = 'E';
2138 *p++ = 'L';
2139 }
2140 else if (c == ' ')
2141 {
2142 *p++ = 'S';
2143 *p++ = 'P';
2144 *p++ = 'C';
2145 }
2146 else if (c < 128
2147 || (NILP (current_buffer->enable_multibyte_characters)
2148 && SINGLE_BYTE_CHAR_P (c)
2149 && !force_multibyte))
2150 {
2151 *p++ = c;
2152 }
2153 else
2154 {
2155 int valid_p = SINGLE_BYTE_CHAR_P (c) || char_valid_p (c, 0);
2156
2157 if (force_multibyte && valid_p)
2158 {
2159 if (SINGLE_BYTE_CHAR_P (c))
2160 c = unibyte_char_to_multibyte (c);
2161 p += CHAR_STRING (c, p);
2162 }
2163 else if (NILP (current_buffer->enable_multibyte_characters)
2164 || valid_p)
2165 {
2166 int bit_offset;
2167 *p++ = '\\';
2168 /* The biggest character code uses 19 bits. */
2169 for (bit_offset = 18; bit_offset >= 0; bit_offset -= 3)
2170 {
2171 if (c >= (1 << bit_offset))
2172 *p++ = ((c & (7 << bit_offset)) >> bit_offset) + '0';
2173 }
2174 }
2175 else
2176 p += CHAR_STRING (c, p);
2177 }
2178
2179 return p;
2180 }
2181
2182 /* This function cannot GC. */
2183
2184 DEFUN ("single-key-description", Fsingle_key_description,
2185 Ssingle_key_description, 1, 2, 0,
2186 doc: /* Return a pretty description of command character KEY.
2187 Control characters turn into C-whatever, etc.
2188 Optional argument NO-ANGLES non-nil means don't put angle brackets
2189 around function keys and event symbols. */)
2190 (key, no_angles)
2191 Lisp_Object key, no_angles;
2192 {
2193 if (CONSP (key) && lucid_event_type_list_p (key))
2194 key = Fevent_convert_list (key);
2195
2196 key = EVENT_HEAD (key);
2197
2198 if (INTEGERP (key)) /* Normal character */
2199 {
2200 unsigned int charset, c1, c2;
2201 int without_bits = XINT (key) & ~((-1) << CHARACTERBITS);
2202
2203 if (SINGLE_BYTE_CHAR_P (without_bits))
2204 charset = 0;
2205 else
2206 SPLIT_CHAR (without_bits, charset, c1, c2);
2207
2208 if (charset
2209 && CHARSET_DEFINED_P (charset)
2210 && ((c1 >= 0 && c1 < 32)
2211 || (c2 >= 0 && c2 < 32)))
2212 {
2213 /* Handle a generic character. */
2214 Lisp_Object name;
2215 name = CHARSET_TABLE_INFO (charset, CHARSET_LONG_NAME_IDX);
2216 CHECK_STRING (name);
2217 return concat2 (build_string ("Character set "), name);
2218 }
2219 else
2220 {
2221 char tem[KEY_DESCRIPTION_SIZE], *end;
2222 int nbytes, nchars;
2223 Lisp_Object string;
2224
2225 end = push_key_description (XUINT (key), tem, 1);
2226 nbytes = end - tem;
2227 nchars = multibyte_chars_in_text (tem, nbytes);
2228 if (nchars == nbytes)
2229 {
2230 *end = '\0';
2231 string = build_string (tem);
2232 }
2233 else
2234 string = make_multibyte_string (tem, nchars, nbytes);
2235 return string;
2236 }
2237 }
2238 else if (SYMBOLP (key)) /* Function key or event-symbol */
2239 {
2240 if (NILP (no_angles))
2241 {
2242 char *buffer
2243 = (char *) alloca (SBYTES (SYMBOL_NAME (key)) + 5);
2244 sprintf (buffer, "<%s>", SDATA (SYMBOL_NAME (key)));
2245 return build_string (buffer);
2246 }
2247 else
2248 return Fsymbol_name (key);
2249 }
2250 else if (STRINGP (key)) /* Buffer names in the menubar. */
2251 return Fcopy_sequence (key);
2252 else
2253 error ("KEY must be an integer, cons, symbol, or string");
2254 return Qnil;
2255 }
2256
2257 char *
2258 push_text_char_description (c, p)
2259 register unsigned int c;
2260 register char *p;
2261 {
2262 if (c >= 0200)
2263 {
2264 *p++ = 'M';
2265 *p++ = '-';
2266 c -= 0200;
2267 }
2268 if (c < 040)
2269 {
2270 *p++ = '^';
2271 *p++ = c + 64; /* 'A' - 1 */
2272 }
2273 else if (c == 0177)
2274 {
2275 *p++ = '^';
2276 *p++ = '?';
2277 }
2278 else
2279 *p++ = c;
2280 return p;
2281 }
2282
2283 /* This function cannot GC. */
2284
2285 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
2286 doc: /* Return a pretty description of file-character CHARACTER.
2287 Control characters turn into "^char", etc. This differs from
2288 `single-key-description' which turns them into "C-char".
2289 Also, this function recognizes the 2**7 bit as the Meta character,
2290 whereas `single-key-description' uses the 2**27 bit for Meta.
2291 See Info node `(elisp)Describing Characters' for examples. */)
2292 (character)
2293 Lisp_Object character;
2294 {
2295 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */
2296 unsigned char str[6];
2297 int c;
2298
2299 CHECK_NUMBER (character);
2300
2301 c = XINT (character);
2302 if (!SINGLE_BYTE_CHAR_P (c))
2303 {
2304 int len = CHAR_STRING (c, str);
2305
2306 return make_multibyte_string (str, 1, len);
2307 }
2308
2309 *push_text_char_description (c & 0377, str) = 0;
2310
2311 return build_string (str);
2312 }
2313
2314 /* Return non-zero if SEQ contains only ASCII characters, perhaps with
2315 a meta bit. */
2316 static int
2317 ascii_sequence_p (seq)
2318 Lisp_Object seq;
2319 {
2320 int i;
2321 int len = XINT (Flength (seq));
2322
2323 for (i = 0; i < len; i++)
2324 {
2325 Lisp_Object ii, elt;
2326
2327 XSETFASTINT (ii, i);
2328 elt = Faref (seq, ii);
2329
2330 if (!INTEGERP (elt)
2331 || (XUINT (elt) & ~CHAR_META) >= 0x80)
2332 return 0;
2333 }
2334
2335 return 1;
2336 }
2337
2338 \f
2339 /* where-is - finding a command in a set of keymaps. */
2340
2341 static Lisp_Object where_is_internal ();
2342 static Lisp_Object where_is_internal_1 ();
2343 static void where_is_internal_2 ();
2344
2345 /* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2346 Returns the first non-nil binding found in any of those maps. */
2347
2348 static Lisp_Object
2349 shadow_lookup (shadow, key, flag)
2350 Lisp_Object shadow, key, flag;
2351 {
2352 Lisp_Object tail, value;
2353
2354 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
2355 {
2356 value = Flookup_key (XCAR (tail), key, flag);
2357 if (!NILP (value) && !NATNUMP (value))
2358 return value;
2359 }
2360 return Qnil;
2361 }
2362
2363 static Lisp_Object Vmouse_events;
2364
2365 /* This function can GC if Flookup_key autoloads any keymaps. */
2366
2367 static Lisp_Object
2368 where_is_internal (definition, keymaps, firstonly, noindirect, no_remap)
2369 Lisp_Object definition, keymaps;
2370 Lisp_Object firstonly, noindirect, no_remap;
2371 {
2372 Lisp_Object maps = Qnil;
2373 Lisp_Object found, sequences;
2374 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2375 /* 1 means ignore all menu bindings entirely. */
2376 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2377
2378 /* If this command is remapped, then it has no key bindings
2379 of its own. */
2380 if (NILP (no_remap) && SYMBOLP (definition))
2381 {
2382 Lisp_Object tem;
2383 if (tem = Fcommand_remapping (definition), !NILP (tem))
2384 return Qnil;
2385 }
2386
2387 found = keymaps;
2388 while (CONSP (found))
2389 {
2390 maps =
2391 nconc2 (maps,
2392 Faccessible_keymaps (get_keymap (XCAR (found), 1, 0), Qnil));
2393 found = XCDR (found);
2394 }
2395
2396 GCPRO5 (definition, keymaps, maps, found, sequences);
2397 found = Qnil;
2398 sequences = Qnil;
2399
2400 for (; !NILP (maps); maps = Fcdr (maps))
2401 {
2402 /* Key sequence to reach map, and the map that it reaches */
2403 register Lisp_Object this, map, tem;
2404
2405 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
2406 [M-CHAR] sequences, check if last character of the sequence
2407 is the meta-prefix char. */
2408 Lisp_Object last;
2409 int last_is_meta;
2410
2411 this = Fcar (Fcar (maps));
2412 map = Fcdr (Fcar (maps));
2413 last = make_number (XINT (Flength (this)) - 1);
2414 last_is_meta = (XINT (last) >= 0
2415 && EQ (Faref (this, last), meta_prefix_char));
2416
2417 /* if (nomenus && !ascii_sequence_p (this)) */
2418 if (nomenus && XINT (last) >= 0
2419 && SYMBOLP (tem = Faref (this, make_number (0)))
2420 && !NILP (Fmemq (XCAR (parse_modifiers (tem)), Vmouse_events)))
2421 /* If no menu entries should be returned, skip over the
2422 keymaps bound to `menu-bar' and `tool-bar' and other
2423 non-ascii prefixes like `C-down-mouse-2'. */
2424 continue;
2425
2426 QUIT;
2427
2428 while (CONSP (map))
2429 {
2430 /* Because the code we want to run on each binding is rather
2431 large, we don't want to have two separate loop bodies for
2432 sparse keymap bindings and tables; we want to iterate one
2433 loop body over both keymap and vector bindings.
2434
2435 For this reason, if Fcar (map) is a vector, we don't
2436 advance map to the next element until i indicates that we
2437 have finished off the vector. */
2438 Lisp_Object elt, key, binding;
2439 elt = XCAR (map);
2440 map = XCDR (map);
2441
2442 sequences = Qnil;
2443
2444 QUIT;
2445
2446 /* Set key and binding to the current key and binding, and
2447 advance map and i to the next binding. */
2448 if (VECTORP (elt))
2449 {
2450 Lisp_Object sequence;
2451 int i;
2452 /* In a vector, look at each element. */
2453 for (i = 0; i < XVECTOR (elt)->size; i++)
2454 {
2455 binding = AREF (elt, i);
2456 XSETFASTINT (key, i);
2457 sequence = where_is_internal_1 (binding, key, definition,
2458 noindirect, this,
2459 last, nomenus, last_is_meta);
2460 if (!NILP (sequence))
2461 sequences = Fcons (sequence, sequences);
2462 }
2463 }
2464 else if (CHAR_TABLE_P (elt))
2465 {
2466 Lisp_Object indices[3];
2467 Lisp_Object args;
2468
2469 args = Fcons (Fcons (Fcons (definition, noindirect),
2470 Qnil), /* Result accumulator. */
2471 Fcons (Fcons (this, last),
2472 Fcons (make_number (nomenus),
2473 make_number (last_is_meta))));
2474 map_char_table (where_is_internal_2, Qnil, elt, elt, args,
2475 0, indices);
2476 sequences = XCDR (XCAR (args));
2477 }
2478 else if (CONSP (elt))
2479 {
2480 Lisp_Object sequence;
2481
2482 key = XCAR (elt);
2483 binding = XCDR (elt);
2484
2485 sequence = where_is_internal_1 (binding, key, definition,
2486 noindirect, this,
2487 last, nomenus, last_is_meta);
2488 if (!NILP (sequence))
2489 sequences = Fcons (sequence, sequences);
2490 }
2491
2492
2493 while (!NILP (sequences))
2494 {
2495 Lisp_Object sequence, remapped, function;
2496
2497 sequence = XCAR (sequences);
2498 sequences = XCDR (sequences);
2499
2500 /* If the current sequence is a command remapping with
2501 format [remap COMMAND], find the key sequences
2502 which run COMMAND, and use those sequences instead. */
2503 remapped = Qnil;
2504 if (NILP (no_remap)
2505 && VECTORP (sequence) && XVECTOR (sequence)->size == 2
2506 && EQ (AREF (sequence, 0), Qremap)
2507 && (function = AREF (sequence, 1), SYMBOLP (function)))
2508 {
2509 Lisp_Object remapped1;
2510
2511 remapped1 = where_is_internal (function, keymaps, firstonly, noindirect, Qt);
2512 if (CONSP (remapped1))
2513 {
2514 /* Verify that this key binding actually maps to the
2515 remapped command (see below). */
2516 if (!EQ (shadow_lookup (keymaps, XCAR (remapped1), Qnil), function))
2517 continue;
2518 sequence = XCAR (remapped1);
2519 remapped = XCDR (remapped1);
2520 goto record_sequence;
2521 }
2522 }
2523
2524 /* Verify that this key binding is not shadowed by another
2525 binding for the same key, before we say it exists.
2526
2527 Mechanism: look for local definition of this key and if
2528 it is defined and does not match what we found then
2529 ignore this key.
2530
2531 Either nil or number as value from Flookup_key
2532 means undefined. */
2533 if (!EQ (shadow_lookup (keymaps, sequence, Qnil), definition))
2534 continue;
2535
2536 record_sequence:
2537 /* It is a true unshadowed match. Record it, unless it's already
2538 been seen (as could happen when inheriting keymaps). */
2539 if (NILP (Fmember (sequence, found)))
2540 found = Fcons (sequence, found);
2541
2542 /* If firstonly is Qnon_ascii, then we can return the first
2543 binding we find. If firstonly is not Qnon_ascii but not
2544 nil, then we should return the first ascii-only binding
2545 we find. */
2546 if (EQ (firstonly, Qnon_ascii))
2547 RETURN_UNGCPRO (sequence);
2548 else if (!NILP (firstonly) && ascii_sequence_p (sequence))
2549 RETURN_UNGCPRO (sequence);
2550
2551 if (CONSP (remapped))
2552 {
2553 sequence = XCAR (remapped);
2554 remapped = XCDR (remapped);
2555 goto record_sequence;
2556 }
2557 }
2558 }
2559 }
2560
2561 UNGCPRO;
2562
2563 found = Fnreverse (found);
2564
2565 /* firstonly may have been t, but we may have gone all the way through
2566 the keymaps without finding an all-ASCII key sequence. So just
2567 return the best we could find. */
2568 if (!NILP (firstonly))
2569 return Fcar (found);
2570
2571 return found;
2572 }
2573
2574 DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 5, 0,
2575 doc: /* Return list of keys that invoke DEFINITION.
2576 If KEYMAP is non-nil, search only KEYMAP and the global keymap.
2577 If KEYMAP is nil, search all the currently active keymaps.
2578 If KEYMAP is a list of keymaps, search only those keymaps.
2579
2580 If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,
2581 rather than a list of all possible key sequences.
2582 If FIRSTONLY is the symbol `non-ascii', return the first binding found,
2583 no matter what it is.
2584 If FIRSTONLY has another non-nil value, prefer sequences of ASCII characters,
2585 and entirely reject menu bindings.
2586
2587 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections
2588 to other keymaps or slots. This makes it possible to search for an
2589 indirect definition itself.
2590
2591 If optional 5th arg NO-REMAP is non-nil, don't search for key sequences
2592 that invoke a command which is remapped to DEFINITION, but include the
2593 remapped command in the returned list. */)
2594 (definition, keymap, firstonly, noindirect, no_remap)
2595 Lisp_Object definition, keymap;
2596 Lisp_Object firstonly, noindirect, no_remap;
2597 {
2598 Lisp_Object sequences, keymaps;
2599 /* 1 means ignore all menu bindings entirely. */
2600 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2601 Lisp_Object result;
2602
2603 /* Find the relevant keymaps. */
2604 if (CONSP (keymap) && KEYMAPP (XCAR (keymap)))
2605 keymaps = keymap;
2606 else if (!NILP (keymap))
2607 keymaps = Fcons (keymap, Fcons (current_global_map, Qnil));
2608 else
2609 keymaps = Fcurrent_active_maps (Qnil);
2610
2611 /* Only use caching for the menubar (i.e. called with (def nil t nil).
2612 We don't really need to check `keymap'. */
2613 if (nomenus && NILP (noindirect) && NILP (keymap))
2614 {
2615 Lisp_Object *defns;
2616 int i, j, n;
2617 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2618
2619 /* Check heuristic-consistency of the cache. */
2620 if (NILP (Fequal (keymaps, where_is_cache_keymaps)))
2621 where_is_cache = Qnil;
2622
2623 if (NILP (where_is_cache))
2624 {
2625 /* We need to create the cache. */
2626 Lisp_Object args[2];
2627 where_is_cache = Fmake_hash_table (0, args);
2628 where_is_cache_keymaps = Qt;
2629
2630 /* Fill in the cache. */
2631 GCPRO5 (definition, keymaps, firstonly, noindirect, no_remap);
2632 where_is_internal (definition, keymaps, firstonly, noindirect, no_remap);
2633 UNGCPRO;
2634
2635 where_is_cache_keymaps = keymaps;
2636 }
2637
2638 /* We want to process definitions from the last to the first.
2639 Instead of consing, copy definitions to a vector and step
2640 over that vector. */
2641 sequences = Fgethash (definition, where_is_cache, Qnil);
2642 n = XINT (Flength (sequences));
2643 defns = (Lisp_Object *) alloca (n * sizeof *defns);
2644 for (i = 0; CONSP (sequences); sequences = XCDR (sequences))
2645 defns[i++] = XCAR (sequences);
2646
2647 /* Verify that the key bindings are not shadowed. Note that
2648 the following can GC. */
2649 GCPRO2 (definition, keymaps);
2650 result = Qnil;
2651 j = -1;
2652 for (i = n - 1; i >= 0; --i)
2653 if (EQ (shadow_lookup (keymaps, defns[i], Qnil), definition))
2654 {
2655 if (ascii_sequence_p (defns[i]))
2656 break;
2657 else if (j < 0)
2658 j = i;
2659 }
2660
2661 result = i >= 0 ? defns[i] : (j >= 0 ? defns[j] : Qnil);
2662 UNGCPRO;
2663 }
2664 else
2665 {
2666 /* Kill the cache so that where_is_internal_1 doesn't think
2667 we're filling it up. */
2668 where_is_cache = Qnil;
2669 result = where_is_internal (definition, keymaps, firstonly, noindirect, no_remap);
2670 }
2671
2672 return result;
2673 }
2674
2675 /* This is the function that Fwhere_is_internal calls using map_char_table.
2676 ARGS has the form
2677 (((DEFINITION . NOINDIRECT) . (KEYMAP . RESULT))
2678 .
2679 ((THIS . LAST) . (NOMENUS . LAST_IS_META)))
2680 Since map_char_table doesn't really use the return value from this function,
2681 we the result append to RESULT, the slot in ARGS.
2682
2683 This function can GC because it calls where_is_internal_1 which can
2684 GC. */
2685
2686 static void
2687 where_is_internal_2 (args, key, binding)
2688 Lisp_Object args, key, binding;
2689 {
2690 Lisp_Object definition, noindirect, this, last;
2691 Lisp_Object result, sequence;
2692 int nomenus, last_is_meta;
2693 struct gcpro gcpro1, gcpro2, gcpro3;
2694
2695 GCPRO3 (args, key, binding);
2696 result = XCDR (XCAR (args));
2697 definition = XCAR (XCAR (XCAR (args)));
2698 noindirect = XCDR (XCAR (XCAR (args)));
2699 this = XCAR (XCAR (XCDR (args)));
2700 last = XCDR (XCAR (XCDR (args)));
2701 nomenus = XFASTINT (XCAR (XCDR (XCDR (args))));
2702 last_is_meta = XFASTINT (XCDR (XCDR (XCDR (args))));
2703
2704 sequence = where_is_internal_1 (binding, key, definition, noindirect,
2705 this, last, nomenus, last_is_meta);
2706
2707 if (!NILP (sequence))
2708 XSETCDR (XCAR (args), Fcons (sequence, result));
2709
2710 UNGCPRO;
2711 }
2712
2713
2714 /* This function cannot GC. */
2715
2716 static Lisp_Object
2717 where_is_internal_1 (binding, key, definition, noindirect, this, last,
2718 nomenus, last_is_meta)
2719 Lisp_Object binding, key, definition, noindirect, this, last;
2720 int nomenus, last_is_meta;
2721 {
2722 Lisp_Object sequence;
2723
2724 /* Search through indirections unless that's not wanted. */
2725 if (NILP (noindirect))
2726 binding = get_keyelt (binding, 0);
2727
2728 /* End this iteration if this element does not match
2729 the target. */
2730
2731 if (!(!NILP (where_is_cache) /* everything "matches" during cache-fill. */
2732 || EQ (binding, definition)
2733 || (CONSP (definition) && !NILP (Fequal (binding, definition)))))
2734 /* Doesn't match. */
2735 return Qnil;
2736
2737 /* We have found a match. Construct the key sequence where we found it. */
2738 if (INTEGERP (key) && last_is_meta)
2739 {
2740 sequence = Fcopy_sequence (this);
2741 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
2742 }
2743 else
2744 sequence = append_key (this, key);
2745
2746 if (!NILP (where_is_cache))
2747 {
2748 Lisp_Object sequences = Fgethash (binding, where_is_cache, Qnil);
2749 Fputhash (binding, Fcons (sequence, sequences), where_is_cache);
2750 return Qnil;
2751 }
2752 else
2753 return sequence;
2754 }
2755 \f
2756 /* describe-bindings - summarizing all the bindings in a set of keymaps. */
2757
2758 DEFUN ("describe-buffer-bindings", Fdescribe_buffer_bindings, Sdescribe_buffer_bindings, 1, 3, 0,
2759 doc: /* Insert the list of all defined keys and their definitions.
2760 The list is inserted in the current buffer, while the bindings are
2761 looked up in BUFFER.
2762 The optional argument PREFIX, if non-nil, should be a key sequence;
2763 then we display only bindings that start with that prefix.
2764 The optional argument MENUS, if non-nil, says to mention menu bindings.
2765 \(Ordinarily these are omitted from the output.) */)
2766 (buffer, prefix, menus)
2767 Lisp_Object buffer, prefix, menus;
2768 {
2769 Lisp_Object outbuf, shadow;
2770 int nomenu = NILP (menus);
2771 register Lisp_Object start1;
2772 struct gcpro gcpro1;
2773
2774 char *alternate_heading
2775 = "\
2776 Keyboard translations:\n\n\
2777 You type Translation\n\
2778 -------- -----------\n";
2779
2780 shadow = Qnil;
2781 GCPRO1 (shadow);
2782
2783 outbuf = Fcurrent_buffer ();
2784
2785 /* Report on alternates for keys. */
2786 if (STRINGP (Vkeyboard_translate_table) && !NILP (prefix))
2787 {
2788 int c;
2789 const unsigned char *translate = SDATA (Vkeyboard_translate_table);
2790 int translate_len = SCHARS (Vkeyboard_translate_table);
2791
2792 for (c = 0; c < translate_len; c++)
2793 if (translate[c] != c)
2794 {
2795 char buf[KEY_DESCRIPTION_SIZE];
2796 char *bufend;
2797
2798 if (alternate_heading)
2799 {
2800 insert_string (alternate_heading);
2801 alternate_heading = 0;
2802 }
2803
2804 bufend = push_key_description (translate[c], buf, 1);
2805 insert (buf, bufend - buf);
2806 Findent_to (make_number (16), make_number (1));
2807 bufend = push_key_description (c, buf, 1);
2808 insert (buf, bufend - buf);
2809
2810 insert ("\n", 1);
2811 }
2812
2813 insert ("\n", 1);
2814 }
2815
2816 if (!NILP (Vkey_translation_map))
2817 describe_map_tree (Vkey_translation_map, 0, Qnil, prefix,
2818 "Key translations", nomenu, 1, 0);
2819
2820
2821 /* Print the (major mode) local map. */
2822 start1 = Qnil;
2823 if (!NILP (current_kboard->Voverriding_terminal_local_map))
2824 start1 = current_kboard->Voverriding_terminal_local_map;
2825 else if (!NILP (Voverriding_local_map))
2826 start1 = Voverriding_local_map;
2827
2828 if (!NILP (start1))
2829 {
2830 describe_map_tree (start1, 1, shadow, prefix,
2831 "\f\nOverriding Bindings", nomenu, 0, 0);
2832 shadow = Fcons (start1, shadow);
2833 }
2834 else
2835 {
2836 /* Print the minor mode and major mode keymaps. */
2837 int i, nmaps;
2838 Lisp_Object *modes, *maps;
2839
2840 /* Temporarily switch to `buffer', so that we can get that buffer's
2841 minor modes correctly. */
2842 Fset_buffer (buffer);
2843
2844 nmaps = current_minor_maps (&modes, &maps);
2845 Fset_buffer (outbuf);
2846
2847 start1 = get_local_map (BUF_PT (XBUFFER (buffer)),
2848 XBUFFER (buffer), Qkeymap);
2849 if (!NILP (start1))
2850 {
2851 describe_map_tree (start1, 1, shadow, prefix,
2852 "\f\n`keymap' Property Bindings", nomenu, 0, 0);
2853 shadow = Fcons (start1, shadow);
2854 }
2855
2856 /* Print the minor mode maps. */
2857 for (i = 0; i < nmaps; i++)
2858 {
2859 /* The title for a minor mode keymap
2860 is constructed at run time.
2861 We let describe_map_tree do the actual insertion
2862 because it takes care of other features when doing so. */
2863 char *title, *p;
2864
2865 if (!SYMBOLP (modes[i]))
2866 abort();
2867
2868 p = title = (char *) alloca (42 + SCHARS (SYMBOL_NAME (modes[i])));
2869 *p++ = '\f';
2870 *p++ = '\n';
2871 *p++ = '`';
2872 bcopy (SDATA (SYMBOL_NAME (modes[i])), p,
2873 SCHARS (SYMBOL_NAME (modes[i])));
2874 p += SCHARS (SYMBOL_NAME (modes[i]));
2875 *p++ = '\'';
2876 bcopy (" Minor Mode Bindings", p, sizeof (" Minor Mode Bindings") - 1);
2877 p += sizeof (" Minor Mode Bindings") - 1;
2878 *p = 0;
2879
2880 describe_map_tree (maps[i], 1, shadow, prefix, title, nomenu, 0, 0);
2881 shadow = Fcons (maps[i], shadow);
2882 }
2883
2884 start1 = get_local_map (BUF_PT (XBUFFER (buffer)),
2885 XBUFFER (buffer), Qlocal_map);
2886 if (!NILP (start1))
2887 {
2888 if (EQ (start1, XBUFFER (buffer)->keymap))
2889 describe_map_tree (start1, 1, shadow, prefix,
2890 "\f\nMajor Mode Bindings", nomenu, 0, 0);
2891 else
2892 describe_map_tree (start1, 1, shadow, prefix,
2893 "\f\n`local-map' Property Bindings",
2894 nomenu, 0, 0);
2895
2896 shadow = Fcons (start1, shadow);
2897 }
2898 }
2899
2900 describe_map_tree (current_global_map, 1, shadow, prefix,
2901 "\f\nGlobal Bindings", nomenu, 0, 1);
2902
2903 /* Print the function-key-map translations under this prefix. */
2904 if (!NILP (Vfunction_key_map))
2905 describe_map_tree (Vfunction_key_map, 0, Qnil, prefix,
2906 "\f\nFunction key map translations", nomenu, 1, 0);
2907
2908 UNGCPRO;
2909 return Qnil;
2910 }
2911
2912 /* Insert a description of the key bindings in STARTMAP,
2913 followed by those of all maps reachable through STARTMAP.
2914 If PARTIAL is nonzero, omit certain "uninteresting" commands
2915 (such as `undefined').
2916 If SHADOW is non-nil, it is a list of maps;
2917 don't mention keys which would be shadowed by any of them.
2918 PREFIX, if non-nil, says mention only keys that start with PREFIX.
2919 TITLE, if not 0, is a string to insert at the beginning.
2920 TITLE should not end with a colon or a newline; we supply that.
2921 If NOMENU is not 0, then omit menu-bar commands.
2922
2923 If TRANSL is nonzero, the definitions are actually key translations
2924 so print strings and vectors differently.
2925
2926 If ALWAYS_TITLE is nonzero, print the title even if there are no maps
2927 to look through. */
2928
2929 void
2930 describe_map_tree (startmap, partial, shadow, prefix, title, nomenu, transl,
2931 always_title)
2932 Lisp_Object startmap, shadow, prefix;
2933 int partial;
2934 char *title;
2935 int nomenu;
2936 int transl;
2937 int always_title;
2938 {
2939 Lisp_Object maps, orig_maps, seen, sub_shadows;
2940 struct gcpro gcpro1, gcpro2, gcpro3;
2941 int something = 0;
2942 char *key_heading
2943 = "\
2944 key binding\n\
2945 --- -------\n";
2946
2947 orig_maps = maps = Faccessible_keymaps (startmap, prefix);
2948 seen = Qnil;
2949 sub_shadows = Qnil;
2950 GCPRO3 (maps, seen, sub_shadows);
2951
2952 if (nomenu)
2953 {
2954 Lisp_Object list;
2955
2956 /* Delete from MAPS each element that is for the menu bar. */
2957 for (list = maps; !NILP (list); list = XCDR (list))
2958 {
2959 Lisp_Object elt, prefix, tem;
2960
2961 elt = Fcar (list);
2962 prefix = Fcar (elt);
2963 if (XVECTOR (prefix)->size >= 1)
2964 {
2965 tem = Faref (prefix, make_number (0));
2966 if (EQ (tem, Qmenu_bar))
2967 maps = Fdelq (elt, maps);
2968 }
2969 }
2970 }
2971
2972 if (!NILP (maps) || always_title)
2973 {
2974 if (title)
2975 {
2976 insert_string (title);
2977 if (!NILP (prefix))
2978 {
2979 insert_string (" Starting With ");
2980 insert1 (Fkey_description (prefix, Qnil));
2981 }
2982 insert_string (":\n");
2983 }
2984 insert_string (key_heading);
2985 something = 1;
2986 }
2987
2988 for (; !NILP (maps); maps = Fcdr (maps))
2989 {
2990 register Lisp_Object elt, prefix, tail;
2991
2992 elt = Fcar (maps);
2993 prefix = Fcar (elt);
2994
2995 sub_shadows = Qnil;
2996
2997 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
2998 {
2999 Lisp_Object shmap;
3000
3001 shmap = XCAR (tail);
3002
3003 /* If the sequence by which we reach this keymap is zero-length,
3004 then the shadow map for this keymap is just SHADOW. */
3005 if ((STRINGP (prefix) && SCHARS (prefix) == 0)
3006 || (VECTORP (prefix) && XVECTOR (prefix)->size == 0))
3007 ;
3008 /* If the sequence by which we reach this keymap actually has
3009 some elements, then the sequence's definition in SHADOW is
3010 what we should use. */
3011 else
3012 {
3013 shmap = Flookup_key (shmap, Fcar (elt), Qt);
3014 if (INTEGERP (shmap))
3015 shmap = Qnil;
3016 }
3017
3018 /* If shmap is not nil and not a keymap,
3019 it completely shadows this map, so don't
3020 describe this map at all. */
3021 if (!NILP (shmap) && !KEYMAPP (shmap))
3022 goto skip;
3023
3024 if (!NILP (shmap))
3025 sub_shadows = Fcons (shmap, sub_shadows);
3026 }
3027
3028 /* Maps we have already listed in this loop shadow this map. */
3029 for (tail = orig_maps; !EQ (tail, maps); tail = XCDR (tail))
3030 {
3031 Lisp_Object tem;
3032 tem = Fequal (Fcar (XCAR (tail)), prefix);
3033 if (!NILP (tem))
3034 sub_shadows = Fcons (XCDR (XCAR (tail)), sub_shadows);
3035 }
3036
3037 describe_map (Fcdr (elt), prefix,
3038 transl ? describe_translation : describe_command,
3039 partial, sub_shadows, &seen, nomenu);
3040
3041 skip: ;
3042 }
3043
3044 if (something)
3045 insert_string ("\n");
3046
3047 UNGCPRO;
3048 }
3049
3050 static int previous_description_column;
3051
3052 static void
3053 describe_command (definition, args)
3054 Lisp_Object definition, args;
3055 {
3056 register Lisp_Object tem1;
3057 int column = (int) current_column (); /* iftc */
3058 int description_column;
3059
3060 /* If column 16 is no good, go to col 32;
3061 but don't push beyond that--go to next line instead. */
3062 if (column > 30)
3063 {
3064 insert_char ('\n');
3065 description_column = 32;
3066 }
3067 else if (column > 14 || (column > 10 && previous_description_column == 32))
3068 description_column = 32;
3069 else
3070 description_column = 16;
3071
3072 Findent_to (make_number (description_column), make_number (1));
3073 previous_description_column = description_column;
3074
3075 if (SYMBOLP (definition))
3076 {
3077 tem1 = SYMBOL_NAME (definition);
3078 insert1 (tem1);
3079 insert_string ("\n");
3080 }
3081 else if (STRINGP (definition) || VECTORP (definition))
3082 insert_string ("Keyboard Macro\n");
3083 else if (KEYMAPP (definition))
3084 insert_string ("Prefix Command\n");
3085 else
3086 insert_string ("??\n");
3087 }
3088
3089 static void
3090 describe_translation (definition, args)
3091 Lisp_Object definition, args;
3092 {
3093 register Lisp_Object tem1;
3094
3095 Findent_to (make_number (16), make_number (1));
3096
3097 if (SYMBOLP (definition))
3098 {
3099 tem1 = SYMBOL_NAME (definition);
3100 insert1 (tem1);
3101 insert_string ("\n");
3102 }
3103 else if (STRINGP (definition) || VECTORP (definition))
3104 {
3105 insert1 (Fkey_description (definition, Qnil));
3106 insert_string ("\n");
3107 }
3108 else if (KEYMAPP (definition))
3109 insert_string ("Prefix Command\n");
3110 else
3111 insert_string ("??\n");
3112 }
3113
3114 /* Describe the contents of map MAP, assuming that this map itself is
3115 reached by the sequence of prefix keys PREFIX (a string or vector).
3116 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
3117
3118 static void
3119 describe_map (map, prefix, elt_describer, partial, shadow, seen, nomenu)
3120 register Lisp_Object map;
3121 Lisp_Object prefix;
3122 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object));
3123 int partial;
3124 Lisp_Object shadow;
3125 Lisp_Object *seen;
3126 int nomenu;
3127 {
3128 Lisp_Object tail, definition, event;
3129 Lisp_Object tem;
3130 Lisp_Object suppress;
3131 Lisp_Object kludge;
3132 int first = 1;
3133 struct gcpro gcpro1, gcpro2, gcpro3;
3134
3135 suppress = Qnil;
3136
3137 if (partial)
3138 suppress = intern ("suppress-keymap");
3139
3140 /* This vector gets used to present single keys to Flookup_key. Since
3141 that is done once per keymap element, we don't want to cons up a
3142 fresh vector every time. */
3143 kludge = Fmake_vector (make_number (1), Qnil);
3144 definition = Qnil;
3145
3146 GCPRO3 (prefix, definition, kludge);
3147
3148 for (tail = map; CONSP (tail); tail = XCDR (tail))
3149 {
3150 QUIT;
3151
3152 if (VECTORP (XCAR (tail))
3153 || CHAR_TABLE_P (XCAR (tail)))
3154 describe_vector (XCAR (tail),
3155 prefix, Qnil, elt_describer, partial, shadow, map,
3156 (int *)0, 0, 1);
3157 else if (CONSP (XCAR (tail)))
3158 {
3159 event = XCAR (XCAR (tail));
3160
3161 /* Ignore bindings whose "prefix" are not really valid events.
3162 (We get these in the frames and buffers menu.) */
3163 if (!(SYMBOLP (event) || INTEGERP (event)))
3164 continue;
3165
3166 if (nomenu && EQ (event, Qmenu_bar))
3167 continue;
3168
3169 definition = get_keyelt (XCDR (XCAR (tail)), 0);
3170
3171 /* Don't show undefined commands or suppressed commands. */
3172 if (NILP (definition)) continue;
3173 if (SYMBOLP (definition) && partial)
3174 {
3175 tem = Fget (definition, suppress);
3176 if (!NILP (tem))
3177 continue;
3178 }
3179
3180 /* Don't show a command that isn't really visible
3181 because a local definition of the same key shadows it. */
3182
3183 ASET (kludge, 0, event);
3184 if (!NILP (shadow))
3185 {
3186 tem = shadow_lookup (shadow, kludge, Qt);
3187 if (!NILP (tem)) continue;
3188 }
3189
3190 tem = Flookup_key (map, kludge, Qt);
3191 if (!EQ (tem, definition)) continue;
3192
3193 if (first)
3194 {
3195 previous_description_column = 0;
3196 insert ("\n", 1);
3197 first = 0;
3198 }
3199
3200 /* THIS gets the string to describe the character EVENT. */
3201 insert1 (Fkey_description (kludge, prefix));
3202
3203 /* Print a description of the definition of this character.
3204 elt_describer will take care of spacing out far enough
3205 for alignment purposes. */
3206 (*elt_describer) (definition, Qnil);
3207 }
3208 else if (EQ (XCAR (tail), Qkeymap))
3209 {
3210 /* The same keymap might be in the structure twice, if we're
3211 using an inherited keymap. So skip anything we've already
3212 encountered. */
3213 tem = Fassq (tail, *seen);
3214 if (CONSP (tem) && !NILP (Fequal (XCAR (tem), prefix)))
3215 break;
3216 *seen = Fcons (Fcons (tail, prefix), *seen);
3217 }
3218 }
3219
3220 UNGCPRO;
3221 }
3222
3223 static void
3224 describe_vector_princ (elt, fun)
3225 Lisp_Object elt, fun;
3226 {
3227 Findent_to (make_number (16), make_number (1));
3228 call1 (fun, elt);
3229 Fterpri (Qnil);
3230 }
3231
3232 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0,
3233 doc: /* Insert a description of contents of VECTOR.
3234 This is text showing the elements of vector matched against indices.
3235 DESCRIBER is the output function used; nil means use `princ'. */)
3236 (vector, describer)
3237 Lisp_Object vector, describer;
3238 {
3239 int count = SPECPDL_INDEX ();
3240 if (NILP (describer))
3241 describer = intern ("princ");
3242 specbind (Qstandard_output, Fcurrent_buffer ());
3243 CHECK_VECTOR_OR_CHAR_TABLE (vector);
3244 describe_vector (vector, Qnil, describer, describe_vector_princ, 0,
3245 Qnil, Qnil, (int *)0, 0, 0);
3246
3247 return unbind_to (count, Qnil);
3248 }
3249
3250 /* Insert in the current buffer a description of the contents of VECTOR.
3251 We call ELT_DESCRIBER to insert the description of one value found
3252 in VECTOR.
3253
3254 ELT_PREFIX describes what "comes before" the keys or indices defined
3255 by this vector. This is a human-readable string whose size
3256 is not necessarily related to the situation.
3257
3258 If the vector is in a keymap, ELT_PREFIX is a prefix key which
3259 leads to this keymap.
3260
3261 If the vector is a chartable, ELT_PREFIX is the vector
3262 of bytes that lead to the character set or portion of a character
3263 set described by this chartable.
3264
3265 If PARTIAL is nonzero, it means do not mention suppressed commands
3266 (that assumes the vector is in a keymap).
3267
3268 SHADOW is a list of keymaps that shadow this map.
3269 If it is non-nil, then we look up the key in those maps
3270 and we don't mention it now if it is defined by any of them.
3271
3272 ENTIRE_MAP is the keymap in which this vector appears.
3273 If the definition in effect in the whole map does not match
3274 the one in this vector, we ignore this one.
3275
3276 When describing a sub-char-table, INDICES is a list of
3277 indices at higher levels in this char-table,
3278 and CHAR_TABLE_DEPTH says how many levels down we have gone.
3279
3280 KEYMAP_P is 1 if vector is known to be a keymap, so map ESC to M-.
3281
3282 ARGS is simply passed as the second argument to ELT_DESCRIBER. */
3283
3284 static void
3285 describe_vector (vector, prefix, args, elt_describer,
3286 partial, shadow, entire_map,
3287 indices, char_table_depth, keymap_p)
3288 register Lisp_Object vector;
3289 Lisp_Object prefix, args;
3290 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object));
3291 int partial;
3292 Lisp_Object shadow;
3293 Lisp_Object entire_map;
3294 int *indices;
3295 int char_table_depth;
3296 int keymap_p;
3297 {
3298 Lisp_Object definition;
3299 Lisp_Object tem2;
3300 Lisp_Object elt_prefix = Qnil;
3301 register int i;
3302 Lisp_Object suppress;
3303 Lisp_Object kludge;
3304 int first = 1;
3305 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3306 /* Range of elements to be handled. */
3307 int from, to;
3308 /* A flag to tell if a leaf in this level of char-table is not a
3309 generic character (i.e. a complete multibyte character). */
3310 int complete_char;
3311 int character;
3312 int starting_i;
3313
3314 suppress = Qnil;
3315
3316 if (indices == 0)
3317 indices = (int *) alloca (3 * sizeof (int));
3318
3319 definition = Qnil;
3320
3321 if (!keymap_p)
3322 {
3323 /* Call Fkey_description first, to avoid GC bug for the other string. */
3324 if (!NILP (prefix) && XFASTINT (Flength (prefix)) > 0)
3325 {
3326 Lisp_Object tem;
3327 tem = Fkey_description (prefix, Qnil);
3328 elt_prefix = concat2 (tem, build_string (" "));
3329 }
3330 prefix = Qnil;
3331 }
3332
3333 /* This vector gets used to present single keys to Flookup_key. Since
3334 that is done once per vector element, we don't want to cons up a
3335 fresh vector every time. */
3336 kludge = Fmake_vector (make_number (1), Qnil);
3337 GCPRO4 (elt_prefix, prefix, definition, kludge);
3338
3339 if (partial)
3340 suppress = intern ("suppress-keymap");
3341
3342 if (CHAR_TABLE_P (vector))
3343 {
3344 if (char_table_depth == 0)
3345 {
3346 /* VECTOR is a top level char-table. */
3347 complete_char = 1;
3348 from = 0;
3349 to = CHAR_TABLE_ORDINARY_SLOTS;
3350 }
3351 else
3352 {
3353 /* VECTOR is a sub char-table. */
3354 if (char_table_depth >= 3)
3355 /* A char-table is never that deep. */
3356 error ("Too deep char table");
3357
3358 complete_char
3359 = (CHARSET_VALID_P (indices[0])
3360 && ((CHARSET_DIMENSION (indices[0]) == 1
3361 && char_table_depth == 1)
3362 || char_table_depth == 2));
3363
3364 /* Meaningful elements are from 32th to 127th. */
3365 from = 32;
3366 to = SUB_CHAR_TABLE_ORDINARY_SLOTS;
3367 }
3368 }
3369 else
3370 {
3371 /* This does the right thing for ordinary vectors. */
3372
3373 complete_char = 1;
3374 from = 0;
3375 to = XVECTOR (vector)->size;
3376 }
3377
3378 for (i = from; i < to; i++)
3379 {
3380 QUIT;
3381
3382 if (CHAR_TABLE_P (vector))
3383 {
3384 if (char_table_depth == 0 && i >= CHAR_TABLE_SINGLE_BYTE_SLOTS)
3385 complete_char = 0;
3386
3387 if (i >= CHAR_TABLE_SINGLE_BYTE_SLOTS
3388 && !CHARSET_DEFINED_P (i - 128))
3389 continue;
3390
3391 definition
3392 = get_keyelt (XCHAR_TABLE (vector)->contents[i], 0);
3393 }
3394 else
3395 definition = get_keyelt (AREF (vector, i), 0);
3396
3397 if (NILP (definition)) continue;
3398
3399 /* Don't mention suppressed commands. */
3400 if (SYMBOLP (definition) && partial)
3401 {
3402 Lisp_Object tem;
3403
3404 tem = Fget (definition, suppress);
3405
3406 if (!NILP (tem)) continue;
3407 }
3408
3409 /* Set CHARACTER to the character this entry describes, if any.
3410 Also update *INDICES. */
3411 if (CHAR_TABLE_P (vector))
3412 {
3413 indices[char_table_depth] = i;
3414
3415 if (char_table_depth == 0)
3416 {
3417 character = i;
3418 indices[0] = i - 128;
3419 }
3420 else if (complete_char)
3421 {
3422 character = MAKE_CHAR (indices[0], indices[1], indices[2]);
3423 }
3424 else
3425 character = 0;
3426 }
3427 else
3428 character = i;
3429
3430 ASET (kludge, 0, make_number (character));
3431
3432 /* If this binding is shadowed by some other map, ignore it. */
3433 if (!NILP (shadow) && complete_char)
3434 {
3435 Lisp_Object tem;
3436
3437 tem = shadow_lookup (shadow, kludge, Qt);
3438
3439 if (!NILP (tem)) continue;
3440 }
3441
3442 /* Ignore this definition if it is shadowed by an earlier
3443 one in the same keymap. */
3444 if (!NILP (entire_map) && complete_char)
3445 {
3446 Lisp_Object tem;
3447
3448 tem = Flookup_key (entire_map, kludge, Qt);
3449
3450 if (!EQ (tem, definition))
3451 continue;
3452 }
3453
3454 if (first)
3455 {
3456 if (char_table_depth == 0)
3457 insert ("\n", 1);
3458 first = 0;
3459 }
3460
3461 /* For a sub char-table, show the depth by indentation.
3462 CHAR_TABLE_DEPTH can be greater than 0 only for a char-table. */
3463 if (char_table_depth > 0)
3464 insert (" ", char_table_depth * 2); /* depth is 1 or 2. */
3465
3466 /* Output the prefix that applies to every entry in this map. */
3467 if (!NILP (elt_prefix))
3468 insert1 (elt_prefix);
3469
3470 /* Insert or describe the character this slot is for,
3471 or a description of what it is for. */
3472 if (SUB_CHAR_TABLE_P (vector))
3473 {
3474 if (complete_char)
3475 insert_char (character);
3476 else
3477 {
3478 /* We need an octal representation for this block of
3479 characters. */
3480 char work[16];
3481 sprintf (work, "(row %d)", i);
3482 insert (work, strlen (work));
3483 }
3484 }
3485 else if (CHAR_TABLE_P (vector))
3486 {
3487 if (complete_char)
3488 insert1 (Fkey_description (kludge, prefix));
3489 else
3490 {
3491 /* Print the information for this character set. */
3492 insert_string ("<");
3493 tem2 = CHARSET_TABLE_INFO (i - 128, CHARSET_SHORT_NAME_IDX);
3494 if (STRINGP (tem2))
3495 insert_from_string (tem2, 0, 0, SCHARS (tem2),
3496 SBYTES (tem2), 0);
3497 else
3498 insert ("?", 1);
3499 insert (">", 1);
3500 }
3501 }
3502 else
3503 {
3504 insert1 (Fkey_description (kludge, prefix));
3505 }
3506
3507 /* If we find a sub char-table within a char-table,
3508 scan it recursively; it defines the details for
3509 a character set or a portion of a character set. */
3510 if (CHAR_TABLE_P (vector) && SUB_CHAR_TABLE_P (definition))
3511 {
3512 insert ("\n", 1);
3513 describe_vector (definition, prefix, args, elt_describer,
3514 partial, shadow, entire_map,
3515 indices, char_table_depth + 1, keymap_p);
3516 continue;
3517 }
3518
3519 starting_i = i;
3520
3521 /* Find all consecutive characters or rows that have the same
3522 definition. But, for elements of a top level char table, if
3523 they are for charsets, we had better describe one by one even
3524 if they have the same definition. */
3525 if (CHAR_TABLE_P (vector))
3526 {
3527 int limit = to;
3528
3529 if (char_table_depth == 0)
3530 limit = CHAR_TABLE_SINGLE_BYTE_SLOTS;
3531
3532 while (i + 1 < limit
3533 && (tem2 = get_keyelt (XCHAR_TABLE (vector)->contents[i + 1], 0),
3534 !NILP (tem2))
3535 && !NILP (Fequal (tem2, definition)))
3536 i++;
3537 }
3538 else
3539 while (i + 1 < to
3540 && (tem2 = get_keyelt (AREF (vector, i + 1), 0),
3541 !NILP (tem2))
3542 && !NILP (Fequal (tem2, definition)))
3543 i++;
3544
3545
3546 /* If we have a range of more than one character,
3547 print where the range reaches to. */
3548
3549 if (i != starting_i)
3550 {
3551 insert (" .. ", 4);
3552
3553 ASET (kludge, 0, make_number (i));
3554
3555 if (!NILP (elt_prefix))
3556 insert1 (elt_prefix);
3557
3558 if (CHAR_TABLE_P (vector))
3559 {
3560 if (char_table_depth == 0)
3561 {
3562 insert1 (Fkey_description (kludge, prefix));
3563 }
3564 else if (complete_char)
3565 {
3566 indices[char_table_depth] = i;
3567 character = MAKE_CHAR (indices[0], indices[1], indices[2]);
3568 insert_char (character);
3569 }
3570 else
3571 {
3572 /* We need an octal representation for this block of
3573 characters. */
3574 char work[16];
3575 sprintf (work, "(row %d)", i);
3576 insert (work, strlen (work));
3577 }
3578 }
3579 else
3580 {
3581 insert1 (Fkey_description (kludge, prefix));
3582 }
3583 }
3584
3585 /* Print a description of the definition of this character.
3586 elt_describer will take care of spacing out far enough
3587 for alignment purposes. */
3588 (*elt_describer) (definition, args);
3589 }
3590
3591 /* For (sub) char-table, print `defalt' slot at last. */
3592 if (CHAR_TABLE_P (vector) && !NILP (XCHAR_TABLE (vector)->defalt))
3593 {
3594 insert (" ", char_table_depth * 2);
3595 insert_string ("<<default>>");
3596 (*elt_describer) (XCHAR_TABLE (vector)->defalt, args);
3597 }
3598
3599 UNGCPRO;
3600 }
3601 \f
3602 /* Apropos - finding all symbols whose names match a regexp. */
3603 static Lisp_Object apropos_predicate;
3604 static Lisp_Object apropos_accumulate;
3605
3606 static void
3607 apropos_accum (symbol, string)
3608 Lisp_Object symbol, string;
3609 {
3610 register Lisp_Object tem;
3611
3612 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
3613 if (!NILP (tem) && !NILP (apropos_predicate))
3614 tem = call1 (apropos_predicate, symbol);
3615 if (!NILP (tem))
3616 apropos_accumulate = Fcons (symbol, apropos_accumulate);
3617 }
3618
3619 DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
3620 doc: /* Show all symbols whose names contain match for REGEXP.
3621 If optional 2nd arg PREDICATE is non-nil, (funcall PREDICATE SYMBOL) is done
3622 for each symbol and a symbol is mentioned only if that returns non-nil.
3623 Return list of symbols found. */)
3624 (regexp, predicate)
3625 Lisp_Object regexp, predicate;
3626 {
3627 Lisp_Object tem;
3628 CHECK_STRING (regexp);
3629 apropos_predicate = predicate;
3630 apropos_accumulate = Qnil;
3631 map_obarray (Vobarray, apropos_accum, regexp);
3632 tem = Fsort (apropos_accumulate, Qstring_lessp);
3633 apropos_accumulate = Qnil;
3634 apropos_predicate = Qnil;
3635 return tem;
3636 }
3637 \f
3638 void
3639 syms_of_keymap ()
3640 {
3641 Qkeymap = intern ("keymap");
3642 staticpro (&Qkeymap);
3643 staticpro (&apropos_predicate);
3644 staticpro (&apropos_accumulate);
3645 apropos_predicate = Qnil;
3646 apropos_accumulate = Qnil;
3647
3648 /* Now we are ready to set up this property, so we can
3649 create char tables. */
3650 Fput (Qkeymap, Qchar_table_extra_slots, make_number (0));
3651
3652 /* Initialize the keymaps standardly used.
3653 Each one is the value of a Lisp variable, and is also
3654 pointed to by a C variable */
3655
3656 global_map = Fmake_keymap (Qnil);
3657 Fset (intern ("global-map"), global_map);
3658
3659 current_global_map = global_map;
3660 staticpro (&global_map);
3661 staticpro (&current_global_map);
3662
3663 meta_map = Fmake_keymap (Qnil);
3664 Fset (intern ("esc-map"), meta_map);
3665 Ffset (intern ("ESC-prefix"), meta_map);
3666
3667 control_x_map = Fmake_keymap (Qnil);
3668 Fset (intern ("ctl-x-map"), control_x_map);
3669 Ffset (intern ("Control-X-prefix"), control_x_map);
3670
3671 exclude_keys
3672 = Fcons (Fcons (build_string ("DEL"), build_string ("\\d")),
3673 Fcons (Fcons (build_string ("TAB"), build_string ("\\t")),
3674 Fcons (Fcons (build_string ("RET"), build_string ("\\r")),
3675 Fcons (Fcons (build_string ("ESC"), build_string ("\\e")),
3676 Fcons (Fcons (build_string ("SPC"), build_string (" ")),
3677 Qnil)))));
3678 staticpro (&exclude_keys);
3679
3680 DEFVAR_LISP ("define-key-rebound-commands", &Vdefine_key_rebound_commands,
3681 doc: /* List of commands given new key bindings recently.
3682 This is used for internal purposes during Emacs startup;
3683 don't alter it yourself. */);
3684 Vdefine_key_rebound_commands = Qt;
3685
3686 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map,
3687 doc: /* Default keymap to use when reading from the minibuffer. */);
3688 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
3689
3690 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
3691 doc: /* Local keymap for the minibuffer when spaces are not allowed. */);
3692 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
3693 Fset_keymap_parent (Vminibuffer_local_ns_map, Vminibuffer_local_map);
3694
3695 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
3696 doc: /* Local keymap for minibuffer input with completion. */);
3697 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
3698 Fset_keymap_parent (Vminibuffer_local_completion_map, Vminibuffer_local_map);
3699
3700 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map,
3701 doc: /* Local keymap for minibuffer input with completion, for exact match. */);
3702 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
3703 Fset_keymap_parent (Vminibuffer_local_must_match_map,
3704 Vminibuffer_local_completion_map);
3705
3706 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
3707 doc: /* Alist of keymaps to use for minor modes.
3708 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read
3709 key sequences and look up bindings iff VARIABLE's value is non-nil.
3710 If two active keymaps bind the same key, the keymap appearing earlier
3711 in the list takes precedence. */);
3712 Vminor_mode_map_alist = Qnil;
3713
3714 DEFVAR_LISP ("minor-mode-overriding-map-alist", &Vminor_mode_overriding_map_alist,
3715 doc: /* Alist of keymaps to use for minor modes, in current major mode.
3716 This variable is an alist just like `minor-mode-map-alist', and it is
3717 used the same way (and before `minor-mode-map-alist'); however,
3718 it is provided for major modes to bind locally. */);
3719 Vminor_mode_overriding_map_alist = Qnil;
3720
3721 DEFVAR_LISP ("emulation-mode-map-alists", &Vemulation_mode_map_alists,
3722 doc: /* List of keymap alists to use for emulations modes.
3723 It is intended for modes or packages using multiple minor-mode keymaps.
3724 Each element is a keymap alist just like `minor-mode-map-alist', or a
3725 symbol with a variable binding which is a keymap alist, and it is used
3726 the same way. The "active" keymaps in each alist are used before
3727 `minor-mode-map-alist' and `minor-mode-overriding-map-alist'. */);
3728 Vemulation_mode_map_alists = Qnil;
3729
3730
3731 DEFVAR_LISP ("function-key-map", &Vfunction_key_map,
3732 doc: /* Keymap mapping ASCII function key sequences onto their preferred forms.
3733 This allows Emacs to recognize function keys sent from ASCII
3734 terminals at any point in a key sequence.
3735
3736 The `read-key-sequence' function replaces any subsequence bound by
3737 `function-key-map' with its binding. More precisely, when the active
3738 keymaps have no binding for the current key sequence but
3739 `function-key-map' binds a suffix of the sequence to a vector or string,
3740 `read-key-sequence' replaces the matching suffix with its binding, and
3741 continues with the new sequence.
3742
3743 The events that come from bindings in `function-key-map' are not
3744 themselves looked up in `function-key-map'.
3745
3746 For example, suppose `function-key-map' binds `ESC O P' to [f1].
3747 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing
3748 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix
3749 key, typing `ESC O P x' would return [f1 x]. */);
3750 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
3751
3752 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
3753 doc: /* Keymap of key translations that can override keymaps.
3754 This keymap works like `function-key-map', but comes after that,
3755 and applies even for keys that have ordinary bindings. */);
3756 Vkey_translation_map = Qnil;
3757
3758 staticpro (&Vmouse_events);
3759 Vmouse_events = Fcons (intern ("menu-bar"),
3760 Fcons (intern ("tool-bar"),
3761 Fcons (intern ("header-line"),
3762 Fcons (intern ("mode-line"),
3763 Fcons (intern ("mouse-1"),
3764 Fcons (intern ("mouse-2"),
3765 Fcons (intern ("mouse-3"),
3766 Fcons (intern ("mouse-4"),
3767 Fcons (intern ("mouse-5"),
3768 Qnil)))))))));
3769
3770
3771 Qsingle_key_description = intern ("single-key-description");
3772 staticpro (&Qsingle_key_description);
3773
3774 Qkey_description = intern ("key-description");
3775 staticpro (&Qkey_description);
3776
3777 Qkeymapp = intern ("keymapp");
3778 staticpro (&Qkeymapp);
3779
3780 Qnon_ascii = intern ("non-ascii");
3781 staticpro (&Qnon_ascii);
3782
3783 Qmenu_item = intern ("menu-item");
3784 staticpro (&Qmenu_item);
3785
3786 Qremap = intern ("remap");
3787 staticpro (&Qremap);
3788
3789 command_remapping_vector = Fmake_vector (make_number (2), Qremap);
3790 staticpro (&command_remapping_vector);
3791
3792 where_is_cache_keymaps = Qt;
3793 where_is_cache = Qnil;
3794 staticpro (&where_is_cache);
3795 staticpro (&where_is_cache_keymaps);
3796
3797 defsubr (&Skeymapp);
3798 defsubr (&Skeymap_parent);
3799 defsubr (&Skeymap_prompt);
3800 defsubr (&Sset_keymap_parent);
3801 defsubr (&Smake_keymap);
3802 defsubr (&Smake_sparse_keymap);
3803 defsubr (&Smap_keymap);
3804 defsubr (&Scopy_keymap);
3805 defsubr (&Scommand_remapping);
3806 defsubr (&Skey_binding);
3807 defsubr (&Slocal_key_binding);
3808 defsubr (&Sglobal_key_binding);
3809 defsubr (&Sminor_mode_key_binding);
3810 defsubr (&Sdefine_key);
3811 defsubr (&Slookup_key);
3812 defsubr (&Sdefine_prefix_command);
3813 defsubr (&Suse_global_map);
3814 defsubr (&Suse_local_map);
3815 defsubr (&Scurrent_local_map);
3816 defsubr (&Scurrent_global_map);
3817 defsubr (&Scurrent_minor_mode_maps);
3818 defsubr (&Scurrent_active_maps);
3819 defsubr (&Saccessible_keymaps);
3820 defsubr (&Skey_description);
3821 defsubr (&Sdescribe_vector);
3822 defsubr (&Ssingle_key_description);
3823 defsubr (&Stext_char_description);
3824 defsubr (&Swhere_is_internal);
3825 defsubr (&Sdescribe_buffer_bindings);
3826 defsubr (&Sapropos_internal);
3827 }
3828
3829 void
3830 keys_of_keymap ()
3831 {
3832 initial_define_key (global_map, 033, "ESC-prefix");
3833 initial_define_key (global_map, Ctl('X'), "Control-X-prefix");
3834 }
3835
3836 /* arch-tag: 6dd15c26-7cf1-41c4-b904-f42f7ddda463
3837 (do not change this comment) */