(calendar-location-name, calendar-latitude)
[emacs.git] / src / keymap.c
blobe91df88aaff806bb96f68d5f9abc57c50f29fdea
1 /* Manipulation of keymaps
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
24 #include <config.h>
25 #include <stdio.h>
26 #if HAVE_ALLOCA_H
27 # include <alloca.h>
28 #endif
29 #include "lisp.h"
30 #include "commands.h"
31 #include "buffer.h"
32 #include "character.h"
33 #include "charset.h"
34 #include "keyboard.h"
35 #include "frame.h"
36 #include "termhooks.h"
37 #include "blockinput.h"
38 #include "puresize.h"
39 #include "intervals.h"
40 #include "keymap.h"
41 #include "window.h"
43 /* The number of elements in keymap vectors. */
44 #define DENSE_TABLE_SIZE (0200)
46 /* Actually allocate storage for these variables */
48 Lisp_Object current_global_map; /* Current global keymap */
50 Lisp_Object global_map; /* default global key bindings */
52 Lisp_Object meta_map; /* The keymap used for globally bound
53 ESC-prefixed default commands */
55 Lisp_Object control_x_map; /* The keymap used for globally bound
56 C-x-prefixed default commands */
58 /* was MinibufLocalMap */
59 Lisp_Object Vminibuffer_local_map;
60 /* The keymap used by the minibuf for local
61 bindings when spaces are allowed in the
62 minibuf */
64 /* was MinibufLocalNSMap */
65 Lisp_Object Vminibuffer_local_ns_map;
66 /* The keymap used by the minibuf for local
67 bindings when spaces are not encouraged
68 in the minibuf */
70 /* keymap used for minibuffers when doing completion */
71 /* was MinibufLocalCompletionMap */
72 Lisp_Object Vminibuffer_local_completion_map;
74 /* keymap used for minibuffers when doing completion in filenames */
75 Lisp_Object Vminibuffer_local_filename_completion_map;
77 /* keymap used for minibuffers when doing completion in filenames
78 with require-match*/
79 Lisp_Object Vminibuffer_local_must_match_filename_map;
81 /* keymap used for minibuffers when doing completion and require a match */
82 /* was MinibufLocalMustMatchMap */
83 Lisp_Object Vminibuffer_local_must_match_map;
85 /* Alist of minor mode variables and keymaps. */
86 Lisp_Object Vminor_mode_map_alist;
88 /* Alist of major-mode-specific overrides for
89 minor mode variables and keymaps. */
90 Lisp_Object Vminor_mode_overriding_map_alist;
92 /* List of emulation mode keymap alists. */
93 Lisp_Object Vemulation_mode_map_alists;
95 /* A list of all commands given new bindings since a certain time
96 when nil was stored here.
97 This is used to speed up recomputation of menu key equivalents
98 when Emacs starts up. t means don't record anything here. */
99 Lisp_Object Vdefine_key_rebound_commands;
101 Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii, Qmenu_item, Qremap;
103 /* Alist of elements like (DEL . "\d"). */
104 static Lisp_Object exclude_keys;
106 /* Pre-allocated 2-element vector for Fcommand_remapping to use. */
107 static Lisp_Object command_remapping_vector;
109 /* A char with the CHAR_META bit set in a vector or the 0200 bit set
110 in a string key sequence is equivalent to prefixing with this
111 character. */
112 extern Lisp_Object meta_prefix_char;
114 extern Lisp_Object Voverriding_local_map;
116 /* Hash table used to cache a reverse-map to speed up calls to where-is. */
117 static Lisp_Object where_is_cache;
118 /* Which keymaps are reverse-stored in the cache. */
119 static Lisp_Object where_is_cache_keymaps;
121 static Lisp_Object store_in_keymap P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
122 static void fix_submap_inheritance P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
124 static Lisp_Object define_as_prefix P_ ((Lisp_Object, Lisp_Object));
125 static void describe_command P_ ((Lisp_Object, Lisp_Object));
126 static void describe_translation P_ ((Lisp_Object, Lisp_Object));
127 static void describe_map P_ ((Lisp_Object, Lisp_Object,
128 void (*) P_ ((Lisp_Object, Lisp_Object)),
129 int, Lisp_Object, Lisp_Object*, int, int));
130 static void describe_vector P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
131 void (*) (Lisp_Object, Lisp_Object), int,
132 Lisp_Object, Lisp_Object, int *,
133 int, int, int));
134 static void silly_event_symbol_error P_ ((Lisp_Object));
136 /* Keymap object support - constructors and predicates. */
138 DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0,
139 doc: /* Construct and return a new keymap, of the form (keymap CHARTABLE . ALIST).
140 CHARTABLE is a char-table that holds the bindings for all characters
141 without modifiers. All entries in it are initially nil, meaning
142 "command undefined". ALIST is an assoc-list which holds bindings for
143 function keys, mouse events, and any other things that appear in the
144 input stream. Initially, ALIST is nil.
146 The optional arg STRING supplies a menu name for the keymap
147 in case you use it as a menu with `x-popup-menu'. */)
148 (string)
149 Lisp_Object string;
151 Lisp_Object tail;
152 if (!NILP (string))
153 tail = Fcons (string, Qnil);
154 else
155 tail = Qnil;
156 return Fcons (Qkeymap,
157 Fcons (Fmake_char_table (Qkeymap, Qnil), tail));
160 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0,
161 doc: /* Construct and return a new sparse keymap.
162 Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),
163 which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),
164 which binds the function key or mouse event SYMBOL to DEFINITION.
165 Initially the alist is nil.
167 The optional arg STRING supplies a menu name for the keymap
168 in case you use it as a menu with `x-popup-menu'. */)
169 (string)
170 Lisp_Object string;
172 if (!NILP (string))
173 return Fcons (Qkeymap, Fcons (string, Qnil));
174 return Fcons (Qkeymap, Qnil);
177 /* This function is used for installing the standard key bindings
178 at initialization time.
180 For example:
182 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
184 void
185 initial_define_key (keymap, key, defname)
186 Lisp_Object keymap;
187 int key;
188 char *defname;
190 store_in_keymap (keymap, make_number (key), intern (defname));
193 void
194 initial_define_lispy_key (keymap, keyname, defname)
195 Lisp_Object keymap;
196 char *keyname;
197 char *defname;
199 store_in_keymap (keymap, intern (keyname), intern (defname));
202 DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0,
203 doc: /* Return t if OBJECT is a keymap.
205 A keymap is a list (keymap . ALIST),
206 or a symbol whose function definition is itself a keymap.
207 ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);
208 a vector of densely packed bindings for small character codes
209 is also allowed as an element. */)
210 (object)
211 Lisp_Object object;
213 return (KEYMAPP (object) ? Qt : Qnil);
216 DEFUN ("keymap-prompt", Fkeymap_prompt, Skeymap_prompt, 1, 1, 0,
217 doc: /* Return the prompt-string of a keymap MAP.
218 If non-nil, the prompt is shown in the echo-area
219 when reading a key-sequence to be looked-up in this keymap. */)
220 (map)
221 Lisp_Object map;
223 map = get_keymap (map, 0, 0);
224 while (CONSP (map))
226 Lisp_Object tem = XCAR (map);
227 if (STRINGP (tem))
228 return tem;
229 map = XCDR (map);
231 return Qnil;
234 /* Check that OBJECT is a keymap (after dereferencing through any
235 symbols). If it is, return it.
237 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
238 is an autoload form, do the autoload and try again.
239 If AUTOLOAD is nonzero, callers must assume GC is possible.
241 If the map needs to be autoloaded, but AUTOLOAD is zero (and ERROR
242 is zero as well), return Qt.
244 ERROR controls how we respond if OBJECT isn't a keymap.
245 If ERROR is non-zero, signal an error; otherwise, just return Qnil.
247 Note that most of the time, we don't want to pursue autoloads.
248 Functions like Faccessible_keymaps which scan entire keymap trees
249 shouldn't load every autoloaded keymap. I'm not sure about this,
250 but it seems to me that only read_key_sequence, Flookup_key, and
251 Fdefine_key should cause keymaps to be autoloaded.
253 This function can GC when AUTOLOAD is non-zero, because it calls
254 do_autoload which can GC. */
256 Lisp_Object
257 get_keymap (object, error, autoload)
258 Lisp_Object object;
259 int error, autoload;
261 Lisp_Object tem;
263 autoload_retry:
264 if (NILP (object))
265 goto end;
266 if (CONSP (object) && EQ (XCAR (object), Qkeymap))
267 return object;
269 tem = indirect_function (object);
270 if (CONSP (tem))
272 if (EQ (XCAR (tem), Qkeymap))
273 return tem;
275 /* Should we do an autoload? Autoload forms for keymaps have
276 Qkeymap as their fifth element. */
277 if ((autoload || !error) && EQ (XCAR (tem), Qautoload)
278 && SYMBOLP (object))
280 Lisp_Object tail;
282 tail = Fnth (make_number (4), tem);
283 if (EQ (tail, Qkeymap))
285 if (autoload)
287 struct gcpro gcpro1, gcpro2;
289 GCPRO2 (tem, object);
290 do_autoload (tem, object);
291 UNGCPRO;
293 goto autoload_retry;
295 else
296 return Qt;
301 end:
302 if (error)
303 wrong_type_argument (Qkeymapp, object);
304 return Qnil;
307 /* Return the parent map of KEYMAP, or nil if it has none.
308 We assume that KEYMAP is a valid keymap. */
310 Lisp_Object
311 keymap_parent (keymap, autoload)
312 Lisp_Object keymap;
313 int autoload;
315 Lisp_Object list;
317 keymap = get_keymap (keymap, 1, autoload);
319 /* Skip past the initial element `keymap'. */
320 list = XCDR (keymap);
321 for (; CONSP (list); list = XCDR (list))
323 /* See if there is another `keymap'. */
324 if (KEYMAPP (list))
325 return list;
328 return get_keymap (list, 0, autoload);
331 DEFUN ("keymap-parent", Fkeymap_parent, Skeymap_parent, 1, 1, 0,
332 doc: /* Return the parent keymap of KEYMAP. */)
333 (keymap)
334 Lisp_Object keymap;
336 return keymap_parent (keymap, 1);
339 /* Check whether MAP is one of MAPS parents. */
341 keymap_memberp (map, maps)
342 Lisp_Object map, maps;
344 if (NILP (map)) return 0;
345 while (KEYMAPP (maps) && !EQ (map, maps))
346 maps = keymap_parent (maps, 0);
347 return (EQ (map, maps));
350 /* Set the parent keymap of MAP to PARENT. */
352 DEFUN ("set-keymap-parent", Fset_keymap_parent, Sset_keymap_parent, 2, 2, 0,
353 doc: /* Modify KEYMAP to set its parent map to PARENT.
354 Return PARENT. PARENT should be nil or another keymap. */)
355 (keymap, parent)
356 Lisp_Object keymap, parent;
358 Lisp_Object list, prev;
359 struct gcpro gcpro1, gcpro2;
360 int i;
362 /* Force a keymap flush for the next call to where-is.
363 Since this can be called from within where-is, we don't set where_is_cache
364 directly but only where_is_cache_keymaps, since where_is_cache shouldn't
365 be changed during where-is, while where_is_cache_keymaps is only used at
366 the very beginning of where-is and can thus be changed here without any
367 adverse effect.
368 This is a very minor correctness (rather than safety) issue. */
369 where_is_cache_keymaps = Qt;
371 GCPRO2 (keymap, parent);
372 keymap = get_keymap (keymap, 1, 1);
374 if (!NILP (parent))
376 parent = get_keymap (parent, 1, 1);
378 /* Check for cycles. */
379 if (keymap_memberp (keymap, parent))
380 error ("Cyclic keymap inheritance");
383 /* Skip past the initial element `keymap'. */
384 prev = keymap;
385 while (1)
387 list = XCDR (prev);
388 /* If there is a parent keymap here, replace it.
389 If we came to the end, add the parent in PREV. */
390 if (!CONSP (list) || KEYMAPP (list))
392 /* If we already have the right parent, return now
393 so that we avoid the loops below. */
394 if (EQ (XCDR (prev), parent))
395 RETURN_UNGCPRO (parent);
397 CHECK_IMPURE (prev);
398 XSETCDR (prev, parent);
399 break;
401 prev = list;
404 /* Scan through for submaps, and set their parents too. */
406 for (list = XCDR (keymap); CONSP (list); list = XCDR (list))
408 /* Stop the scan when we come to the parent. */
409 if (EQ (XCAR (list), Qkeymap))
410 break;
412 /* If this element holds a prefix map, deal with it. */
413 if (CONSP (XCAR (list))
414 && CONSP (XCDR (XCAR (list))))
415 fix_submap_inheritance (keymap, XCAR (XCAR (list)),
416 XCDR (XCAR (list)));
418 if (VECTORP (XCAR (list)))
419 for (i = 0; i < XVECTOR (XCAR (list))->size; i++)
420 if (CONSP (XVECTOR (XCAR (list))->contents[i]))
421 fix_submap_inheritance (keymap, make_number (i),
422 XVECTOR (XCAR (list))->contents[i]);
424 if (CHAR_TABLE_P (XCAR (list)))
426 map_char_table (fix_submap_inheritance, Qnil, XCAR (list), keymap);
430 RETURN_UNGCPRO (parent);
433 /* EVENT is defined in MAP as a prefix, and SUBMAP is its definition.
434 if EVENT is also a prefix in MAP's parent,
435 make sure that SUBMAP inherits that definition as its own parent. */
437 static void
438 fix_submap_inheritance (map, event, submap)
439 Lisp_Object map, event, submap;
441 Lisp_Object map_parent, parent_entry;
443 /* SUBMAP is a cons that we found as a key binding.
444 Discard the other things found in a menu key binding. */
446 submap = get_keymap (get_keyelt (submap, 0), 0, 0);
448 /* If it isn't a keymap now, there's no work to do. */
449 if (!CONSP (submap))
450 return;
452 map_parent = keymap_parent (map, 0);
453 if (!NILP (map_parent))
454 parent_entry =
455 get_keymap (access_keymap (map_parent, event, 0, 0, 0), 0, 0);
456 else
457 parent_entry = Qnil;
459 /* If MAP's parent has something other than a keymap,
460 our own submap shadows it completely. */
461 if (!CONSP (parent_entry))
462 return;
464 if (! EQ (parent_entry, submap))
466 Lisp_Object submap_parent;
467 submap_parent = submap;
468 while (1)
470 Lisp_Object tem;
472 tem = keymap_parent (submap_parent, 0);
474 if (KEYMAPP (tem))
476 if (keymap_memberp (tem, parent_entry))
477 /* Fset_keymap_parent could create a cycle. */
478 return;
479 submap_parent = tem;
481 else
482 break;
484 Fset_keymap_parent (submap_parent, parent_entry);
488 /* Look up IDX in MAP. IDX may be any sort of event.
489 Note that this does only one level of lookup; IDX must be a single
490 event, not a sequence.
492 If T_OK is non-zero, bindings for Qt are treated as default
493 bindings; any key left unmentioned by other tables and bindings is
494 given the binding of Qt.
496 If T_OK is zero, bindings for Qt are not treated specially.
498 If NOINHERIT, don't accept a subkeymap found in an inherited keymap. */
500 Lisp_Object
501 access_keymap (map, idx, t_ok, noinherit, autoload)
502 Lisp_Object map;
503 Lisp_Object idx;
504 int t_ok;
505 int noinherit;
506 int autoload;
508 Lisp_Object val;
510 /* Qunbound in VAL means we have found no binding yet. */
511 val = Qunbound;
513 /* If idx is a list (some sort of mouse click, perhaps?),
514 the index we want to use is the car of the list, which
515 ought to be a symbol. */
516 idx = EVENT_HEAD (idx);
518 /* If idx is a symbol, it might have modifiers, which need to
519 be put in the canonical order. */
520 if (SYMBOLP (idx))
521 idx = reorder_modifiers (idx);
522 else if (INTEGERP (idx))
523 /* Clobber the high bits that can be present on a machine
524 with more than 24 bits of integer. */
525 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
527 /* Handle the special meta -> esc mapping. */
528 if (INTEGERP (idx) && XUINT (idx) & meta_modifier)
530 /* See if there is a meta-map. If there's none, there is
531 no binding for IDX, unless a default binding exists in MAP. */
532 struct gcpro gcpro1;
533 Lisp_Object meta_map;
534 GCPRO1 (map);
535 /* A strange value in which Meta is set would cause
536 infinite recursion. Protect against that. */
537 if (XINT (meta_prefix_char) & CHAR_META)
538 meta_prefix_char = make_number (27);
539 meta_map = get_keymap (access_keymap (map, meta_prefix_char,
540 t_ok, noinherit, autoload),
541 0, autoload);
542 UNGCPRO;
543 if (CONSP (meta_map))
545 map = meta_map;
546 idx = make_number (XUINT (idx) & ~meta_modifier);
548 else if (t_ok)
549 /* Set IDX to t, so that we only find a default binding. */
550 idx = Qt;
551 else
552 /* We know there is no binding. */
553 return Qnil;
556 /* t_binding is where we put a default binding that applies,
557 to use in case we do not find a binding specifically
558 for this key sequence. */
560 Lisp_Object tail;
561 Lisp_Object t_binding = Qnil;
562 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
564 GCPRO4 (map, tail, idx, t_binding);
566 /* If `t_ok' is 2, both `t' is accepted. */
567 t_ok = t_ok ? 2 : 0;
569 for (tail = XCDR (map);
570 (CONSP (tail)
571 || (tail = get_keymap (tail, 0, autoload), CONSP (tail)));
572 tail = XCDR (tail))
574 Lisp_Object binding;
576 binding = XCAR (tail);
577 if (SYMBOLP (binding))
579 /* If NOINHERIT, stop finding prefix definitions
580 after we pass a second occurrence of the `keymap' symbol. */
581 if (noinherit && EQ (binding, Qkeymap))
582 RETURN_UNGCPRO (Qnil);
584 else if (CONSP (binding))
586 Lisp_Object key = XCAR (binding);
588 if (EQ (key, idx))
589 val = XCDR (binding);
590 else if (t_ok > 1 && EQ (key, Qt))
592 t_binding = XCDR (binding);
593 t_ok = 1;
596 else if (VECTORP (binding))
598 if (NATNUMP (idx) && XFASTINT (idx) < ASIZE (binding))
599 val = AREF (binding, XFASTINT (idx));
601 else if (CHAR_TABLE_P (binding))
603 /* Character codes with modifiers
604 are not included in a char-table.
605 All character codes without modifiers are included. */
606 if (NATNUMP (idx) && (XFASTINT (idx) & CHAR_MODIFIER_MASK) == 0)
608 val = Faref (binding, idx);
609 /* `nil' has a special meaning for char-tables, so
610 we use something else to record an explicitly
611 unbound entry. */
612 if (NILP (val))
613 val = Qunbound;
617 /* If we found a binding, clean it up and return it. */
618 if (!EQ (val, Qunbound))
620 if (EQ (val, Qt))
621 /* A Qt binding is just like an explicit nil binding
622 (i.e. it shadows any parent binding but not bindings in
623 keymaps of lower precedence). */
624 val = Qnil;
625 val = get_keyelt (val, autoload);
626 if (KEYMAPP (val))
627 fix_submap_inheritance (map, idx, val);
628 RETURN_UNGCPRO (val);
630 QUIT;
632 UNGCPRO;
633 return get_keyelt (t_binding, autoload);
637 static void
638 map_keymap_item (fun, args, key, val, data)
639 map_keymap_function_t fun;
640 Lisp_Object args, key, val;
641 void *data;
643 /* We should maybe try to detect bindings shadowed by previous
644 ones and things like that. */
645 if (EQ (val, Qt))
646 val = Qnil;
647 (*fun) (key, val, args, data);
650 static void
651 map_keymap_char_table_item (args, key, val)
652 Lisp_Object args, key, val;
654 if (!NILP (val))
656 map_keymap_function_t fun = XSAVE_VALUE (XCAR (args))->pointer;
657 args = XCDR (args);
658 map_keymap_item (fun, XCDR (args), key, val,
659 XSAVE_VALUE (XCAR (args))->pointer);
663 /* Call FUN for every binding in MAP.
664 FUN is called with 4 arguments: FUN (KEY, BINDING, ARGS, DATA).
665 AUTOLOAD if non-zero means that we can autoload keymaps if necessary. */
666 void
667 map_keymap (map, fun, args, data, autoload)
668 map_keymap_function_t fun;
669 Lisp_Object map, args;
670 void *data;
671 int autoload;
673 struct gcpro gcpro1, gcpro2, gcpro3;
674 Lisp_Object tail;
676 tail = Qnil;
677 GCPRO3 (map, args, tail);
678 map = get_keymap (map, 1, autoload);
679 for (tail = (CONSP (map) && EQ (Qkeymap, XCAR (map))) ? XCDR (map) : map;
680 CONSP (tail) || (tail = get_keymap (tail, 0, autoload), CONSP (tail));
681 tail = XCDR (tail))
683 Lisp_Object binding = XCAR (tail);
685 if (CONSP (binding))
686 map_keymap_item (fun, args, XCAR (binding), XCDR (binding), data);
687 else if (VECTORP (binding))
689 /* Loop over the char values represented in the vector. */
690 int len = ASIZE (binding);
691 int c;
692 for (c = 0; c < len; c++)
694 Lisp_Object character;
695 XSETFASTINT (character, c);
696 map_keymap_item (fun, args, character, AREF (binding, c), data);
699 else if (CHAR_TABLE_P (binding))
701 map_char_table (map_keymap_char_table_item, Qnil, binding,
702 Fcons (make_save_value (fun, 0),
703 Fcons (make_save_value (data, 0),
704 args)));
707 UNGCPRO;
710 static void
711 map_keymap_call (key, val, fun, dummy)
712 Lisp_Object key, val, fun;
713 void *dummy;
715 call2 (fun, key, val);
718 DEFUN ("map-keymap", Fmap_keymap, Smap_keymap, 2, 3, 0,
719 doc: /* Call FUNCTION once for each event binding in KEYMAP.
720 FUNCTION is called with two arguments: the event that is bound, and
721 the definition it is bound to. If the event is an integer, it may be
722 a generic character (see Info node `(elisp)Splitting Characters'), and
723 that means that all actual character events belonging to that generic
724 character are bound to the definition.
726 If KEYMAP has a parent, the parent's bindings are included as well.
727 This works recursively: if the parent has itself a parent, then the
728 grandparent's bindings are also included and so on.
729 usage: (map-keymap FUNCTION KEYMAP) */)
730 (function, keymap, sort_first)
731 Lisp_Object function, keymap, sort_first;
733 if (INTEGERP (function))
734 /* We have to stop integers early since map_keymap gives them special
735 significance. */
736 xsignal1 (Qinvalid_function, function);
737 if (! NILP (sort_first))
738 return call3 (intern ("map-keymap-internal"), function, keymap, Qt);
740 map_keymap (keymap, map_keymap_call, function, NULL, 1);
741 return Qnil;
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.
750 Also if OBJECT has a menu string as the first element,
751 remove that. Also remove a menu help string as second element.
753 If AUTOLOAD is nonzero, load autoloadable keymaps
754 that are referred to with indirection.
756 This can GC because menu_item_eval_property calls Feval. */
758 Lisp_Object
759 get_keyelt (object, autoload)
760 Lisp_Object object;
761 int autoload;
763 while (1)
765 if (!(CONSP (object)))
766 /* This is really the value. */
767 return object;
769 /* If the keymap contents looks like (keymap ...) or (lambda ...)
770 then use itself. */
771 else if (EQ (XCAR (object), Qkeymap) || EQ (XCAR (object), Qlambda))
772 return object;
774 /* If the keymap contents looks like (menu-item name . DEFN)
775 or (menu-item name DEFN ...) then use DEFN.
776 This is a new format menu item. */
777 else if (EQ (XCAR (object), Qmenu_item))
779 if (CONSP (XCDR (object)))
781 Lisp_Object tem;
783 object = XCDR (XCDR (object));
784 tem = object;
785 if (CONSP (object))
786 object = XCAR (object);
788 /* If there's a `:filter FILTER', apply FILTER to the
789 menu-item's definition to get the real definition to
790 use. */
791 for (; CONSP (tem) && CONSP (XCDR (tem)); tem = XCDR (tem))
792 if (EQ (XCAR (tem), QCfilter) && autoload)
794 Lisp_Object filter;
795 filter = XCAR (XCDR (tem));
796 filter = list2 (filter, list2 (Qquote, object));
797 object = menu_item_eval_property (filter);
798 break;
801 else
802 /* Invalid keymap. */
803 return object;
806 /* If the keymap contents looks like (STRING . DEFN), use DEFN.
807 Keymap alist elements like (CHAR MENUSTRING . DEFN)
808 will be used by HierarKey menus. */
809 else if (STRINGP (XCAR (object)))
811 object = XCDR (object);
812 /* Also remove a menu help string, if any,
813 following the menu item name. */
814 if (CONSP (object) && STRINGP (XCAR (object)))
815 object = XCDR (object);
816 /* Also remove the sublist that caches key equivalences, if any. */
817 if (CONSP (object) && CONSP (XCAR (object)))
819 Lisp_Object carcar;
820 carcar = XCAR (XCAR (object));
821 if (NILP (carcar) || VECTORP (carcar))
822 object = XCDR (object);
826 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
827 else
829 struct gcpro gcpro1;
830 Lisp_Object map;
831 GCPRO1 (object);
832 map = get_keymap (Fcar_safe (object), 0, autoload);
833 UNGCPRO;
834 return (!CONSP (map) ? object /* Invalid keymap */
835 : access_keymap (map, Fcdr (object), 0, 0, autoload));
840 static Lisp_Object
841 store_in_keymap (keymap, idx, def)
842 Lisp_Object keymap;
843 register Lisp_Object idx;
844 Lisp_Object def;
846 /* Flush any reverse-map cache. */
847 where_is_cache = Qnil;
848 where_is_cache_keymaps = Qt;
850 /* If we are preparing to dump, and DEF is a menu element
851 with a menu item indicator, copy it to ensure it is not pure. */
852 if (CONSP (def) && PURE_P (def)
853 && (EQ (XCAR (def), Qmenu_item) || STRINGP (XCAR (def))))
854 def = Fcons (XCAR (def), XCDR (def));
856 if (!CONSP (keymap) || !EQ (XCAR (keymap), Qkeymap))
857 error ("attempt to define a key in a non-keymap");
859 /* If idx is a cons, and the car part is a character, idx must be of
860 the form (FROM-CHAR . TO-CHAR). */
861 if (CONSP (idx) && CHARACTERP (XCAR (idx)))
862 CHECK_CHARACTER_CDR (idx);
863 else
864 /* If idx is a list (some sort of mouse click, perhaps?),
865 the index we want to use is the car of the list, which
866 ought to be a symbol. */
867 idx = EVENT_HEAD (idx);
869 /* If idx is a symbol, it might have modifiers, which need to
870 be put in the canonical order. */
871 if (SYMBOLP (idx))
872 idx = reorder_modifiers (idx);
873 else if (INTEGERP (idx))
874 /* Clobber the high bits that can be present on a machine
875 with more than 24 bits of integer. */
876 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
878 /* Scan the keymap for a binding of idx. */
880 Lisp_Object tail;
882 /* The cons after which we should insert new bindings. If the
883 keymap has a table element, we record its position here, so new
884 bindings will go after it; this way, the table will stay
885 towards the front of the alist and character lookups in dense
886 keymaps will remain fast. Otherwise, this just points at the
887 front of the keymap. */
888 Lisp_Object insertion_point;
890 insertion_point = keymap;
891 for (tail = XCDR (keymap); CONSP (tail); tail = XCDR (tail))
893 Lisp_Object elt;
895 elt = XCAR (tail);
896 if (VECTORP (elt))
898 if (NATNUMP (idx) && XFASTINT (idx) < ASIZE (elt))
900 CHECK_IMPURE (elt);
901 ASET (elt, XFASTINT (idx), def);
902 return def;
904 else if (CONSP (idx) && CHARACTERP (XCAR (idx)))
906 int from = XFASTINT (XCAR (idx));
907 int to = XFASTINT (XCDR (idx));
909 if (to >= ASIZE (elt))
910 to = ASIZE (elt) - 1;
911 for (; from <= to; from++)
912 ASET (elt, from, def);
913 if (to == XFASTINT (XCDR (idx)))
914 /* We have defined all keys in IDX. */
915 return def;
917 insertion_point = tail;
919 else if (CHAR_TABLE_P (elt))
921 /* Character codes with modifiers
922 are not included in a char-table.
923 All character codes without modifiers are included. */
924 if (NATNUMP (idx) && !(XFASTINT (idx) & CHAR_MODIFIER_MASK))
926 Faset (elt, idx,
927 /* `nil' has a special meaning for char-tables, so
928 we use something else to record an explicitly
929 unbound entry. */
930 NILP (def) ? Qt : def);
931 return def;
933 else if (CONSP (idx) && CHARACTERP (XCAR (idx)))
935 Fset_char_table_range (elt, idx, NILP (def) ? Qt : def);
936 return def;
938 insertion_point = tail;
940 else if (CONSP (elt))
942 if (EQ (idx, XCAR (elt)))
944 CHECK_IMPURE (elt);
945 XSETCDR (elt, def);
946 return def;
948 else if (CONSP (idx) && CHARACTERP (XCAR (idx)))
950 int from = XFASTINT (XCAR (idx));
951 int to = XFASTINT (XCDR (idx));
953 if (from <= XFASTINT (XCAR (elt))
954 && to >= XFASTINT (XCAR (elt)))
956 XSETCDR (elt, def);
957 if (from == to)
958 return def;
962 else if (EQ (elt, Qkeymap))
963 /* If we find a 'keymap' symbol in the spine of KEYMAP,
964 then we must have found the start of a second keymap
965 being used as the tail of KEYMAP, and a binding for IDX
966 should be inserted before it. */
967 goto keymap_end;
969 QUIT;
972 keymap_end:
973 /* We have scanned the entire keymap, and not found a binding for
974 IDX. Let's add one. */
976 Lisp_Object elt;
978 if (CONSP (idx) && CHARACTERP (XCAR (idx)))
980 /* IDX specifies a range of characters, and not all of them
981 were handled yet, which means this keymap doesn't have a
982 char-table. So, we insert a char-table now. */
983 elt = Fmake_char_table (Qkeymap, Qnil);
984 Fset_char_table_range (elt, idx, NILP (def) ? Qt : def);
986 else
987 elt = Fcons (idx, def);
988 CHECK_IMPURE (insertion_point);
989 XSETCDR (insertion_point, Fcons (elt, XCDR (insertion_point)));
993 return def;
996 EXFUN (Fcopy_keymap, 1);
998 Lisp_Object
999 copy_keymap_item (elt)
1000 Lisp_Object elt;
1002 Lisp_Object res, tem;
1004 if (!CONSP (elt))
1005 return elt;
1007 res = tem = elt;
1009 /* Is this a new format menu item. */
1010 if (EQ (XCAR (tem), Qmenu_item))
1012 /* Copy cell with menu-item marker. */
1013 res = elt = Fcons (XCAR (tem), XCDR (tem));
1014 tem = XCDR (elt);
1015 if (CONSP (tem))
1017 /* Copy cell with menu-item name. */
1018 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
1019 elt = XCDR (elt);
1020 tem = XCDR (elt);
1022 if (CONSP (tem))
1024 /* Copy cell with binding and if the binding is a keymap,
1025 copy that. */
1026 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
1027 elt = XCDR (elt);
1028 tem = XCAR (elt);
1029 if (CONSP (tem) && EQ (XCAR (tem), Qkeymap))
1030 XSETCAR (elt, Fcopy_keymap (tem));
1031 tem = XCDR (elt);
1032 if (CONSP (tem) && CONSP (XCAR (tem)))
1033 /* Delete cache for key equivalences. */
1034 XSETCDR (elt, XCDR (tem));
1037 else
1039 /* It may be an old fomat menu item.
1040 Skip the optional menu string. */
1041 if (STRINGP (XCAR (tem)))
1043 /* Copy the cell, since copy-alist didn't go this deep. */
1044 res = elt = Fcons (XCAR (tem), XCDR (tem));
1045 tem = XCDR (elt);
1046 /* Also skip the optional menu help string. */
1047 if (CONSP (tem) && STRINGP (XCAR (tem)))
1049 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
1050 elt = XCDR (elt);
1051 tem = XCDR (elt);
1053 /* There may also be a list that caches key equivalences.
1054 Just delete it for the new keymap. */
1055 if (CONSP (tem)
1056 && CONSP (XCAR (tem))
1057 && (NILP (XCAR (XCAR (tem)))
1058 || VECTORP (XCAR (XCAR (tem)))))
1060 XSETCDR (elt, XCDR (tem));
1061 tem = XCDR (tem);
1063 if (CONSP (tem) && EQ (XCAR (tem), Qkeymap))
1064 XSETCDR (elt, Fcopy_keymap (tem));
1066 else if (EQ (XCAR (tem), Qkeymap))
1067 res = Fcopy_keymap (elt);
1069 return res;
1072 static void
1073 copy_keymap_1 (chartable, idx, elt)
1074 Lisp_Object chartable, idx, elt;
1076 Fset_char_table_range (chartable, idx, copy_keymap_item (elt));
1079 DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
1080 doc: /* Return a copy of the keymap KEYMAP.
1081 The copy starts out with the same definitions of KEYMAP,
1082 but changing either the copy or KEYMAP does not affect the other.
1083 Any key definitions that are subkeymaps are recursively copied.
1084 However, a key definition which is a symbol whose definition is a keymap
1085 is not copied. */)
1086 (keymap)
1087 Lisp_Object keymap;
1089 register Lisp_Object copy, tail;
1090 keymap = get_keymap (keymap, 1, 0);
1091 copy = tail = Fcons (Qkeymap, Qnil);
1092 keymap = XCDR (keymap); /* Skip the `keymap' symbol. */
1094 while (CONSP (keymap) && !EQ (XCAR (keymap), Qkeymap))
1096 Lisp_Object elt = XCAR (keymap);
1097 if (CHAR_TABLE_P (elt))
1099 elt = Fcopy_sequence (elt);
1100 map_char_table (copy_keymap_1, Qnil, elt, elt);
1102 else if (VECTORP (elt))
1104 int i;
1105 elt = Fcopy_sequence (elt);
1106 for (i = 0; i < ASIZE (elt); i++)
1107 ASET (elt, i, copy_keymap_item (AREF (elt, i)));
1109 else if (CONSP (elt))
1110 elt = Fcons (XCAR (elt), copy_keymap_item (XCDR (elt)));
1111 XSETCDR (tail, Fcons (elt, Qnil));
1112 tail = XCDR (tail);
1113 keymap = XCDR (keymap);
1115 XSETCDR (tail, keymap);
1116 return copy;
1119 /* Simple Keymap mutators and accessors. */
1121 /* GC is possible in this function if it autoloads a keymap. */
1123 DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
1124 doc: /* In KEYMAP, define key sequence KEY as DEF.
1125 KEYMAP is a keymap.
1127 KEY is a string or a vector of symbols and characters meaning a
1128 sequence of keystrokes and events. Non-ASCII characters with codes
1129 above 127 (such as ISO Latin-1) can be included if you use a vector.
1130 Using [t] for KEY creates a default definition, which applies to any
1131 event type that has no other definition in this keymap.
1133 DEF is anything that can be a key's definition:
1134 nil (means key is undefined in this keymap),
1135 a command (a Lisp function suitable for interactive calling),
1136 a string (treated as a keyboard macro),
1137 a keymap (to define a prefix key),
1138 a symbol (when the key is looked up, the symbol will stand for its
1139 function definition, which should at that time be one of the above,
1140 or another symbol whose function definition is used, etc.),
1141 a cons (STRING . DEFN), meaning that DEFN is the definition
1142 (DEFN should be a valid definition in its own right),
1143 or a cons (MAP . CHAR), meaning use definition of CHAR in keymap MAP,
1144 or an extended menu item definition.
1145 (See info node `(elisp)Extended Menu Items'.)
1147 If KEYMAP is a sparse keymap with a binding for KEY, the existing
1148 binding is altered. If there is no binding for KEY, the new pair
1149 binding KEY to DEF is added at the front of KEYMAP. */)
1150 (keymap, key, def)
1151 Lisp_Object keymap;
1152 Lisp_Object key;
1153 Lisp_Object def;
1155 register int idx;
1156 register Lisp_Object c;
1157 register Lisp_Object cmd;
1158 int metized = 0;
1159 int meta_bit;
1160 int length;
1161 struct gcpro gcpro1, gcpro2, gcpro3;
1163 GCPRO3 (keymap, key, def);
1164 keymap = get_keymap (keymap, 1, 1);
1166 CHECK_VECTOR_OR_STRING (key);
1168 length = XFASTINT (Flength (key));
1169 if (length == 0)
1170 RETURN_UNGCPRO (Qnil);
1172 if (SYMBOLP (def) && !EQ (Vdefine_key_rebound_commands, Qt))
1173 Vdefine_key_rebound_commands = Fcons (def, Vdefine_key_rebound_commands);
1175 meta_bit = (VECTORP (key) || (STRINGP (key) && STRING_MULTIBYTE (key))
1176 ? meta_modifier : 0x80);
1178 if (VECTORP (def) && ASIZE (def) > 0 && CONSP (AREF (def, 0)))
1179 { /* DEF is apparently an XEmacs-style keyboard macro. */
1180 Lisp_Object tmp = Fmake_vector (make_number (ASIZE (def)), Qnil);
1181 int i = ASIZE (def);
1182 while (--i >= 0)
1184 Lisp_Object c = AREF (def, i);
1185 if (CONSP (c) && lucid_event_type_list_p (c))
1186 c = Fevent_convert_list (c);
1187 ASET (tmp, i, c);
1189 def = tmp;
1192 idx = 0;
1193 while (1)
1195 c = Faref (key, make_number (idx));
1197 if (CONSP (c))
1199 /* C may be a Lucid style event type list or a cons (FROM .
1200 TO) specifying a range of characters. */
1201 if (lucid_event_type_list_p (c))
1202 c = Fevent_convert_list (c);
1203 else if (CHARACTERP (XCAR (c)))
1204 CHECK_CHARACTER_CDR (c);
1207 if (SYMBOLP (c))
1208 silly_event_symbol_error (c);
1210 if (INTEGERP (c)
1211 && (XINT (c) & meta_bit)
1212 && !metized)
1214 c = meta_prefix_char;
1215 metized = 1;
1217 else
1219 if (INTEGERP (c))
1220 XSETINT (c, XINT (c) & ~meta_bit);
1222 metized = 0;
1223 idx++;
1226 if (!INTEGERP (c) && !SYMBOLP (c)
1227 && (!CONSP (c)
1228 /* If C is a range, it must be a leaf. */
1229 || (INTEGERP (XCAR (c)) && idx != length)))
1230 error ("Key sequence contains invalid event");
1232 if (idx == length)
1233 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
1235 cmd = access_keymap (keymap, c, 0, 1, 1);
1237 /* If this key is undefined, make it a prefix. */
1238 if (NILP (cmd))
1239 cmd = define_as_prefix (keymap, c);
1241 keymap = get_keymap (cmd, 0, 1);
1242 if (!CONSP (keymap))
1243 /* We must use Fkey_description rather than just passing key to
1244 error; key might be a vector, not a string. */
1245 error ("Key sequence %s starts with non-prefix key %s",
1246 SDATA (Fkey_description (key, Qnil)),
1247 SDATA (Fkey_description (Fsubstring (key, make_number (0),
1248 make_number (idx)),
1249 Qnil)));
1253 /* This function may GC (it calls Fkey_binding). */
1255 DEFUN ("command-remapping", Fcommand_remapping, Scommand_remapping, 1, 3, 0,
1256 doc: /* Return the remapping for command COMMAND.
1257 Returns nil if COMMAND is not remapped (or not a symbol).
1259 If the optional argument POSITION is non-nil, it specifies a mouse
1260 position as returned by `event-start' and `event-end', and the
1261 remapping occurs in the keymaps associated with it. It can also be a
1262 number or marker, in which case the keymap properties at the specified
1263 buffer position instead of point are used. The KEYMAPS argument is
1264 ignored if POSITION is non-nil.
1266 If the optional argument KEYMAPS is non-nil, it should be a list of
1267 keymaps to search for command remapping. Otherwise, search for the
1268 remapping in all currently active keymaps. */)
1269 (command, position, keymaps)
1270 Lisp_Object command, position, keymaps;
1272 if (!SYMBOLP (command))
1273 return Qnil;
1275 ASET (command_remapping_vector, 1, command);
1277 if (NILP (keymaps))
1278 return Fkey_binding (command_remapping_vector, Qnil, Qt, position);
1279 else
1281 Lisp_Object maps, binding;
1283 for (maps = keymaps; CONSP (maps); maps = XCDR (maps))
1285 binding = Flookup_key (XCAR (maps), command_remapping_vector, Qnil);
1286 if (!NILP (binding) && !INTEGERP (binding))
1287 return binding;
1289 return Qnil;
1293 /* Value is number if KEY is too long; nil if valid but has no definition. */
1294 /* GC is possible in this function if it autoloads a keymap. */
1296 DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
1297 doc: /* In keymap KEYMAP, look up key sequence KEY. Return the definition.
1298 A value of nil means undefined. See doc of `define-key'
1299 for kinds of definitions.
1301 A number as value means KEY is "too long";
1302 that is, characters or symbols in it except for the last one
1303 fail to be a valid sequence of prefix characters in KEYMAP.
1304 The number is how many characters at the front of KEY
1305 it takes to reach a non-prefix key.
1307 Normally, `lookup-key' ignores bindings for t, which act as default
1308 bindings, used when nothing else in the keymap applies; this makes it
1309 usable as a general function for probing keymaps. However, if the
1310 third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will
1311 recognize the default bindings, just as `read-key-sequence' does. */)
1312 (keymap, key, accept_default)
1313 Lisp_Object keymap;
1314 Lisp_Object key;
1315 Lisp_Object accept_default;
1317 register int idx;
1318 register Lisp_Object cmd;
1319 register Lisp_Object c;
1320 int length;
1321 int t_ok = !NILP (accept_default);
1322 struct gcpro gcpro1, gcpro2;
1324 GCPRO2 (keymap, key);
1325 keymap = get_keymap (keymap, 1, 1);
1327 CHECK_VECTOR_OR_STRING (key);
1329 length = XFASTINT (Flength (key));
1330 if (length == 0)
1331 RETURN_UNGCPRO (keymap);
1333 idx = 0;
1334 while (1)
1336 c = Faref (key, make_number (idx++));
1338 if (CONSP (c) && lucid_event_type_list_p (c))
1339 c = Fevent_convert_list (c);
1341 /* Turn the 8th bit of string chars into a meta modifier. */
1342 if (STRINGP (key) && XINT (c) & 0x80 && !STRING_MULTIBYTE (key))
1343 XSETINT (c, (XINT (c) | meta_modifier) & ~0x80);
1345 /* Allow string since binding for `menu-bar-select-buffer'
1346 includes the buffer name in the key sequence. */
1347 if (!INTEGERP (c) && !SYMBOLP (c) && !CONSP (c) && !STRINGP (c))
1348 error ("Key sequence contains invalid event");
1350 cmd = access_keymap (keymap, c, t_ok, 0, 1);
1351 if (idx == length)
1352 RETURN_UNGCPRO (cmd);
1354 keymap = get_keymap (cmd, 0, 1);
1355 if (!CONSP (keymap))
1356 RETURN_UNGCPRO (make_number (idx));
1358 QUIT;
1362 /* Make KEYMAP define event C as a keymap (i.e., as a prefix).
1363 Assume that currently it does not define C at all.
1364 Return the keymap. */
1366 static Lisp_Object
1367 define_as_prefix (keymap, c)
1368 Lisp_Object keymap, c;
1370 Lisp_Object cmd;
1372 cmd = Fmake_sparse_keymap (Qnil);
1373 /* If this key is defined as a prefix in an inherited keymap,
1374 make it a prefix in this map, and make its definition
1375 inherit the other prefix definition. */
1376 cmd = nconc2 (cmd, access_keymap (keymap, c, 0, 0, 0));
1377 store_in_keymap (keymap, c, cmd);
1379 return cmd;
1382 /* Append a key to the end of a key sequence. We always make a vector. */
1384 Lisp_Object
1385 append_key (key_sequence, key)
1386 Lisp_Object key_sequence, key;
1388 Lisp_Object args[2];
1390 args[0] = key_sequence;
1392 args[1] = Fcons (key, Qnil);
1393 return Fvconcat (2, args);
1396 /* Given a event type C which is a symbol,
1397 signal an error if is a mistake such as RET or M-RET or C-DEL, etc. */
1399 static void
1400 silly_event_symbol_error (c)
1401 Lisp_Object c;
1403 Lisp_Object parsed, base, name, assoc;
1404 int modifiers;
1406 parsed = parse_modifiers (c);
1407 modifiers = (int) XUINT (XCAR (XCDR (parsed)));
1408 base = XCAR (parsed);
1409 name = Fsymbol_name (base);
1410 /* This alist includes elements such as ("RET" . "\\r"). */
1411 assoc = Fassoc (name, exclude_keys);
1413 if (! NILP (assoc))
1415 char new_mods[sizeof ("\\A-\\C-\\H-\\M-\\S-\\s-")];
1416 char *p = new_mods;
1417 Lisp_Object keystring;
1418 if (modifiers & alt_modifier)
1419 { *p++ = '\\'; *p++ = 'A'; *p++ = '-'; }
1420 if (modifiers & ctrl_modifier)
1421 { *p++ = '\\'; *p++ = 'C'; *p++ = '-'; }
1422 if (modifiers & hyper_modifier)
1423 { *p++ = '\\'; *p++ = 'H'; *p++ = '-'; }
1424 if (modifiers & meta_modifier)
1425 { *p++ = '\\'; *p++ = 'M'; *p++ = '-'; }
1426 if (modifiers & shift_modifier)
1427 { *p++ = '\\'; *p++ = 'S'; *p++ = '-'; }
1428 if (modifiers & super_modifier)
1429 { *p++ = '\\'; *p++ = 's'; *p++ = '-'; }
1430 *p = 0;
1432 c = reorder_modifiers (c);
1433 keystring = concat2 (build_string (new_mods), XCDR (assoc));
1435 error ((modifiers & ~meta_modifier
1436 ? "To bind the key %s, use [?%s], not [%s]"
1437 : "To bind the key %s, use \"%s\", not [%s]"),
1438 SDATA (SYMBOL_NAME (c)), SDATA (keystring),
1439 SDATA (SYMBOL_NAME (c)));
1443 /* Global, local, and minor mode keymap stuff. */
1445 /* We can't put these variables inside current_minor_maps, since under
1446 some systems, static gets macro-defined to be the empty string.
1447 Ickypoo. */
1448 static Lisp_Object *cmm_modes = NULL, *cmm_maps = NULL;
1449 static int cmm_size = 0;
1451 /* Store a pointer to an array of the currently active minor modes in
1452 *modeptr, a pointer to an array of the keymaps of the currently
1453 active minor modes in *mapptr, and return the number of maps
1454 *mapptr contains.
1456 This function always returns a pointer to the same buffer, and may
1457 free or reallocate it, so if you want to keep it for a long time or
1458 hand it out to lisp code, copy it. This procedure will be called
1459 for every key sequence read, so the nice lispy approach (return a
1460 new assoclist, list, what have you) for each invocation would
1461 result in a lot of consing over time.
1463 If we used xrealloc/xmalloc and ran out of memory, they would throw
1464 back to the command loop, which would try to read a key sequence,
1465 which would call this function again, resulting in an infinite
1466 loop. Instead, we'll use realloc/malloc and silently truncate the
1467 list, let the key sequence be read, and hope some other piece of
1468 code signals the error. */
1470 current_minor_maps (modeptr, mapptr)
1471 Lisp_Object **modeptr, **mapptr;
1473 int i = 0;
1474 int list_number = 0;
1475 Lisp_Object alist, assoc, var, val;
1476 Lisp_Object emulation_alists;
1477 Lisp_Object lists[2];
1479 emulation_alists = Vemulation_mode_map_alists;
1480 lists[0] = Vminor_mode_overriding_map_alist;
1481 lists[1] = Vminor_mode_map_alist;
1483 for (list_number = 0; list_number < 2; list_number++)
1485 if (CONSP (emulation_alists))
1487 alist = XCAR (emulation_alists);
1488 emulation_alists = XCDR (emulation_alists);
1489 if (SYMBOLP (alist))
1490 alist = find_symbol_value (alist);
1491 list_number = -1;
1493 else
1494 alist = lists[list_number];
1496 for ( ; CONSP (alist); alist = XCDR (alist))
1497 if ((assoc = XCAR (alist), CONSP (assoc))
1498 && (var = XCAR (assoc), SYMBOLP (var))
1499 && (val = find_symbol_value (var), !EQ (val, Qunbound))
1500 && !NILP (val))
1502 Lisp_Object temp;
1504 /* If a variable has an entry in Vminor_mode_overriding_map_alist,
1505 and also an entry in Vminor_mode_map_alist,
1506 ignore the latter. */
1507 if (list_number == 1)
1509 val = assq_no_quit (var, lists[0]);
1510 if (!NILP (val))
1511 continue;
1514 if (i >= cmm_size)
1516 int newsize, allocsize;
1517 Lisp_Object *newmodes, *newmaps;
1519 newsize = cmm_size == 0 ? 30 : cmm_size * 2;
1520 allocsize = newsize * sizeof *newmodes;
1522 /* Use malloc here. See the comment above this function.
1523 Avoid realloc here; it causes spurious traps on GNU/Linux [KFS] */
1524 BLOCK_INPUT;
1525 newmodes = (Lisp_Object *) malloc (allocsize);
1526 if (newmodes)
1528 if (cmm_modes)
1530 bcopy (cmm_modes, newmodes, cmm_size * sizeof cmm_modes[0]);
1531 free (cmm_modes);
1533 cmm_modes = newmodes;
1536 newmaps = (Lisp_Object *) malloc (allocsize);
1537 if (newmaps)
1539 if (cmm_maps)
1541 bcopy (cmm_maps, newmaps, cmm_size * sizeof cmm_maps[0]);
1542 free (cmm_maps);
1544 cmm_maps = newmaps;
1546 UNBLOCK_INPUT;
1548 if (newmodes == NULL || newmaps == NULL)
1549 break;
1550 cmm_size = newsize;
1553 /* Get the keymap definition--or nil if it is not defined. */
1554 temp = Findirect_function (XCDR (assoc), Qt);
1555 if (!NILP (temp))
1557 cmm_modes[i] = var;
1558 cmm_maps [i] = temp;
1559 i++;
1564 if (modeptr) *modeptr = cmm_modes;
1565 if (mapptr) *mapptr = cmm_maps;
1566 return i;
1569 DEFUN ("current-active-maps", Fcurrent_active_maps, Scurrent_active_maps,
1570 0, 2, 0,
1571 doc: /* Return a list of the currently active keymaps.
1572 OLP if non-nil indicates that we should obey `overriding-local-map' and
1573 `overriding-terminal-local-map'. POSITION can specify a click position
1574 like in the respective argument of `key-binding'. */)
1575 (olp, position)
1576 Lisp_Object olp, position;
1578 int count = SPECPDL_INDEX ();
1580 Lisp_Object keymaps;
1582 /* If a mouse click position is given, our variables are based on
1583 the buffer clicked on, not the current buffer. So we may have to
1584 switch the buffer here. */
1586 if (CONSP (position))
1588 Lisp_Object window;
1590 window = POSN_WINDOW (position);
1592 if (WINDOWP (window)
1593 && BUFFERP (XWINDOW (window)->buffer)
1594 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
1596 /* Arrange to go back to the original buffer once we're done
1597 processing the key sequence. We don't use
1598 save_excursion_{save,restore} here, in analogy to
1599 `read-key-sequence' to avoid saving point. Maybe this
1600 would not be a problem here, but it is easier to keep
1601 things the same.
1604 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
1606 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
1610 keymaps = Fcons (current_global_map, Qnil);
1612 if (!NILP (olp))
1614 if (!NILP (current_kboard->Voverriding_terminal_local_map))
1615 keymaps = Fcons (current_kboard->Voverriding_terminal_local_map, keymaps);
1616 /* The doc said that overriding-terminal-local-map should
1617 override overriding-local-map. The code used them both,
1618 but it seems clearer to use just one. rms, jan 2005. */
1619 else if (!NILP (Voverriding_local_map))
1620 keymaps = Fcons (Voverriding_local_map, keymaps);
1622 if (NILP (XCDR (keymaps)))
1624 Lisp_Object *maps;
1625 int nmaps, i;
1627 Lisp_Object keymap, local_map;
1628 EMACS_INT pt;
1630 pt = INTEGERP (position) ? XINT (position)
1631 : MARKERP (position) ? marker_position (position)
1632 : PT;
1634 /* Get the buffer local maps, possibly overriden by text or
1635 overlay properties */
1637 local_map = get_local_map (pt, current_buffer, Qlocal_map);
1638 keymap = get_local_map (pt, current_buffer, Qkeymap);
1640 if (CONSP (position))
1642 Lisp_Object string;
1644 /* For a mouse click, get the local text-property keymap
1645 of the place clicked on, rather than point. */
1647 if (POSN_INBUFFER_P (position))
1649 Lisp_Object pos;
1651 pos = POSN_BUFFER_POSN (position);
1652 if (INTEGERP (pos)
1653 && XINT (pos) >= BEG && XINT (pos) <= Z)
1655 local_map = get_local_map (XINT (pos),
1656 current_buffer, Qlocal_map);
1658 keymap = get_local_map (XINT (pos),
1659 current_buffer, Qkeymap);
1663 /* If on a mode line string with a local keymap,
1664 or for a click on a string, i.e. overlay string or a
1665 string displayed via the `display' property,
1666 consider `local-map' and `keymap' properties of
1667 that string. */
1669 if (string = POSN_STRING (position),
1670 (CONSP (string) && STRINGP (XCAR (string))))
1672 Lisp_Object pos, map;
1674 pos = XCDR (string);
1675 string = XCAR (string);
1676 if (INTEGERP (pos)
1677 && XINT (pos) >= 0
1678 && XINT (pos) < SCHARS (string))
1680 map = Fget_text_property (pos, Qlocal_map, string);
1681 if (!NILP (map))
1682 local_map = map;
1684 map = Fget_text_property (pos, Qkeymap, string);
1685 if (!NILP (map))
1686 keymap = map;
1692 if (!NILP (local_map))
1693 keymaps = Fcons (local_map, keymaps);
1695 /* Now put all the minor mode keymaps on the list. */
1696 nmaps = current_minor_maps (0, &maps);
1698 for (i = --nmaps; i >= 0; i--)
1699 if (!NILP (maps[i]))
1700 keymaps = Fcons (maps[i], keymaps);
1702 if (!NILP (keymap))
1703 keymaps = Fcons (keymap, keymaps);
1706 unbind_to (count, Qnil);
1708 return keymaps;
1711 /* GC is possible in this function if it autoloads a keymap. */
1713 DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 4, 0,
1714 doc: /* Return the binding for command KEY in current keymaps.
1715 KEY is a string or vector, a sequence of keystrokes.
1716 The binding is probably a symbol with a function definition.
1718 Normally, `key-binding' ignores bindings for t, which act as default
1719 bindings, used when nothing else in the keymap applies; this makes it
1720 usable as a general function for probing keymaps. However, if the
1721 optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does
1722 recognize the default bindings, just as `read-key-sequence' does.
1724 Like the normal command loop, `key-binding' will remap the command
1725 resulting from looking up KEY by looking up the command in the
1726 current keymaps. However, if the optional third argument NO-REMAP
1727 is non-nil, `key-binding' returns the unmapped command.
1729 If KEY is a key sequence initiated with the mouse, the used keymaps
1730 will depend on the clicked mouse position with regard to the buffer
1731 and possible local keymaps on strings.
1733 If the optional argument POSITION is non-nil, it specifies a mouse
1734 position as returned by `event-start' and `event-end', and the lookup
1735 occurs in the keymaps associated with it instead of KEY. It can also
1736 be a number or marker, in which case the keymap properties at the
1737 specified buffer position instead of point are used.
1739 (key, accept_default, no_remap, position)
1740 Lisp_Object key, accept_default, no_remap, position;
1742 Lisp_Object *maps, value;
1743 int nmaps, i;
1744 struct gcpro gcpro1, gcpro2;
1745 int count = SPECPDL_INDEX ();
1747 GCPRO2 (key, position);
1749 if (NILP (position) && VECTORP (key))
1751 Lisp_Object event
1752 /* mouse events may have a symbolic prefix indicating the
1753 scrollbar or mode line */
1754 = AREF (key, SYMBOLP (AREF (key, 0)) && ASIZE (key) > 1 ? 1 : 0);
1756 /* We are not interested in locations without event data */
1758 if (EVENT_HAS_PARAMETERS (event) && CONSP (XCDR (event)))
1760 Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (event));
1761 if (EQ (kind, Qmouse_click))
1762 position = EVENT_START (event);
1766 /* Key sequences beginning with mouse clicks
1767 are read using the keymaps of the buffer clicked on, not
1768 the current buffer. So we may have to switch the buffer
1769 here. */
1771 if (CONSP (position))
1773 Lisp_Object window;
1775 window = POSN_WINDOW (position);
1777 if (WINDOWP (window)
1778 && BUFFERP (XWINDOW (window)->buffer)
1779 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
1781 /* Arrange to go back to the original buffer once we're done
1782 processing the key sequence. We don't use
1783 save_excursion_{save,restore} here, in analogy to
1784 `read-key-sequence' to avoid saving point. Maybe this
1785 would not be a problem here, but it is easier to keep
1786 things the same.
1789 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
1791 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
1795 if (! NILP (current_kboard->Voverriding_terminal_local_map))
1797 value = Flookup_key (current_kboard->Voverriding_terminal_local_map,
1798 key, accept_default);
1799 if (! NILP (value) && !INTEGERP (value))
1800 goto done;
1802 else if (! NILP (Voverriding_local_map))
1804 value = Flookup_key (Voverriding_local_map, key, accept_default);
1805 if (! NILP (value) && !INTEGERP (value))
1806 goto done;
1808 else
1810 Lisp_Object keymap, local_map;
1811 EMACS_INT pt;
1813 pt = INTEGERP (position) ? XINT (position)
1814 : MARKERP (position) ? marker_position (position)
1815 : PT;
1817 local_map = get_local_map (pt, current_buffer, Qlocal_map);
1818 keymap = get_local_map (pt, current_buffer, Qkeymap);
1820 if (CONSP (position))
1822 Lisp_Object string;
1824 /* For a mouse click, get the local text-property keymap
1825 of the place clicked on, rather than point. */
1827 if (POSN_INBUFFER_P (position))
1829 Lisp_Object pos;
1831 pos = POSN_BUFFER_POSN (position);
1832 if (INTEGERP (pos)
1833 && XINT (pos) >= BEG && XINT (pos) <= Z)
1835 local_map = get_local_map (XINT (pos),
1836 current_buffer, Qlocal_map);
1838 keymap = get_local_map (XINT (pos),
1839 current_buffer, Qkeymap);
1843 /* If on a mode line string with a local keymap,
1844 or for a click on a string, i.e. overlay string or a
1845 string displayed via the `display' property,
1846 consider `local-map' and `keymap' properties of
1847 that string. */
1849 if (string = POSN_STRING (position),
1850 (CONSP (string) && STRINGP (XCAR (string))))
1852 Lisp_Object pos, map;
1854 pos = XCDR (string);
1855 string = XCAR (string);
1856 if (INTEGERP (pos)
1857 && XINT (pos) >= 0
1858 && XINT (pos) < SCHARS (string))
1860 map = Fget_text_property (pos, Qlocal_map, string);
1861 if (!NILP (map))
1862 local_map = map;
1864 map = Fget_text_property (pos, Qkeymap, string);
1865 if (!NILP (map))
1866 keymap = map;
1872 if (! NILP (keymap))
1874 value = Flookup_key (keymap, key, accept_default);
1875 if (! NILP (value) && !INTEGERP (value))
1876 goto done;
1879 nmaps = current_minor_maps (0, &maps);
1880 /* Note that all these maps are GCPRO'd
1881 in the places where we found them. */
1883 for (i = 0; i < nmaps; i++)
1884 if (! NILP (maps[i]))
1886 value = Flookup_key (maps[i], key, accept_default);
1887 if (! NILP (value) && !INTEGERP (value))
1888 goto done;
1891 if (! NILP (local_map))
1893 value = Flookup_key (local_map, key, accept_default);
1894 if (! NILP (value) && !INTEGERP (value))
1895 goto done;
1899 value = Flookup_key (current_global_map, key, accept_default);
1901 done:
1902 unbind_to (count, Qnil);
1904 UNGCPRO;
1905 if (NILP (value) || INTEGERP (value))
1906 return Qnil;
1908 /* If the result of the ordinary keymap lookup is an interactive
1909 command, look for a key binding (ie. remapping) for that command. */
1911 if (NILP (no_remap) && SYMBOLP (value))
1913 Lisp_Object value1;
1914 if (value1 = Fcommand_remapping (value, position, Qnil), !NILP (value1))
1915 value = value1;
1918 return value;
1921 /* GC is possible in this function if it autoloads a keymap. */
1923 DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
1924 doc: /* Return the binding for command KEYS in current local keymap only.
1925 KEYS is a string or vector, a sequence of keystrokes.
1926 The binding is probably a symbol with a function definition.
1928 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1929 bindings; see the description of `lookup-key' for more details about this. */)
1930 (keys, accept_default)
1931 Lisp_Object keys, accept_default;
1933 register Lisp_Object map;
1934 map = current_buffer->keymap;
1935 if (NILP (map))
1936 return Qnil;
1937 return Flookup_key (map, keys, accept_default);
1940 /* GC is possible in this function if it autoloads a keymap. */
1942 DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
1943 doc: /* Return the binding for command KEYS in current global keymap only.
1944 KEYS is a string or vector, a sequence of keystrokes.
1945 The binding is probably a symbol with a function definition.
1946 This function's return values are the same as those of `lookup-key'
1947 \(which see).
1949 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1950 bindings; see the description of `lookup-key' for more details about this. */)
1951 (keys, accept_default)
1952 Lisp_Object keys, accept_default;
1954 return Flookup_key (current_global_map, keys, accept_default);
1957 /* GC is possible in this function if it autoloads a keymap. */
1959 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
1960 doc: /* Find the visible minor mode bindings of KEY.
1961 Return an alist of pairs (MODENAME . BINDING), where MODENAME is
1962 the symbol which names the minor mode binding KEY, and BINDING is
1963 KEY's definition in that mode. In particular, if KEY has no
1964 minor-mode bindings, return nil. If the first binding is a
1965 non-prefix, all subsequent bindings will be omitted, since they would
1966 be ignored. Similarly, the list doesn't include non-prefix bindings
1967 that come after prefix bindings.
1969 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1970 bindings; see the description of `lookup-key' for more details about this. */)
1971 (key, accept_default)
1972 Lisp_Object key, accept_default;
1974 Lisp_Object *modes, *maps;
1975 int nmaps;
1976 Lisp_Object binding;
1977 int i, j;
1978 struct gcpro gcpro1, gcpro2;
1980 nmaps = current_minor_maps (&modes, &maps);
1981 /* Note that all these maps are GCPRO'd
1982 in the places where we found them. */
1984 binding = Qnil;
1985 GCPRO2 (key, binding);
1987 for (i = j = 0; i < nmaps; i++)
1988 if (!NILP (maps[i])
1989 && !NILP (binding = Flookup_key (maps[i], key, accept_default))
1990 && !INTEGERP (binding))
1992 if (KEYMAPP (binding))
1993 maps[j++] = Fcons (modes[i], binding);
1994 else if (j == 0)
1995 RETURN_UNGCPRO (Fcons (Fcons (modes[i], binding), Qnil));
1998 UNGCPRO;
1999 return Flist (j, maps);
2002 DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 3, 0,
2003 doc: /* Define COMMAND as a prefix command. COMMAND should be a symbol.
2004 A new sparse keymap is stored as COMMAND's function definition and its value.
2005 If a second optional argument MAPVAR is given, the map is stored as
2006 its value instead of as COMMAND's value; but COMMAND is still defined
2007 as a function.
2008 The third optional argument NAME, if given, supplies a menu name
2009 string for the map. This is required to use the keymap as a menu.
2010 This function returns COMMAND. */)
2011 (command, mapvar, name)
2012 Lisp_Object command, mapvar, name;
2014 Lisp_Object map;
2015 map = Fmake_sparse_keymap (name);
2016 Ffset (command, map);
2017 if (!NILP (mapvar))
2018 Fset (mapvar, map);
2019 else
2020 Fset (command, map);
2021 return command;
2024 DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0,
2025 doc: /* Select KEYMAP as the global keymap. */)
2026 (keymap)
2027 Lisp_Object keymap;
2029 keymap = get_keymap (keymap, 1, 1);
2030 current_global_map = keymap;
2032 return Qnil;
2035 DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
2036 doc: /* Select KEYMAP as the local keymap.
2037 If KEYMAP is nil, that means no local keymap. */)
2038 (keymap)
2039 Lisp_Object keymap;
2041 if (!NILP (keymap))
2042 keymap = get_keymap (keymap, 1, 1);
2044 current_buffer->keymap = keymap;
2046 return Qnil;
2049 DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
2050 doc: /* Return current buffer's local keymap, or nil if it has none.
2051 Normally the local keymap is set by the major mode with `use-local-map'. */)
2054 return current_buffer->keymap;
2057 DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0,
2058 doc: /* Return the current global keymap. */)
2061 return current_global_map;
2064 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0,
2065 doc: /* Return a list of keymaps for the minor modes of the current buffer. */)
2068 Lisp_Object *maps;
2069 int nmaps = current_minor_maps (0, &maps);
2071 return Flist (nmaps, maps);
2074 /* Help functions for describing and documenting keymaps. */
2076 struct accessible_keymaps_data {
2077 Lisp_Object maps, tail, thisseq;
2078 /* Does the current sequence end in the meta-prefix-char? */
2079 int is_metized;
2082 static void
2083 accessible_keymaps_1 (key, cmd, args, data)
2084 Lisp_Object key, cmd, args;
2085 /* Use void* to be compatible with map_keymap_function_t. */
2086 void *data;
2088 struct accessible_keymaps_data *d = data; /* Cast! */
2089 Lisp_Object maps = d->maps;
2090 Lisp_Object tail = d->tail;
2091 Lisp_Object thisseq = d->thisseq;
2092 int is_metized = d->is_metized && INTEGERP (key);
2093 Lisp_Object tem;
2095 cmd = get_keymap (get_keyelt (cmd, 0), 0, 0);
2096 if (NILP (cmd))
2097 return;
2099 /* Look for and break cycles. */
2100 while (!NILP (tem = Frassq (cmd, maps)))
2102 Lisp_Object prefix = XCAR (tem);
2103 int lim = XINT (Flength (XCAR (tem)));
2104 if (lim <= XINT (Flength (thisseq)))
2105 { /* This keymap was already seen with a smaller prefix. */
2106 int i = 0;
2107 while (i < lim && EQ (Faref (prefix, make_number (i)),
2108 Faref (thisseq, make_number (i))))
2109 i++;
2110 if (i >= lim)
2111 /* `prefix' is a prefix of `thisseq' => there's a cycle. */
2112 return;
2114 /* This occurrence of `cmd' in `maps' does not correspond to a cycle,
2115 but maybe `cmd' occurs again further down in `maps', so keep
2116 looking. */
2117 maps = XCDR (Fmemq (tem, maps));
2120 /* If the last key in thisseq is meta-prefix-char,
2121 turn it into a meta-ized keystroke. We know
2122 that the event we're about to append is an
2123 ascii keystroke since we're processing a
2124 keymap table. */
2125 if (is_metized)
2127 int meta_bit = meta_modifier;
2128 Lisp_Object last = make_number (XINT (Flength (thisseq)) - 1);
2129 tem = Fcopy_sequence (thisseq);
2131 Faset (tem, last, make_number (XINT (key) | meta_bit));
2133 /* This new sequence is the same length as
2134 thisseq, so stick it in the list right
2135 after this one. */
2136 XSETCDR (tail,
2137 Fcons (Fcons (tem, cmd), XCDR (tail)));
2139 else
2141 tem = append_key (thisseq, key);
2142 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
2146 /* This function cannot GC. */
2148 DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
2149 1, 2, 0,
2150 doc: /* Find all keymaps accessible via prefix characters from KEYMAP.
2151 Returns a list of elements of the form (KEYS . MAP), where the sequence
2152 KEYS starting from KEYMAP gets you to MAP. These elements are ordered
2153 so that the KEYS increase in length. The first element is ([] . KEYMAP).
2154 An optional argument PREFIX, if non-nil, should be a key sequence;
2155 then the value includes only maps for prefixes that start with PREFIX. */)
2156 (keymap, prefix)
2157 Lisp_Object keymap, prefix;
2159 Lisp_Object maps, tail;
2160 int prefixlen = XINT (Flength (prefix));
2162 /* no need for gcpro because we don't autoload any keymaps. */
2164 if (!NILP (prefix))
2166 /* If a prefix was specified, start with the keymap (if any) for
2167 that prefix, so we don't waste time considering other prefixes. */
2168 Lisp_Object tem;
2169 tem = Flookup_key (keymap, prefix, Qt);
2170 /* Flookup_key may give us nil, or a number,
2171 if the prefix is not defined in this particular map.
2172 It might even give us a list that isn't a keymap. */
2173 tem = get_keymap (tem, 0, 0);
2174 /* If the keymap is autoloaded `tem' is not a cons-cell, but we still
2175 want to return it. */
2176 if (!NILP (tem))
2178 /* Convert PREFIX to a vector now, so that later on
2179 we don't have to deal with the possibility of a string. */
2180 if (STRINGP (prefix))
2182 int i, i_byte, c;
2183 Lisp_Object copy;
2185 copy = Fmake_vector (make_number (SCHARS (prefix)), Qnil);
2186 for (i = 0, i_byte = 0; i < SCHARS (prefix);)
2188 int i_before = i;
2190 FETCH_STRING_CHAR_ADVANCE (c, prefix, i, i_byte);
2191 if (SINGLE_BYTE_CHAR_P (c) && (c & 0200))
2192 c ^= 0200 | meta_modifier;
2193 ASET (copy, i_before, make_number (c));
2195 prefix = copy;
2197 maps = Fcons (Fcons (prefix, tem), Qnil);
2199 else
2200 return Qnil;
2202 else
2203 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
2204 get_keymap (keymap, 1, 0)),
2205 Qnil);
2207 /* For each map in the list maps,
2208 look at any other maps it points to,
2209 and stick them at the end if they are not already in the list.
2211 This is a breadth-first traversal, where tail is the queue of
2212 nodes, and maps accumulates a list of all nodes visited. */
2214 for (tail = maps; CONSP (tail); tail = XCDR (tail))
2216 struct accessible_keymaps_data data;
2217 register Lisp_Object thismap = Fcdr (XCAR (tail));
2218 Lisp_Object last;
2220 data.thisseq = Fcar (XCAR (tail));
2221 data.maps = maps;
2222 data.tail = tail;
2223 last = make_number (XINT (Flength (data.thisseq)) - 1);
2224 /* Does the current sequence end in the meta-prefix-char? */
2225 data.is_metized = (XINT (last) >= 0
2226 /* Don't metize the last char of PREFIX. */
2227 && XINT (last) >= prefixlen
2228 && EQ (Faref (data.thisseq, last), meta_prefix_char));
2230 /* Since we can't run lisp code, we can't scan autoloaded maps. */
2231 if (CONSP (thismap))
2232 map_keymap (thismap, accessible_keymaps_1, Qnil, &data, 0);
2234 return maps;
2236 Lisp_Object Qsingle_key_description, Qkey_description;
2238 /* This function cannot GC. */
2240 DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0,
2241 doc: /* Return a pretty description of key-sequence KEYS.
2242 Optional arg PREFIX is the sequence of keys leading up to KEYS.
2243 Control characters turn into "C-foo" sequences, meta into "M-foo",
2244 spaces are put between sequence elements, etc. */)
2245 (keys, prefix)
2246 Lisp_Object keys, prefix;
2248 int len = 0;
2249 int i, i_byte;
2250 Lisp_Object *args;
2251 int size = XINT (Flength (keys));
2252 Lisp_Object list;
2253 Lisp_Object sep = build_string (" ");
2254 Lisp_Object key;
2255 int add_meta = 0;
2257 if (!NILP (prefix))
2258 size += XINT (Flength (prefix));
2260 /* This has one extra element at the end that we don't pass to Fconcat. */
2261 args = (Lisp_Object *) alloca (size * 4 * sizeof (Lisp_Object));
2263 /* In effect, this computes
2264 (mapconcat 'single-key-description keys " ")
2265 but we shouldn't use mapconcat because it can do GC. */
2267 next_list:
2268 if (!NILP (prefix))
2269 list = prefix, prefix = Qnil;
2270 else if (!NILP (keys))
2271 list = keys, keys = Qnil;
2272 else
2274 if (add_meta)
2276 args[len] = Fsingle_key_description (meta_prefix_char, Qnil);
2277 len += 2;
2279 else if (len == 0)
2280 return empty_unibyte_string;
2281 return Fconcat (len - 1, args);
2284 if (STRINGP (list))
2285 size = SCHARS (list);
2286 else if (VECTORP (list))
2287 size = XVECTOR (list)->size;
2288 else if (CONSP (list))
2289 size = XINT (Flength (list));
2290 else
2291 wrong_type_argument (Qarrayp, list);
2293 i = i_byte = 0;
2295 while (i < size)
2297 if (STRINGP (list))
2299 int c;
2300 FETCH_STRING_CHAR_ADVANCE (c, list, i, i_byte);
2301 if (SINGLE_BYTE_CHAR_P (c) && (c & 0200))
2302 c ^= 0200 | meta_modifier;
2303 XSETFASTINT (key, c);
2305 else if (VECTORP (list))
2307 key = AREF (list, i); i++;
2309 else
2311 key = XCAR (list);
2312 list = XCDR (list);
2313 i++;
2316 if (add_meta)
2318 if (!INTEGERP (key)
2319 || EQ (key, meta_prefix_char)
2320 || (XINT (key) & meta_modifier))
2322 args[len++] = Fsingle_key_description (meta_prefix_char, Qnil);
2323 args[len++] = sep;
2324 if (EQ (key, meta_prefix_char))
2325 continue;
2327 else
2328 XSETINT (key, (XINT (key) | meta_modifier) & ~0x80);
2329 add_meta = 0;
2331 else if (EQ (key, meta_prefix_char))
2333 add_meta = 1;
2334 continue;
2336 args[len++] = Fsingle_key_description (key, Qnil);
2337 args[len++] = sep;
2339 goto next_list;
2343 char *
2344 push_key_description (c, p, force_multibyte)
2345 register unsigned int c;
2346 register char *p;
2347 int force_multibyte;
2349 unsigned c2;
2351 /* Clear all the meaningless bits above the meta bit. */
2352 c &= meta_modifier | ~ - meta_modifier;
2353 c2 = c & ~(alt_modifier | ctrl_modifier | hyper_modifier
2354 | meta_modifier | shift_modifier | super_modifier);
2356 if (! CHARACTERP (make_number (c2)))
2358 /* KEY_DESCRIPTION_SIZE is large enough for this. */
2359 p += sprintf (p, "[%d]", c);
2360 return p;
2363 if (c & alt_modifier)
2365 *p++ = 'A';
2366 *p++ = '-';
2367 c -= alt_modifier;
2369 if ((c & ctrl_modifier) != 0
2370 || (c2 < ' ' && c2 != 27 && c2 != '\t' && c2 != Ctl ('M')))
2372 *p++ = 'C';
2373 *p++ = '-';
2374 c &= ~ctrl_modifier;
2376 if (c & hyper_modifier)
2378 *p++ = 'H';
2379 *p++ = '-';
2380 c -= hyper_modifier;
2382 if (c & meta_modifier)
2384 *p++ = 'M';
2385 *p++ = '-';
2386 c -= meta_modifier;
2388 if (c & shift_modifier)
2390 *p++ = 'S';
2391 *p++ = '-';
2392 c -= shift_modifier;
2394 if (c & super_modifier)
2396 *p++ = 's';
2397 *p++ = '-';
2398 c -= super_modifier;
2400 if (c < 040)
2402 if (c == 033)
2404 *p++ = 'E';
2405 *p++ = 'S';
2406 *p++ = 'C';
2408 else if (c == '\t')
2410 *p++ = 'T';
2411 *p++ = 'A';
2412 *p++ = 'B';
2414 else if (c == Ctl ('M'))
2416 *p++ = 'R';
2417 *p++ = 'E';
2418 *p++ = 'T';
2420 else
2422 /* `C-' already added above. */
2423 if (c > 0 && c <= Ctl ('Z'))
2424 *p++ = c + 0140;
2425 else
2426 *p++ = c + 0100;
2429 else if (c == 0177)
2431 *p++ = 'D';
2432 *p++ = 'E';
2433 *p++ = 'L';
2435 else if (c == ' ')
2437 *p++ = 'S';
2438 *p++ = 'P';
2439 *p++ = 'C';
2441 else if (c < 128
2442 || (NILP (current_buffer->enable_multibyte_characters)
2443 && SINGLE_BYTE_CHAR_P (c)
2444 && !force_multibyte))
2446 *p++ = c;
2448 else
2450 /* Now we are sure that C is a valid character code. */
2451 if (NILP (current_buffer->enable_multibyte_characters)
2452 && ! force_multibyte)
2453 *p++ = multibyte_char_to_unibyte (c, Qnil);
2454 else
2455 p += CHAR_STRING (c, (unsigned char *) p);
2458 return p;
2461 /* This function cannot GC. */
2463 DEFUN ("single-key-description", Fsingle_key_description,
2464 Ssingle_key_description, 1, 2, 0,
2465 doc: /* Return a pretty description of command character KEY.
2466 Control characters turn into C-whatever, etc.
2467 Optional argument NO-ANGLES non-nil means don't put angle brackets
2468 around function keys and event symbols. */)
2469 (key, no_angles)
2470 Lisp_Object key, no_angles;
2472 if (CONSP (key) && lucid_event_type_list_p (key))
2473 key = Fevent_convert_list (key);
2475 key = EVENT_HEAD (key);
2477 if (INTEGERP (key)) /* Normal character */
2479 char tem[KEY_DESCRIPTION_SIZE];
2481 *push_key_description (XUINT (key), tem, 1) = 0;
2482 return build_string (tem);
2484 else if (SYMBOLP (key)) /* Function key or event-symbol */
2486 if (NILP (no_angles))
2488 char *buffer
2489 = (char *) alloca (SBYTES (SYMBOL_NAME (key)) + 5);
2490 sprintf (buffer, "<%s>", SDATA (SYMBOL_NAME (key)));
2491 return build_string (buffer);
2493 else
2494 return Fsymbol_name (key);
2496 else if (STRINGP (key)) /* Buffer names in the menubar. */
2497 return Fcopy_sequence (key);
2498 else
2499 error ("KEY must be an integer, cons, symbol, or string");
2500 return Qnil;
2503 char *
2504 push_text_char_description (c, p)
2505 register unsigned int c;
2506 register char *p;
2508 if (c >= 0200)
2510 *p++ = 'M';
2511 *p++ = '-';
2512 c -= 0200;
2514 if (c < 040)
2516 *p++ = '^';
2517 *p++ = c + 64; /* 'A' - 1 */
2519 else if (c == 0177)
2521 *p++ = '^';
2522 *p++ = '?';
2524 else
2525 *p++ = c;
2526 return p;
2529 /* This function cannot GC. */
2531 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
2532 doc: /* Return a pretty description of file-character CHARACTER.
2533 Control characters turn into "^char", etc. This differs from
2534 `single-key-description' which turns them into "C-char".
2535 Also, this function recognizes the 2**7 bit as the Meta character,
2536 whereas `single-key-description' uses the 2**27 bit for Meta.
2537 See Info node `(elisp)Describing Characters' for examples. */)
2538 (character)
2539 Lisp_Object character;
2541 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */
2542 unsigned char str[6];
2543 int c;
2545 CHECK_NUMBER (character);
2547 c = XINT (character);
2548 if (!ASCII_CHAR_P (c))
2550 int len = CHAR_STRING (c, str);
2552 return make_multibyte_string (str, 1, len);
2555 *push_text_char_description (c & 0377, str) = 0;
2557 return build_string (str);
2560 /* Return non-zero if SEQ contains only ASCII characters, perhaps with
2561 a meta bit. */
2562 static int
2563 ascii_sequence_p (seq)
2564 Lisp_Object seq;
2566 int i;
2567 int len = XINT (Flength (seq));
2569 for (i = 0; i < len; i++)
2571 Lisp_Object ii, elt;
2573 XSETFASTINT (ii, i);
2574 elt = Faref (seq, ii);
2576 if (!INTEGERP (elt)
2577 || (XUINT (elt) & ~CHAR_META) >= 0x80)
2578 return 0;
2581 return 1;
2585 /* where-is - finding a command in a set of keymaps. */
2587 static Lisp_Object where_is_internal ();
2588 static void where_is_internal_1 P_ ((Lisp_Object key, Lisp_Object binding,
2589 Lisp_Object args, void *data));
2591 /* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2592 Returns the first non-nil binding found in any of those maps. */
2594 static Lisp_Object
2595 shadow_lookup (shadow, key, flag)
2596 Lisp_Object shadow, key, flag;
2598 Lisp_Object tail, value;
2600 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
2602 value = Flookup_key (XCAR (tail), key, flag);
2603 if (NATNUMP (value))
2605 value = Flookup_key (XCAR (tail),
2606 Fsubstring (key, make_number (0), value), flag);
2607 if (!NILP (value))
2608 return Qnil;
2610 else if (!NILP (value))
2611 return value;
2613 return Qnil;
2616 static Lisp_Object Vmouse_events;
2618 struct where_is_internal_data {
2619 Lisp_Object definition, noindirect, this, last;
2620 int last_is_meta;
2621 Lisp_Object sequences;
2624 /* This function can GC if Flookup_key autoloads any keymaps. */
2626 static Lisp_Object
2627 where_is_internal (definition, keymaps, firstonly, noindirect, no_remap)
2628 Lisp_Object definition, keymaps;
2629 Lisp_Object firstonly, noindirect, no_remap;
2631 Lisp_Object maps = Qnil;
2632 Lisp_Object found, sequences;
2633 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2634 /* 1 means ignore all menu bindings entirely. */
2635 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2637 found = keymaps;
2638 while (CONSP (found))
2640 maps =
2641 nconc2 (maps,
2642 Faccessible_keymaps (get_keymap (XCAR (found), 1, 0), Qnil));
2643 found = XCDR (found);
2646 GCPRO5 (definition, keymaps, maps, found, sequences);
2647 found = Qnil;
2648 sequences = Qnil;
2650 /* If this command is remapped, then it has no key bindings
2651 of its own. */
2652 if (NILP (no_remap)
2653 && SYMBOLP (definition)
2654 && !NILP (Fcommand_remapping (definition, Qnil, keymaps)))
2655 RETURN_UNGCPRO (Qnil);
2657 for (; CONSP (maps); maps = XCDR (maps))
2659 /* Key sequence to reach map, and the map that it reaches */
2660 register Lisp_Object this, map, tem;
2661 struct where_is_internal_data data;
2663 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
2664 [M-CHAR] sequences, check if last character of the sequence
2665 is the meta-prefix char. */
2666 Lisp_Object last;
2667 int last_is_meta;
2669 this = Fcar (XCAR (maps));
2670 map = Fcdr (XCAR (maps));
2671 last = make_number (XINT (Flength (this)) - 1);
2672 last_is_meta = (XINT (last) >= 0
2673 && EQ (Faref (this, last), meta_prefix_char));
2675 /* if (nomenus && !ascii_sequence_p (this)) */
2676 if (nomenus && XINT (last) >= 0
2677 && SYMBOLP (tem = Faref (this, make_number (0)))
2678 && !NILP (Fmemq (XCAR (parse_modifiers (tem)), Vmouse_events)))
2679 /* If no menu entries should be returned, skip over the
2680 keymaps bound to `menu-bar' and `tool-bar' and other
2681 non-ascii prefixes like `C-down-mouse-2'. */
2682 continue;
2684 QUIT;
2686 data.definition = definition;
2687 data.noindirect = noindirect;
2688 data.this = this;
2689 data.last = last;
2690 data.last_is_meta = last_is_meta;
2691 data.sequences = Qnil;
2693 if (CONSP (map))
2694 map_keymap (map, where_is_internal_1, Qnil, &data, 0);
2696 sequences = data.sequences;
2698 while (CONSP (sequences))
2700 Lisp_Object sequence, remapped, function;
2702 sequence = XCAR (sequences);
2703 sequences = XCDR (sequences);
2705 /* If the current sequence is a command remapping with
2706 format [remap COMMAND], find the key sequences
2707 which run COMMAND, and use those sequences instead. */
2708 remapped = Qnil;
2709 if (NILP (no_remap)
2710 && VECTORP (sequence) && XVECTOR (sequence)->size == 2
2711 && EQ (AREF (sequence, 0), Qremap)
2712 && (function = AREF (sequence, 1), SYMBOLP (function)))
2714 Lisp_Object remapped1;
2716 remapped1 = where_is_internal (function, keymaps, firstonly, noindirect, Qt);
2717 if (CONSP (remapped1))
2719 /* Verify that this key binding actually maps to the
2720 remapped command (see below). */
2721 if (!EQ (shadow_lookup (keymaps, XCAR (remapped1), Qnil), function))
2722 continue;
2723 sequence = XCAR (remapped1);
2724 remapped = XCDR (remapped1);
2725 goto record_sequence;
2729 /* Verify that this key binding is not shadowed by another
2730 binding for the same key, before we say it exists.
2732 Mechanism: look for local definition of this key and if
2733 it is defined and does not match what we found then
2734 ignore this key.
2736 Either nil or number as value from Flookup_key
2737 means undefined. */
2738 if (!EQ (shadow_lookup (keymaps, sequence, Qnil), definition))
2739 continue;
2741 record_sequence:
2742 /* Don't annoy user with strings from a menu such as
2743 Select Paste. Change them all to "(any string)",
2744 so that there seems to be only one menu item
2745 to report. */
2746 if (! NILP (sequence))
2748 Lisp_Object tem;
2749 tem = Faref (sequence, make_number (XVECTOR (sequence)->size - 1));
2750 if (STRINGP (tem))
2751 Faset (sequence, make_number (XVECTOR (sequence)->size - 1),
2752 build_string ("(any string)"));
2755 /* It is a true unshadowed match. Record it, unless it's already
2756 been seen (as could happen when inheriting keymaps). */
2757 if (NILP (Fmember (sequence, found)))
2758 found = Fcons (sequence, found);
2760 /* If firstonly is Qnon_ascii, then we can return the first
2761 binding we find. If firstonly is not Qnon_ascii but not
2762 nil, then we should return the first ascii-only binding
2763 we find. */
2764 if (EQ (firstonly, Qnon_ascii))
2765 RETURN_UNGCPRO (sequence);
2766 else if (!NILP (firstonly) && ascii_sequence_p (sequence))
2767 RETURN_UNGCPRO (sequence);
2769 if (CONSP (remapped))
2771 sequence = XCAR (remapped);
2772 remapped = XCDR (remapped);
2773 goto record_sequence;
2778 UNGCPRO;
2780 found = Fnreverse (found);
2782 /* firstonly may have been t, but we may have gone all the way through
2783 the keymaps without finding an all-ASCII key sequence. So just
2784 return the best we could find. */
2785 if (!NILP (firstonly))
2786 return Fcar (found);
2788 return found;
2791 DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 5, 0,
2792 doc: /* Return list of keys that invoke DEFINITION.
2793 If KEYMAP is a keymap, search only KEYMAP and the global keymap.
2794 If KEYMAP is nil, search all the currently active keymaps.
2795 If KEYMAP is a list of keymaps, search only those keymaps.
2797 If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,
2798 rather than a list of all possible key sequences.
2799 If FIRSTONLY is the symbol `non-ascii', return the first binding found,
2800 no matter what it is.
2801 If FIRSTONLY has another non-nil value, prefer sequences of ASCII characters
2802 \(or their meta variants) and entirely reject menu bindings.
2804 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections
2805 to other keymaps or slots. This makes it possible to search for an
2806 indirect definition itself.
2808 If optional 5th arg NO-REMAP is non-nil, don't search for key sequences
2809 that invoke a command which is remapped to DEFINITION, but include the
2810 remapped command in the returned list. */)
2811 (definition, keymap, firstonly, noindirect, no_remap)
2812 Lisp_Object definition, keymap;
2813 Lisp_Object firstonly, noindirect, no_remap;
2815 Lisp_Object sequences, keymaps;
2816 /* 1 means ignore all menu bindings entirely. */
2817 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2818 Lisp_Object result;
2820 /* Find the relevant keymaps. */
2821 if (CONSP (keymap) && KEYMAPP (XCAR (keymap)))
2822 keymaps = keymap;
2823 else if (!NILP (keymap))
2824 keymaps = Fcons (keymap, Fcons (current_global_map, Qnil));
2825 else
2826 keymaps = Fcurrent_active_maps (Qnil, Qnil);
2828 /* Only use caching for the menubar (i.e. called with (def nil t nil).
2829 We don't really need to check `keymap'. */
2830 if (nomenus && NILP (noindirect) && NILP (keymap))
2832 Lisp_Object *defns;
2833 int i, j, n;
2834 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2836 /* Check heuristic-consistency of the cache. */
2837 if (NILP (Fequal (keymaps, where_is_cache_keymaps)))
2838 where_is_cache = Qnil;
2840 if (NILP (where_is_cache))
2842 /* We need to create the cache. */
2843 Lisp_Object args[2];
2844 where_is_cache = Fmake_hash_table (0, args);
2845 where_is_cache_keymaps = Qt;
2847 /* Fill in the cache. */
2848 GCPRO5 (definition, keymaps, firstonly, noindirect, no_remap);
2849 where_is_internal (definition, keymaps, firstonly, noindirect, no_remap);
2850 UNGCPRO;
2852 where_is_cache_keymaps = keymaps;
2855 /* We want to process definitions from the last to the first.
2856 Instead of consing, copy definitions to a vector and step
2857 over that vector. */
2858 sequences = Fgethash (definition, where_is_cache, Qnil);
2859 n = XINT (Flength (sequences));
2860 defns = (Lisp_Object *) alloca (n * sizeof *defns);
2861 for (i = 0; CONSP (sequences); sequences = XCDR (sequences))
2862 defns[i++] = XCAR (sequences);
2864 /* Verify that the key bindings are not shadowed. Note that
2865 the following can GC. */
2866 GCPRO2 (definition, keymaps);
2867 result = Qnil;
2868 j = -1;
2869 for (i = n - 1; i >= 0; --i)
2870 if (EQ (shadow_lookup (keymaps, defns[i], Qnil), definition))
2872 if (ascii_sequence_p (defns[i]))
2873 break;
2874 else if (j < 0)
2875 j = i;
2878 result = i >= 0 ? defns[i] : (j >= 0 ? defns[j] : Qnil);
2879 UNGCPRO;
2881 else
2883 /* Kill the cache so that where_is_internal_1 doesn't think
2884 we're filling it up. */
2885 where_is_cache = Qnil;
2886 result = where_is_internal (definition, keymaps, firstonly, noindirect, no_remap);
2889 return result;
2892 /* This function can GC because get_keyelt can. */
2894 static void
2895 where_is_internal_1 (key, binding, args, data)
2896 Lisp_Object key, binding, args;
2897 void *data;
2899 struct where_is_internal_data *d = data; /* Cast! */
2900 Lisp_Object definition = d->definition;
2901 Lisp_Object noindirect = d->noindirect;
2902 Lisp_Object this = d->this;
2903 Lisp_Object last = d->last;
2904 int last_is_meta = d->last_is_meta;
2905 Lisp_Object sequence;
2907 /* Search through indirections unless that's not wanted. */
2908 if (NILP (noindirect))
2909 binding = get_keyelt (binding, 0);
2911 /* End this iteration if this element does not match
2912 the target. */
2914 if (!(!NILP (where_is_cache) /* everything "matches" during cache-fill. */
2915 || EQ (binding, definition)
2916 || (CONSP (definition) && !NILP (Fequal (binding, definition)))))
2917 /* Doesn't match. */
2918 return;
2920 /* We have found a match. Construct the key sequence where we found it. */
2921 if (INTEGERP (key) && last_is_meta)
2923 sequence = Fcopy_sequence (this);
2924 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
2926 else
2928 if (CONSP (key))
2929 key = Fcons (XCAR (key), XCDR (key));
2930 sequence = append_key (this, key);
2933 if (!NILP (where_is_cache))
2935 Lisp_Object sequences = Fgethash (binding, where_is_cache, Qnil);
2936 Fputhash (binding, Fcons (sequence, sequences), where_is_cache);
2938 else
2939 d->sequences = Fcons (sequence, d->sequences);
2942 /* describe-bindings - summarizing all the bindings in a set of keymaps. */
2944 DEFUN ("describe-buffer-bindings", Fdescribe_buffer_bindings, Sdescribe_buffer_bindings, 1, 3, 0,
2945 doc: /* Insert the list of all defined keys and their definitions.
2946 The list is inserted in the current buffer, while the bindings are
2947 looked up in BUFFER.
2948 The optional argument PREFIX, if non-nil, should be a key sequence;
2949 then we display only bindings that start with that prefix.
2950 The optional argument MENUS, if non-nil, says to mention menu bindings.
2951 \(Ordinarily these are omitted from the output.) */)
2952 (buffer, prefix, menus)
2953 Lisp_Object buffer, prefix, menus;
2955 Lisp_Object outbuf, shadow;
2956 int nomenu = NILP (menus);
2957 register Lisp_Object start1;
2958 struct gcpro gcpro1;
2960 char *alternate_heading
2961 = "\
2962 Keyboard translations:\n\n\
2963 You type Translation\n\
2964 -------- -----------\n";
2966 CHECK_BUFFER (buffer);
2968 shadow = Qnil;
2969 GCPRO1 (shadow);
2971 outbuf = Fcurrent_buffer ();
2973 /* Report on alternates for keys. */
2974 if (STRINGP (current_kboard->Vkeyboard_translate_table) && !NILP (prefix))
2976 int c;
2977 const unsigned char *translate = SDATA (current_kboard->Vkeyboard_translate_table);
2978 int translate_len = SCHARS (current_kboard->Vkeyboard_translate_table);
2980 for (c = 0; c < translate_len; c++)
2981 if (translate[c] != c)
2983 char buf[KEY_DESCRIPTION_SIZE];
2984 char *bufend;
2986 if (alternate_heading)
2988 insert_string (alternate_heading);
2989 alternate_heading = 0;
2992 bufend = push_key_description (translate[c], buf, 1);
2993 insert (buf, bufend - buf);
2994 Findent_to (make_number (16), make_number (1));
2995 bufend = push_key_description (c, buf, 1);
2996 insert (buf, bufend - buf);
2998 insert ("\n", 1);
3000 /* Insert calls signal_after_change which may GC. */
3001 translate = SDATA (current_kboard->Vkeyboard_translate_table);
3004 insert ("\n", 1);
3007 if (!NILP (Vkey_translation_map))
3008 describe_map_tree (Vkey_translation_map, 0, Qnil, prefix,
3009 "Key translations", nomenu, 1, 0, 0);
3012 /* Print the (major mode) local map. */
3013 start1 = Qnil;
3014 if (!NILP (current_kboard->Voverriding_terminal_local_map))
3015 start1 = current_kboard->Voverriding_terminal_local_map;
3016 else if (!NILP (Voverriding_local_map))
3017 start1 = Voverriding_local_map;
3019 if (!NILP (start1))
3021 describe_map_tree (start1, 1, shadow, prefix,
3022 "\f\nOverriding Bindings", nomenu, 0, 0, 0);
3023 shadow = Fcons (start1, shadow);
3025 else
3027 /* Print the minor mode and major mode keymaps. */
3028 int i, nmaps;
3029 Lisp_Object *modes, *maps;
3031 /* Temporarily switch to `buffer', so that we can get that buffer's
3032 minor modes correctly. */
3033 Fset_buffer (buffer);
3035 nmaps = current_minor_maps (&modes, &maps);
3036 Fset_buffer (outbuf);
3038 start1 = get_local_map (BUF_PT (XBUFFER (buffer)),
3039 XBUFFER (buffer), Qkeymap);
3040 if (!NILP (start1))
3042 describe_map_tree (start1, 1, shadow, prefix,
3043 "\f\n`keymap' Property Bindings", nomenu,
3044 0, 0, 0);
3045 shadow = Fcons (start1, shadow);
3048 /* Print the minor mode maps. */
3049 for (i = 0; i < nmaps; i++)
3051 /* The title for a minor mode keymap
3052 is constructed at run time.
3053 We let describe_map_tree do the actual insertion
3054 because it takes care of other features when doing so. */
3055 char *title, *p;
3057 if (!SYMBOLP (modes[i]))
3058 abort();
3060 p = title = (char *) alloca (42 + SCHARS (SYMBOL_NAME (modes[i])));
3061 *p++ = '\f';
3062 *p++ = '\n';
3063 *p++ = '`';
3064 bcopy (SDATA (SYMBOL_NAME (modes[i])), p,
3065 SCHARS (SYMBOL_NAME (modes[i])));
3066 p += SCHARS (SYMBOL_NAME (modes[i]));
3067 *p++ = '\'';
3068 bcopy (" Minor Mode Bindings", p, sizeof (" Minor Mode Bindings") - 1);
3069 p += sizeof (" Minor Mode Bindings") - 1;
3070 *p = 0;
3072 describe_map_tree (maps[i], 1, shadow, prefix,
3073 title, nomenu, 0, 0, 0);
3074 shadow = Fcons (maps[i], shadow);
3077 start1 = get_local_map (BUF_PT (XBUFFER (buffer)),
3078 XBUFFER (buffer), Qlocal_map);
3079 if (!NILP (start1))
3081 if (EQ (start1, XBUFFER (buffer)->keymap))
3082 describe_map_tree (start1, 1, shadow, prefix,
3083 "\f\nMajor Mode Bindings", nomenu, 0, 0, 0);
3084 else
3085 describe_map_tree (start1, 1, shadow, prefix,
3086 "\f\n`local-map' Property Bindings",
3087 nomenu, 0, 0, 0);
3089 shadow = Fcons (start1, shadow);
3093 describe_map_tree (current_global_map, 1, shadow, prefix,
3094 "\f\nGlobal Bindings", nomenu, 0, 1, 0);
3096 /* Print the function-key-map translations under this prefix. */
3097 if (!NILP (current_kboard->Vlocal_function_key_map))
3098 describe_map_tree (current_kboard->Vlocal_function_key_map, 0, Qnil, prefix,
3099 "\f\nFunction key map translations", nomenu, 1, 0, 0);
3101 /* Print the input-decode-map translations under this prefix. */
3102 if (!NILP (current_kboard->Vinput_decode_map))
3103 describe_map_tree (current_kboard->Vinput_decode_map, 0, Qnil, prefix,
3104 "\f\nInput decoding map translations", nomenu, 1, 0, 0);
3106 UNGCPRO;
3107 return Qnil;
3110 /* Insert a description of the key bindings in STARTMAP,
3111 followed by those of all maps reachable through STARTMAP.
3112 If PARTIAL is nonzero, omit certain "uninteresting" commands
3113 (such as `undefined').
3114 If SHADOW is non-nil, it is a list of maps;
3115 don't mention keys which would be shadowed by any of them.
3116 PREFIX, if non-nil, says mention only keys that start with PREFIX.
3117 TITLE, if not 0, is a string to insert at the beginning.
3118 TITLE should not end with a colon or a newline; we supply that.
3119 If NOMENU is not 0, then omit menu-bar commands.
3121 If TRANSL is nonzero, the definitions are actually key translations
3122 so print strings and vectors differently.
3124 If ALWAYS_TITLE is nonzero, print the title even if there are no maps
3125 to look through.
3127 If MENTION_SHADOW is nonzero, then when something is shadowed by SHADOW,
3128 don't omit it; instead, mention it but say it is shadowed. */
3130 void
3131 describe_map_tree (startmap, partial, shadow, prefix, title, nomenu, transl,
3132 always_title, mention_shadow)
3133 Lisp_Object startmap, shadow, prefix;
3134 int partial;
3135 char *title;
3136 int nomenu;
3137 int transl;
3138 int always_title;
3139 int mention_shadow;
3141 Lisp_Object maps, orig_maps, seen, sub_shadows;
3142 struct gcpro gcpro1, gcpro2, gcpro3;
3143 int something = 0;
3144 char *key_heading
3145 = "\
3146 key binding\n\
3147 --- -------\n";
3149 orig_maps = maps = Faccessible_keymaps (startmap, prefix);
3150 seen = Qnil;
3151 sub_shadows = Qnil;
3152 GCPRO3 (maps, seen, sub_shadows);
3154 if (nomenu)
3156 Lisp_Object list;
3158 /* Delete from MAPS each element that is for the menu bar. */
3159 for (list = maps; CONSP (list); list = XCDR (list))
3161 Lisp_Object elt, prefix, tem;
3163 elt = XCAR (list);
3164 prefix = Fcar (elt);
3165 if (XVECTOR (prefix)->size >= 1)
3167 tem = Faref (prefix, make_number (0));
3168 if (EQ (tem, Qmenu_bar))
3169 maps = Fdelq (elt, maps);
3174 if (!NILP (maps) || always_title)
3176 if (title)
3178 insert_string (title);
3179 if (!NILP (prefix))
3181 insert_string (" Starting With ");
3182 insert1 (Fkey_description (prefix, Qnil));
3184 insert_string (":\n");
3186 insert_string (key_heading);
3187 something = 1;
3190 for (; CONSP (maps); maps = XCDR (maps))
3192 register Lisp_Object elt, prefix, tail;
3194 elt = XCAR (maps);
3195 prefix = Fcar (elt);
3197 sub_shadows = Qnil;
3199 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
3201 Lisp_Object shmap;
3203 shmap = XCAR (tail);
3205 /* If the sequence by which we reach this keymap is zero-length,
3206 then the shadow map for this keymap is just SHADOW. */
3207 if ((STRINGP (prefix) && SCHARS (prefix) == 0)
3208 || (VECTORP (prefix) && XVECTOR (prefix)->size == 0))
3210 /* If the sequence by which we reach this keymap actually has
3211 some elements, then the sequence's definition in SHADOW is
3212 what we should use. */
3213 else
3215 shmap = Flookup_key (shmap, Fcar (elt), Qt);
3216 if (INTEGERP (shmap))
3217 shmap = Qnil;
3220 /* If shmap is not nil and not a keymap,
3221 it completely shadows this map, so don't
3222 describe this map at all. */
3223 if (!NILP (shmap) && !KEYMAPP (shmap))
3224 goto skip;
3226 if (!NILP (shmap))
3227 sub_shadows = Fcons (shmap, sub_shadows);
3230 /* Maps we have already listed in this loop shadow this map. */
3231 for (tail = orig_maps; !EQ (tail, maps); tail = XCDR (tail))
3233 Lisp_Object tem;
3234 tem = Fequal (Fcar (XCAR (tail)), prefix);
3235 if (!NILP (tem))
3236 sub_shadows = Fcons (XCDR (XCAR (tail)), sub_shadows);
3239 describe_map (Fcdr (elt), prefix,
3240 transl ? describe_translation : describe_command,
3241 partial, sub_shadows, &seen, nomenu, mention_shadow);
3243 skip: ;
3246 if (something)
3247 insert_string ("\n");
3249 UNGCPRO;
3252 static int previous_description_column;
3254 static void
3255 describe_command (definition, args)
3256 Lisp_Object definition, args;
3258 register Lisp_Object tem1;
3259 int column = (int) current_column (); /* iftc */
3260 int description_column;
3262 /* If column 16 is no good, go to col 32;
3263 but don't push beyond that--go to next line instead. */
3264 if (column > 30)
3266 insert_char ('\n');
3267 description_column = 32;
3269 else if (column > 14 || (column > 10 && previous_description_column == 32))
3270 description_column = 32;
3271 else
3272 description_column = 16;
3274 Findent_to (make_number (description_column), make_number (1));
3275 previous_description_column = description_column;
3277 if (SYMBOLP (definition))
3279 tem1 = SYMBOL_NAME (definition);
3280 insert1 (tem1);
3281 insert_string ("\n");
3283 else if (STRINGP (definition) || VECTORP (definition))
3284 insert_string ("Keyboard Macro\n");
3285 else if (KEYMAPP (definition))
3286 insert_string ("Prefix Command\n");
3287 else
3288 insert_string ("??\n");
3291 static void
3292 describe_translation (definition, args)
3293 Lisp_Object definition, args;
3295 register Lisp_Object tem1;
3297 Findent_to (make_number (16), make_number (1));
3299 if (SYMBOLP (definition))
3301 tem1 = SYMBOL_NAME (definition);
3302 insert1 (tem1);
3303 insert_string ("\n");
3305 else if (STRINGP (definition) || VECTORP (definition))
3307 insert1 (Fkey_description (definition, Qnil));
3308 insert_string ("\n");
3310 else if (KEYMAPP (definition))
3311 insert_string ("Prefix Command\n");
3312 else
3313 insert_string ("??\n");
3316 /* describe_map puts all the usable elements of a sparse keymap
3317 into an array of `struct describe_map_elt',
3318 then sorts them by the events. */
3320 struct describe_map_elt { Lisp_Object event; Lisp_Object definition; int shadowed; };
3322 /* qsort comparison function for sorting `struct describe_map_elt' by
3323 the event field. */
3325 static int
3326 describe_map_compare (aa, bb)
3327 const void *aa, *bb;
3329 const struct describe_map_elt *a = aa, *b = bb;
3330 if (INTEGERP (a->event) && INTEGERP (b->event))
3331 return ((XINT (a->event) > XINT (b->event))
3332 - (XINT (a->event) < XINT (b->event)));
3333 if (!INTEGERP (a->event) && INTEGERP (b->event))
3334 return 1;
3335 if (INTEGERP (a->event) && !INTEGERP (b->event))
3336 return -1;
3337 if (SYMBOLP (a->event) && SYMBOLP (b->event))
3338 return (!NILP (Fstring_lessp (a->event, b->event)) ? -1
3339 : !NILP (Fstring_lessp (b->event, a->event)) ? 1
3340 : 0);
3341 return 0;
3344 /* Describe the contents of map MAP, assuming that this map itself is
3345 reached by the sequence of prefix keys PREFIX (a string or vector).
3346 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
3348 static void
3349 describe_map (map, prefix, elt_describer, partial, shadow,
3350 seen, nomenu, mention_shadow)
3351 register Lisp_Object map;
3352 Lisp_Object prefix;
3353 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object));
3354 int partial;
3355 Lisp_Object shadow;
3356 Lisp_Object *seen;
3357 int nomenu;
3358 int mention_shadow;
3360 Lisp_Object tail, definition, event;
3361 Lisp_Object tem;
3362 Lisp_Object suppress;
3363 Lisp_Object kludge;
3364 int first = 1;
3365 struct gcpro gcpro1, gcpro2, gcpro3;
3367 /* These accumulate the values from sparse keymap bindings,
3368 so we can sort them and handle them in order. */
3369 int length_needed = 0;
3370 struct describe_map_elt *vect;
3371 int slots_used = 0;
3372 int i;
3374 suppress = Qnil;
3376 if (partial)
3377 suppress = intern ("suppress-keymap");
3379 /* This vector gets used to present single keys to Flookup_key. Since
3380 that is done once per keymap element, we don't want to cons up a
3381 fresh vector every time. */
3382 kludge = Fmake_vector (make_number (1), Qnil);
3383 definition = Qnil;
3385 for (tail = map; CONSP (tail); tail = XCDR (tail))
3386 length_needed++;
3388 vect = ((struct describe_map_elt *)
3389 alloca (sizeof (struct describe_map_elt) * length_needed));
3391 GCPRO3 (prefix, definition, kludge);
3393 for (tail = map; CONSP (tail); tail = XCDR (tail))
3395 QUIT;
3397 if (VECTORP (XCAR (tail))
3398 || CHAR_TABLE_P (XCAR (tail)))
3399 describe_vector (XCAR (tail),
3400 prefix, Qnil, elt_describer, partial, shadow, map,
3401 (int *)0, 0, 1, mention_shadow);
3402 else if (CONSP (XCAR (tail)))
3404 int this_shadowed = 0;
3406 event = XCAR (XCAR (tail));
3408 /* Ignore bindings whose "prefix" are not really valid events.
3409 (We get these in the frames and buffers menu.) */
3410 if (!(SYMBOLP (event) || INTEGERP (event)))
3411 continue;
3413 if (nomenu && EQ (event, Qmenu_bar))
3414 continue;
3416 definition = get_keyelt (XCDR (XCAR (tail)), 0);
3418 /* Don't show undefined commands or suppressed commands. */
3419 if (NILP (definition)) continue;
3420 if (SYMBOLP (definition) && partial)
3422 tem = Fget (definition, suppress);
3423 if (!NILP (tem))
3424 continue;
3427 /* Don't show a command that isn't really visible
3428 because a local definition of the same key shadows it. */
3430 ASET (kludge, 0, event);
3431 if (!NILP (shadow))
3433 tem = shadow_lookup (shadow, kludge, Qt);
3434 if (!NILP (tem))
3436 /* If both bindings are keymaps, this key is a prefix key,
3437 so don't say it is shadowed. */
3438 if (KEYMAPP (definition) && KEYMAPP (tem))
3440 /* Avoid generating duplicate entries if the
3441 shadowed binding has the same definition. */
3442 else if (mention_shadow && !EQ (tem, definition))
3443 this_shadowed = 1;
3444 else
3445 continue;
3449 tem = Flookup_key (map, kludge, Qt);
3450 if (!EQ (tem, definition)) continue;
3452 vect[slots_used].event = event;
3453 vect[slots_used].definition = definition;
3454 vect[slots_used].shadowed = this_shadowed;
3455 slots_used++;
3457 else if (EQ (XCAR (tail), Qkeymap))
3459 /* The same keymap might be in the structure twice, if we're
3460 using an inherited keymap. So skip anything we've already
3461 encountered. */
3462 tem = Fassq (tail, *seen);
3463 if (CONSP (tem) && !NILP (Fequal (XCAR (tem), prefix)))
3464 break;
3465 *seen = Fcons (Fcons (tail, prefix), *seen);
3469 /* If we found some sparse map events, sort them. */
3471 qsort (vect, slots_used, sizeof (struct describe_map_elt),
3472 describe_map_compare);
3474 /* Now output them in sorted order. */
3476 for (i = 0; i < slots_used; i++)
3478 Lisp_Object start, end;
3480 if (first)
3482 previous_description_column = 0;
3483 insert ("\n", 1);
3484 first = 0;
3487 ASET (kludge, 0, vect[i].event);
3488 start = vect[i].event;
3489 end = start;
3491 definition = vect[i].definition;
3493 /* Find consecutive chars that are identically defined. */
3494 if (INTEGERP (vect[i].event))
3496 while (i + 1 < slots_used
3497 && EQ (vect[i+1].event, make_number (XINT (vect[i].event) + 1))
3498 && !NILP (Fequal (vect[i + 1].definition, definition))
3499 && vect[i].shadowed == vect[i + 1].shadowed)
3500 i++;
3501 end = vect[i].event;
3504 /* Now START .. END is the range to describe next. */
3506 /* Insert the string to describe the event START. */
3507 insert1 (Fkey_description (kludge, prefix));
3509 if (!EQ (start, end))
3511 insert (" .. ", 4);
3513 ASET (kludge, 0, end);
3514 /* Insert the string to describe the character END. */
3515 insert1 (Fkey_description (kludge, prefix));
3518 /* Print a description of the definition of this character.
3519 elt_describer will take care of spacing out far enough
3520 for alignment purposes. */
3521 (*elt_describer) (vect[i].definition, Qnil);
3523 if (vect[i].shadowed)
3525 SET_PT (PT - 1);
3526 insert_string ("\n (that binding is currently shadowed by another mode)");
3527 SET_PT (PT + 1);
3531 UNGCPRO;
3534 static void
3535 describe_vector_princ (elt, fun)
3536 Lisp_Object elt, fun;
3538 Findent_to (make_number (16), make_number (1));
3539 call1 (fun, elt);
3540 Fterpri (Qnil);
3543 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0,
3544 doc: /* Insert a description of contents of VECTOR.
3545 This is text showing the elements of vector matched against indices.
3546 DESCRIBER is the output function used; nil means use `princ'. */)
3547 (vector, describer)
3548 Lisp_Object vector, describer;
3550 int count = SPECPDL_INDEX ();
3551 if (NILP (describer))
3552 describer = intern ("princ");
3553 specbind (Qstandard_output, Fcurrent_buffer ());
3554 CHECK_VECTOR_OR_CHAR_TABLE (vector);
3555 describe_vector (vector, Qnil, describer, describe_vector_princ, 0,
3556 Qnil, Qnil, (int *)0, 0, 0, 0);
3558 return unbind_to (count, Qnil);
3561 /* Insert in the current buffer a description of the contents of VECTOR.
3562 We call ELT_DESCRIBER to insert the description of one value found
3563 in VECTOR.
3565 ELT_PREFIX describes what "comes before" the keys or indices defined
3566 by this vector. This is a human-readable string whose size
3567 is not necessarily related to the situation.
3569 If the vector is in a keymap, ELT_PREFIX is a prefix key which
3570 leads to this keymap.
3572 If the vector is a chartable, ELT_PREFIX is the vector
3573 of bytes that lead to the character set or portion of a character
3574 set described by this chartable.
3576 If PARTIAL is nonzero, it means do not mention suppressed commands
3577 (that assumes the vector is in a keymap).
3579 SHADOW is a list of keymaps that shadow this map.
3580 If it is non-nil, then we look up the key in those maps
3581 and we don't mention it now if it is defined by any of them.
3583 ENTIRE_MAP is the keymap in which this vector appears.
3584 If the definition in effect in the whole map does not match
3585 the one in this vector, we ignore this one.
3587 ARGS is simply passed as the second argument to ELT_DESCRIBER.
3589 INDICES and CHAR_TABLE_DEPTH are ignored. They will be removed in
3590 the near future.
3592 KEYMAP_P is 1 if vector is known to be a keymap, so map ESC to M-.
3594 ARGS is simply passed as the second argument to ELT_DESCRIBER. */
3596 static void
3597 describe_vector (vector, prefix, args, elt_describer,
3598 partial, shadow, entire_map,
3599 indices, char_table_depth, keymap_p,
3600 mention_shadow)
3601 register Lisp_Object vector;
3602 Lisp_Object prefix, args;
3603 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object));
3604 int partial;
3605 Lisp_Object shadow;
3606 Lisp_Object entire_map;
3607 int *indices;
3608 int char_table_depth;
3609 int keymap_p;
3610 int mention_shadow;
3612 Lisp_Object definition;
3613 Lisp_Object tem2;
3614 Lisp_Object elt_prefix = Qnil;
3615 int i;
3616 Lisp_Object suppress;
3617 Lisp_Object kludge;
3618 int first = 1;
3619 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3620 /* Range of elements to be handled. */
3621 int from, to;
3622 Lisp_Object character;
3623 int starting_i;
3625 suppress = Qnil;
3627 definition = Qnil;
3629 if (!keymap_p)
3631 /* Call Fkey_description first, to avoid GC bug for the other string. */
3632 if (!NILP (prefix) && XFASTINT (Flength (prefix)) > 0)
3634 Lisp_Object tem;
3635 tem = Fkey_description (prefix, Qnil);
3636 elt_prefix = concat2 (tem, build_string (" "));
3638 prefix = Qnil;
3641 /* This vector gets used to present single keys to Flookup_key. Since
3642 that is done once per vector element, we don't want to cons up a
3643 fresh vector every time. */
3644 kludge = Fmake_vector (make_number (1), Qnil);
3645 GCPRO4 (elt_prefix, prefix, definition, kludge);
3647 if (partial)
3648 suppress = intern ("suppress-keymap");
3650 from = 0;
3651 to = CHAR_TABLE_P (vector) ? MAX_CHAR + 1 : XVECTOR (vector)->size;
3653 for (i = from; i < to; i++)
3655 int this_shadowed = 0;
3656 int range_beg, range_end;
3657 Lisp_Object val;
3659 QUIT;
3661 starting_i = i;
3663 if (CHAR_TABLE_P (vector))
3664 val = char_table_ref_and_range (vector, i, &range_beg, &i);
3665 else
3666 val = AREF (vector, i);
3667 definition = get_keyelt (val, 0);
3669 if (NILP (definition)) continue;
3671 /* Don't mention suppressed commands. */
3672 if (SYMBOLP (definition) && partial)
3674 Lisp_Object tem;
3676 tem = Fget (definition, suppress);
3678 if (!NILP (tem)) continue;
3681 character = make_number (starting_i);
3682 ASET (kludge, 0, character);
3684 /* If this binding is shadowed by some other map, ignore it. */
3685 if (!NILP (shadow))
3687 Lisp_Object tem;
3689 tem = shadow_lookup (shadow, kludge, Qt);
3691 if (!NILP (tem))
3693 if (mention_shadow)
3694 this_shadowed = 1;
3695 else
3696 continue;
3700 /* Ignore this definition if it is shadowed by an earlier
3701 one in the same keymap. */
3702 if (!NILP (entire_map))
3704 Lisp_Object tem;
3706 tem = Flookup_key (entire_map, kludge, Qt);
3708 if (!EQ (tem, definition))
3709 continue;
3712 if (first)
3714 insert ("\n", 1);
3715 first = 0;
3718 /* Output the prefix that applies to every entry in this map. */
3719 if (!NILP (elt_prefix))
3720 insert1 (elt_prefix);
3722 insert1 (Fkey_description (kludge, prefix));
3724 /* Find all consecutive characters or rows that have the same
3725 definition. But, for elements of a top level char table, if
3726 they are for charsets, we had better describe one by one even
3727 if they have the same definition. */
3728 if (CHAR_TABLE_P (vector))
3729 while (i + 1 < to
3730 && (val = char_table_ref_and_range (vector, i + 1,
3731 &range_beg, &range_end),
3732 tem2 = get_keyelt (val, 0),
3733 !NILP (tem2))
3734 && !NILP (Fequal (tem2, definition)))
3735 i = range_end;
3736 else
3737 while (i + 1 < to
3738 && (tem2 = get_keyelt (AREF (vector, i + 1), 0),
3739 !NILP (tem2))
3740 && !NILP (Fequal (tem2, definition)))
3741 i++;
3743 /* If we have a range of more than one character,
3744 print where the range reaches to. */
3746 if (i != starting_i)
3748 insert (" .. ", 4);
3750 ASET (kludge, 0, make_number (i));
3752 if (!NILP (elt_prefix))
3753 insert1 (elt_prefix);
3755 insert1 (Fkey_description (kludge, prefix));
3758 /* Print a description of the definition of this character.
3759 elt_describer will take care of spacing out far enough
3760 for alignment purposes. */
3761 (*elt_describer) (definition, args);
3763 if (this_shadowed)
3765 SET_PT (PT - 1);
3766 insert_string (" (binding currently shadowed)");
3767 SET_PT (PT + 1);
3771 if (CHAR_TABLE_P (vector) && ! NILP (XCHAR_TABLE (vector)->defalt))
3773 if (!NILP (elt_prefix))
3774 insert1 (elt_prefix);
3775 insert ("default", 7);
3776 (*elt_describer) (XCHAR_TABLE (vector)->defalt, args);
3779 UNGCPRO;
3782 /* Apropos - finding all symbols whose names match a regexp. */
3783 static Lisp_Object apropos_predicate;
3784 static Lisp_Object apropos_accumulate;
3786 static void
3787 apropos_accum (symbol, string)
3788 Lisp_Object symbol, string;
3790 register Lisp_Object tem;
3792 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
3793 if (!NILP (tem) && !NILP (apropos_predicate))
3794 tem = call1 (apropos_predicate, symbol);
3795 if (!NILP (tem))
3796 apropos_accumulate = Fcons (symbol, apropos_accumulate);
3799 DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
3800 doc: /* Show all symbols whose names contain match for REGEXP.
3801 If optional 2nd arg PREDICATE is non-nil, (funcall PREDICATE SYMBOL) is done
3802 for each symbol and a symbol is mentioned only if that returns non-nil.
3803 Return list of symbols found. */)
3804 (regexp, predicate)
3805 Lisp_Object regexp, predicate;
3807 Lisp_Object tem;
3808 CHECK_STRING (regexp);
3809 apropos_predicate = predicate;
3810 apropos_accumulate = Qnil;
3811 map_obarray (Vobarray, apropos_accum, regexp);
3812 tem = Fsort (apropos_accumulate, Qstring_lessp);
3813 apropos_accumulate = Qnil;
3814 apropos_predicate = Qnil;
3815 return tem;
3818 void
3819 syms_of_keymap ()
3821 Qkeymap = intern ("keymap");
3822 staticpro (&Qkeymap);
3823 staticpro (&apropos_predicate);
3824 staticpro (&apropos_accumulate);
3825 apropos_predicate = Qnil;
3826 apropos_accumulate = Qnil;
3828 /* Now we are ready to set up this property, so we can
3829 create char tables. */
3830 Fput (Qkeymap, Qchar_table_extra_slots, make_number (0));
3832 /* Initialize the keymaps standardly used.
3833 Each one is the value of a Lisp variable, and is also
3834 pointed to by a C variable */
3836 global_map = Fmake_keymap (Qnil);
3837 Fset (intern ("global-map"), global_map);
3839 current_global_map = global_map;
3840 staticpro (&global_map);
3841 staticpro (&current_global_map);
3843 meta_map = Fmake_keymap (Qnil);
3844 Fset (intern ("esc-map"), meta_map);
3845 Ffset (intern ("ESC-prefix"), meta_map);
3847 control_x_map = Fmake_keymap (Qnil);
3848 Fset (intern ("ctl-x-map"), control_x_map);
3849 Ffset (intern ("Control-X-prefix"), control_x_map);
3851 exclude_keys
3852 = Fcons (Fcons (build_string ("DEL"), build_string ("\\d")),
3853 Fcons (Fcons (build_string ("TAB"), build_string ("\\t")),
3854 Fcons (Fcons (build_string ("RET"), build_string ("\\r")),
3855 Fcons (Fcons (build_string ("ESC"), build_string ("\\e")),
3856 Fcons (Fcons (build_string ("SPC"), build_string (" ")),
3857 Qnil)))));
3858 staticpro (&exclude_keys);
3860 DEFVAR_LISP ("define-key-rebound-commands", &Vdefine_key_rebound_commands,
3861 doc: /* List of commands given new key bindings recently.
3862 This is used for internal purposes during Emacs startup;
3863 don't alter it yourself. */);
3864 Vdefine_key_rebound_commands = Qt;
3866 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map,
3867 doc: /* Default keymap to use when reading from the minibuffer. */);
3868 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
3870 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
3871 doc: /* Local keymap for the minibuffer when spaces are not allowed. */);
3872 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
3873 Fset_keymap_parent (Vminibuffer_local_ns_map, Vminibuffer_local_map);
3875 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
3876 doc: /* Local keymap for minibuffer input with completion. */);
3877 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
3878 Fset_keymap_parent (Vminibuffer_local_completion_map, Vminibuffer_local_map);
3880 DEFVAR_LISP ("minibuffer-local-filename-completion-map",
3881 &Vminibuffer_local_filename_completion_map,
3882 doc: /* Local keymap for minibuffer input with completion for filenames. */);
3883 Vminibuffer_local_filename_completion_map = Fmake_sparse_keymap (Qnil);
3884 Fset_keymap_parent (Vminibuffer_local_filename_completion_map,
3885 Vminibuffer_local_completion_map);
3888 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map,
3889 doc: /* Local keymap for minibuffer input with completion, for exact match. */);
3890 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
3891 Fset_keymap_parent (Vminibuffer_local_must_match_map,
3892 Vminibuffer_local_completion_map);
3894 DEFVAR_LISP ("minibuffer-local-must-match-filename-map",
3895 &Vminibuffer_local_must_match_filename_map,
3896 doc: /* Local keymap for minibuffer input with completion for filenames with exact match. */);
3897 Vminibuffer_local_must_match_filename_map = Fmake_sparse_keymap (Qnil);
3898 Fset_keymap_parent (Vminibuffer_local_must_match_filename_map,
3899 Vminibuffer_local_must_match_map);
3901 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
3902 doc: /* Alist of keymaps to use for minor modes.
3903 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read
3904 key sequences and look up bindings if VARIABLE's value is non-nil.
3905 If two active keymaps bind the same key, the keymap appearing earlier
3906 in the list takes precedence. */);
3907 Vminor_mode_map_alist = Qnil;
3909 DEFVAR_LISP ("minor-mode-overriding-map-alist", &Vminor_mode_overriding_map_alist,
3910 doc: /* Alist of keymaps to use for minor modes, in current major mode.
3911 This variable is an alist just like `minor-mode-map-alist', and it is
3912 used the same way (and before `minor-mode-map-alist'); however,
3913 it is provided for major modes to bind locally. */);
3914 Vminor_mode_overriding_map_alist = Qnil;
3916 DEFVAR_LISP ("emulation-mode-map-alists", &Vemulation_mode_map_alists,
3917 doc: /* List of keymap alists to use for emulations modes.
3918 It is intended for modes or packages using multiple minor-mode keymaps.
3919 Each element is a keymap alist just like `minor-mode-map-alist', or a
3920 symbol with a variable binding which is a keymap alist, and it is used
3921 the same way. The "active" keymaps in each alist are used before
3922 `minor-mode-map-alist' and `minor-mode-overriding-map-alist'. */);
3923 Vemulation_mode_map_alists = Qnil;
3925 staticpro (&Vmouse_events);
3926 Vmouse_events = Fcons (intern ("menu-bar"),
3927 Fcons (intern ("tool-bar"),
3928 Fcons (intern ("header-line"),
3929 Fcons (intern ("mode-line"),
3930 Fcons (intern ("mouse-1"),
3931 Fcons (intern ("mouse-2"),
3932 Fcons (intern ("mouse-3"),
3933 Fcons (intern ("mouse-4"),
3934 Fcons (intern ("mouse-5"),
3935 Qnil)))))))));
3938 Qsingle_key_description = intern ("single-key-description");
3939 staticpro (&Qsingle_key_description);
3941 Qkey_description = intern ("key-description");
3942 staticpro (&Qkey_description);
3944 Qkeymapp = intern ("keymapp");
3945 staticpro (&Qkeymapp);
3947 Qnon_ascii = intern ("non-ascii");
3948 staticpro (&Qnon_ascii);
3950 Qmenu_item = intern ("menu-item");
3951 staticpro (&Qmenu_item);
3953 Qremap = intern ("remap");
3954 staticpro (&Qremap);
3956 command_remapping_vector = Fmake_vector (make_number (2), Qremap);
3957 staticpro (&command_remapping_vector);
3959 where_is_cache_keymaps = Qt;
3960 where_is_cache = Qnil;
3961 staticpro (&where_is_cache);
3962 staticpro (&where_is_cache_keymaps);
3964 defsubr (&Skeymapp);
3965 defsubr (&Skeymap_parent);
3966 defsubr (&Skeymap_prompt);
3967 defsubr (&Sset_keymap_parent);
3968 defsubr (&Smake_keymap);
3969 defsubr (&Smake_sparse_keymap);
3970 defsubr (&Smap_keymap);
3971 defsubr (&Scopy_keymap);
3972 defsubr (&Scommand_remapping);
3973 defsubr (&Skey_binding);
3974 defsubr (&Slocal_key_binding);
3975 defsubr (&Sglobal_key_binding);
3976 defsubr (&Sminor_mode_key_binding);
3977 defsubr (&Sdefine_key);
3978 defsubr (&Slookup_key);
3979 defsubr (&Sdefine_prefix_command);
3980 defsubr (&Suse_global_map);
3981 defsubr (&Suse_local_map);
3982 defsubr (&Scurrent_local_map);
3983 defsubr (&Scurrent_global_map);
3984 defsubr (&Scurrent_minor_mode_maps);
3985 defsubr (&Scurrent_active_maps);
3986 defsubr (&Saccessible_keymaps);
3987 defsubr (&Skey_description);
3988 defsubr (&Sdescribe_vector);
3989 defsubr (&Ssingle_key_description);
3990 defsubr (&Stext_char_description);
3991 defsubr (&Swhere_is_internal);
3992 defsubr (&Sdescribe_buffer_bindings);
3993 defsubr (&Sapropos_internal);
3996 void
3997 keys_of_keymap ()
3999 initial_define_key (global_map, 033, "ESC-prefix");
4000 initial_define_key (global_map, Ctl('X'), "Control-X-prefix");
4003 /* arch-tag: 6dd15c26-7cf1-41c4-b904-f42f7ddda463
4004 (do not change this comment) */