Move VC-Dired code from vc.el to vc-dispatcher.el.
[emacs.git] / src / keymap.c
blob814d9e09a14a19a08e8c2e28a5dc09f161b49598
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 for (tail = XCDR (map);
567 (CONSP (tail)
568 || (tail = get_keymap (tail, 0, autoload), CONSP (tail)));
569 tail = XCDR (tail))
571 Lisp_Object binding;
573 binding = XCAR (tail);
574 if (SYMBOLP (binding))
576 /* If NOINHERIT, stop finding prefix definitions
577 after we pass a second occurrence of the `keymap' symbol. */
578 if (noinherit && EQ (binding, Qkeymap))
579 RETURN_UNGCPRO (Qnil);
581 else if (CONSP (binding))
583 Lisp_Object key = XCAR (binding);
585 if (EQ (key, idx))
586 val = XCDR (binding);
587 else if (t_ok && EQ (key, Qt))
589 t_binding = XCDR (binding);
590 t_ok = 0;
593 else if (VECTORP (binding))
595 if (NATNUMP (idx) && XFASTINT (idx) < ASIZE (binding))
596 val = AREF (binding, XFASTINT (idx));
598 else if (CHAR_TABLE_P (binding))
600 /* Character codes with modifiers
601 are not included in a char-table.
602 All character codes without modifiers are included. */
603 if (NATNUMP (idx) && (XFASTINT (idx) & CHAR_MODIFIER_MASK) == 0)
605 val = Faref (binding, idx);
606 /* `nil' has a special meaning for char-tables, so
607 we use something else to record an explicitly
608 unbound entry. */
609 if (NILP (val))
610 val = Qunbound;
614 /* If we found a binding, clean it up and return it. */
615 if (!EQ (val, Qunbound))
617 if (EQ (val, Qt))
618 /* A Qt binding is just like an explicit nil binding
619 (i.e. it shadows any parent binding but not bindings in
620 keymaps of lower precedence). */
621 val = Qnil;
622 val = get_keyelt (val, autoload);
623 if (KEYMAPP (val))
624 fix_submap_inheritance (map, idx, val);
625 RETURN_UNGCPRO (val);
627 QUIT;
629 UNGCPRO;
630 return get_keyelt (t_binding, autoload);
634 static void
635 map_keymap_item (fun, args, key, val, data)
636 map_keymap_function_t fun;
637 Lisp_Object args, key, val;
638 void *data;
640 /* We should maybe try to detect bindings shadowed by previous
641 ones and things like that. */
642 if (EQ (val, Qt))
643 val = Qnil;
644 (*fun) (key, val, args, data);
647 static void
648 map_keymap_char_table_item (args, key, val)
649 Lisp_Object args, key, val;
651 if (!NILP (val))
653 map_keymap_function_t fun = XSAVE_VALUE (XCAR (args))->pointer;
654 args = XCDR (args);
655 map_keymap_item (fun, XCDR (args), key, val,
656 XSAVE_VALUE (XCAR (args))->pointer);
660 /* Call FUN for every binding in MAP and stop at (and return) the parent.
661 FUN is called with 4 arguments: FUN (KEY, BINDING, ARGS, DATA). */
662 Lisp_Object
663 map_keymap_internal (Lisp_Object map,
664 map_keymap_function_t fun,
665 Lisp_Object args,
666 void *data)
668 struct gcpro gcpro1, gcpro2, gcpro3;
669 Lisp_Object tail
670 = (CONSP (map) && EQ (Qkeymap, XCAR (map))) ? XCDR (map) : map;
672 GCPRO3 (map, args, tail);
673 for (; CONSP (tail) && !EQ (Qkeymap, XCAR (tail)); tail = XCDR (tail))
675 Lisp_Object binding = XCAR (tail);
677 if (CONSP (binding))
678 map_keymap_item (fun, args, XCAR (binding), XCDR (binding), data);
679 else if (VECTORP (binding))
681 /* Loop over the char values represented in the vector. */
682 int len = ASIZE (binding);
683 int c;
684 for (c = 0; c < len; c++)
686 Lisp_Object character;
687 XSETFASTINT (character, c);
688 map_keymap_item (fun, args, character, AREF (binding, c), data);
691 else if (CHAR_TABLE_P (binding))
693 map_char_table (map_keymap_char_table_item, Qnil, binding,
694 Fcons (make_save_value (fun, 0),
695 Fcons (make_save_value (data, 0),
696 args)));
699 UNGCPRO;
700 return tail;
703 static void
704 map_keymap_call (key, val, fun, dummy)
705 Lisp_Object key, val, fun;
706 void *dummy;
708 call2 (fun, key, val);
711 /* Same as map_keymap_internal, but doesn't traverses parent keymaps as well.
712 A non-zero AUTOLOAD indicates that autoloaded keymaps should be loaded. */
713 void
714 map_keymap (map, fun, args, data, autoload)
715 map_keymap_function_t fun;
716 Lisp_Object map, args;
717 void *data;
718 int autoload;
720 struct gcpro gcpro1;
721 GCPRO1 (args);
722 map = get_keymap (map, 1, autoload);
723 while (CONSP (map))
725 map = map_keymap_internal (map, fun, args, data);
726 map = get_keymap (map, 0, autoload);
728 UNGCPRO;
731 Lisp_Object Qkeymap_canonicalize;
733 /* Same as map_keymap, but does it right, properly eliminating duplicate
734 bindings due to inheritance. */
735 void
736 map_keymap_canonical (map, fun, args, data)
737 map_keymap_function_t fun;
738 Lisp_Object map, args;
739 void *data;
741 struct gcpro gcpro1;
742 GCPRO1 (args);
743 /* map_keymap_canonical may be used from redisplay (e.g. when building menus)
744 so be careful to ignore errors and to inhibit redisplay. */
745 map = safe_call1 (Qkeymap_canonicalize, map);
746 /* No need to use `map_keymap' here because canonical map has no parent. */
747 map_keymap_internal (map, fun, args, data);
748 UNGCPRO;
751 DEFUN ("map-keymap-internal", Fmap_keymap_internal, Smap_keymap_internal, 2, 2, 0,
752 doc: /* Call FUNCTION once for each event binding in KEYMAP.
753 FUNCTION is called with two arguments: the event that is bound, and
754 the definition it is bound to. The event may be a character range.
755 If KEYMAP has a parent, this function returns it without processing it. */)
756 (function, keymap)
757 Lisp_Object function, keymap;
759 struct gcpro gcpro1;
760 GCPRO1 (function);
761 keymap = get_keymap (keymap, 1, 1);
762 keymap = map_keymap_internal (keymap, map_keymap_call, function, NULL);
763 UNGCPRO;
764 return keymap;
767 DEFUN ("map-keymap", Fmap_keymap, Smap_keymap, 2, 3, 0,
768 doc: /* Call FUNCTION once for each event binding in KEYMAP.
769 FUNCTION is called with two arguments: the event that is bound, and
770 the definition it is bound to. The event may be a character range.
772 If KEYMAP has a parent, the parent's bindings are included as well.
773 This works recursively: if the parent has itself a parent, then the
774 grandparent's bindings are also included and so on.
775 usage: (map-keymap FUNCTION KEYMAP) */)
776 (function, keymap, sort_first)
777 Lisp_Object function, keymap, sort_first;
779 if (! NILP (sort_first))
780 return call2 (intern ("map-keymap-sorted"), function, keymap);
782 map_keymap (keymap, map_keymap_call, function, NULL, 1);
783 return Qnil;
786 /* Given OBJECT which was found in a slot in a keymap,
787 trace indirect definitions to get the actual definition of that slot.
788 An indirect definition is a list of the form
789 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
790 and INDEX is the object to look up in KEYMAP to yield the definition.
792 Also if OBJECT has a menu string as the first element,
793 remove that. Also remove a menu help string as second element.
795 If AUTOLOAD is nonzero, load autoloadable keymaps
796 that are referred to with indirection.
798 This can GC because menu_item_eval_property calls Feval. */
800 Lisp_Object
801 get_keyelt (object, autoload)
802 Lisp_Object object;
803 int autoload;
805 while (1)
807 if (!(CONSP (object)))
808 /* This is really the value. */
809 return object;
811 /* If the keymap contents looks like (keymap ...) or (lambda ...)
812 then use itself. */
813 else if (EQ (XCAR (object), Qkeymap) || EQ (XCAR (object), Qlambda))
814 return object;
816 /* If the keymap contents looks like (menu-item name . DEFN)
817 or (menu-item name DEFN ...) then use DEFN.
818 This is a new format menu item. */
819 else if (EQ (XCAR (object), Qmenu_item))
821 if (CONSP (XCDR (object)))
823 Lisp_Object tem;
825 object = XCDR (XCDR (object));
826 tem = object;
827 if (CONSP (object))
828 object = XCAR (object);
830 /* If there's a `:filter FILTER', apply FILTER to the
831 menu-item's definition to get the real definition to
832 use. */
833 for (; CONSP (tem) && CONSP (XCDR (tem)); tem = XCDR (tem))
834 if (EQ (XCAR (tem), QCfilter) && autoload)
836 Lisp_Object filter;
837 filter = XCAR (XCDR (tem));
838 filter = list2 (filter, list2 (Qquote, object));
839 object = menu_item_eval_property (filter);
840 break;
843 else
844 /* Invalid keymap. */
845 return object;
848 /* If the keymap contents looks like (STRING . DEFN), use DEFN.
849 Keymap alist elements like (CHAR MENUSTRING . DEFN)
850 will be used by HierarKey menus. */
851 else if (STRINGP (XCAR (object)))
853 object = XCDR (object);
854 /* Also remove a menu help string, if any,
855 following the menu item name. */
856 if (CONSP (object) && STRINGP (XCAR (object)))
857 object = XCDR (object);
858 /* Also remove the sublist that caches key equivalences, if any. */
859 if (CONSP (object) && CONSP (XCAR (object)))
861 Lisp_Object carcar;
862 carcar = XCAR (XCAR (object));
863 if (NILP (carcar) || VECTORP (carcar))
864 object = XCDR (object);
868 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
869 else
871 struct gcpro gcpro1;
872 Lisp_Object map;
873 GCPRO1 (object);
874 map = get_keymap (Fcar_safe (object), 0, autoload);
875 UNGCPRO;
876 return (!CONSP (map) ? object /* Invalid keymap */
877 : access_keymap (map, Fcdr (object), 0, 0, autoload));
882 static Lisp_Object
883 store_in_keymap (keymap, idx, def)
884 Lisp_Object keymap;
885 register Lisp_Object idx;
886 Lisp_Object def;
888 /* Flush any reverse-map cache. */
889 where_is_cache = Qnil;
890 where_is_cache_keymaps = Qt;
892 /* If we are preparing to dump, and DEF is a menu element
893 with a menu item indicator, copy it to ensure it is not pure. */
894 if (CONSP (def) && PURE_P (def)
895 && (EQ (XCAR (def), Qmenu_item) || STRINGP (XCAR (def))))
896 def = Fcons (XCAR (def), XCDR (def));
898 if (!CONSP (keymap) || !EQ (XCAR (keymap), Qkeymap))
899 error ("attempt to define a key in a non-keymap");
901 /* If idx is a cons, and the car part is a character, idx must be of
902 the form (FROM-CHAR . TO-CHAR). */
903 if (CONSP (idx) && CHARACTERP (XCAR (idx)))
904 CHECK_CHARACTER_CDR (idx);
905 else
906 /* If idx is a list (some sort of mouse click, perhaps?),
907 the index we want to use is the car of the list, which
908 ought to be a symbol. */
909 idx = EVENT_HEAD (idx);
911 /* If idx is a symbol, it might have modifiers, which need to
912 be put in the canonical order. */
913 if (SYMBOLP (idx))
914 idx = reorder_modifiers (idx);
915 else if (INTEGERP (idx))
916 /* Clobber the high bits that can be present on a machine
917 with more than 24 bits of integer. */
918 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
920 /* Scan the keymap for a binding of idx. */
922 Lisp_Object tail;
924 /* The cons after which we should insert new bindings. If the
925 keymap has a table element, we record its position here, so new
926 bindings will go after it; this way, the table will stay
927 towards the front of the alist and character lookups in dense
928 keymaps will remain fast. Otherwise, this just points at the
929 front of the keymap. */
930 Lisp_Object insertion_point;
932 insertion_point = keymap;
933 for (tail = XCDR (keymap); CONSP (tail); tail = XCDR (tail))
935 Lisp_Object elt;
937 elt = XCAR (tail);
938 if (VECTORP (elt))
940 if (NATNUMP (idx) && XFASTINT (idx) < ASIZE (elt))
942 CHECK_IMPURE (elt);
943 ASET (elt, XFASTINT (idx), def);
944 return def;
946 else if (CONSP (idx) && CHARACTERP (XCAR (idx)))
948 int from = XFASTINT (XCAR (idx));
949 int to = XFASTINT (XCDR (idx));
951 if (to >= ASIZE (elt))
952 to = ASIZE (elt) - 1;
953 for (; from <= to; from++)
954 ASET (elt, from, def);
955 if (to == XFASTINT (XCDR (idx)))
956 /* We have defined all keys in IDX. */
957 return def;
959 insertion_point = tail;
961 else if (CHAR_TABLE_P (elt))
963 /* Character codes with modifiers
964 are not included in a char-table.
965 All character codes without modifiers are included. */
966 if (NATNUMP (idx) && !(XFASTINT (idx) & CHAR_MODIFIER_MASK))
968 Faset (elt, idx,
969 /* `nil' has a special meaning for char-tables, so
970 we use something else to record an explicitly
971 unbound entry. */
972 NILP (def) ? Qt : def);
973 return def;
975 else if (CONSP (idx) && CHARACTERP (XCAR (idx)))
977 Fset_char_table_range (elt, idx, NILP (def) ? Qt : def);
978 return def;
980 insertion_point = tail;
982 else if (CONSP (elt))
984 if (EQ (idx, XCAR (elt)))
986 CHECK_IMPURE (elt);
987 XSETCDR (elt, def);
988 return def;
990 else if (CONSP (idx) && CHARACTERP (XCAR (idx)))
992 int from = XFASTINT (XCAR (idx));
993 int to = XFASTINT (XCDR (idx));
995 if (from <= XFASTINT (XCAR (elt))
996 && to >= XFASTINT (XCAR (elt)))
998 XSETCDR (elt, def);
999 if (from == to)
1000 return def;
1004 else if (EQ (elt, Qkeymap))
1005 /* If we find a 'keymap' symbol in the spine of KEYMAP,
1006 then we must have found the start of a second keymap
1007 being used as the tail of KEYMAP, and a binding for IDX
1008 should be inserted before it. */
1009 goto keymap_end;
1011 QUIT;
1014 keymap_end:
1015 /* We have scanned the entire keymap, and not found a binding for
1016 IDX. Let's add one. */
1018 Lisp_Object elt;
1020 if (CONSP (idx) && CHARACTERP (XCAR (idx)))
1022 /* IDX specifies a range of characters, and not all of them
1023 were handled yet, which means this keymap doesn't have a
1024 char-table. So, we insert a char-table now. */
1025 elt = Fmake_char_table (Qkeymap, Qnil);
1026 Fset_char_table_range (elt, idx, NILP (def) ? Qt : def);
1028 else
1029 elt = Fcons (idx, def);
1030 CHECK_IMPURE (insertion_point);
1031 XSETCDR (insertion_point, Fcons (elt, XCDR (insertion_point)));
1035 return def;
1038 EXFUN (Fcopy_keymap, 1);
1040 Lisp_Object
1041 copy_keymap_item (elt)
1042 Lisp_Object elt;
1044 Lisp_Object res, tem;
1046 if (!CONSP (elt))
1047 return elt;
1049 res = tem = elt;
1051 /* Is this a new format menu item. */
1052 if (EQ (XCAR (tem), Qmenu_item))
1054 /* Copy cell with menu-item marker. */
1055 res = elt = Fcons (XCAR (tem), XCDR (tem));
1056 tem = XCDR (elt);
1057 if (CONSP (tem))
1059 /* Copy cell with menu-item name. */
1060 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
1061 elt = XCDR (elt);
1062 tem = XCDR (elt);
1064 if (CONSP (tem))
1066 /* Copy cell with binding and if the binding is a keymap,
1067 copy that. */
1068 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
1069 elt = XCDR (elt);
1070 tem = XCAR (elt);
1071 if (CONSP (tem) && EQ (XCAR (tem), Qkeymap))
1072 XSETCAR (elt, Fcopy_keymap (tem));
1073 tem = XCDR (elt);
1074 if (CONSP (tem) && CONSP (XCAR (tem)))
1075 /* Delete cache for key equivalences. */
1076 XSETCDR (elt, XCDR (tem));
1079 else
1081 /* It may be an old fomat menu item.
1082 Skip the optional menu string. */
1083 if (STRINGP (XCAR (tem)))
1085 /* Copy the cell, since copy-alist didn't go this deep. */
1086 res = elt = Fcons (XCAR (tem), XCDR (tem));
1087 tem = XCDR (elt);
1088 /* Also skip the optional menu help string. */
1089 if (CONSP (tem) && STRINGP (XCAR (tem)))
1091 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
1092 elt = XCDR (elt);
1093 tem = XCDR (elt);
1095 /* There may also be a list that caches key equivalences.
1096 Just delete it for the new keymap. */
1097 if (CONSP (tem)
1098 && CONSP (XCAR (tem))
1099 && (NILP (XCAR (XCAR (tem)))
1100 || VECTORP (XCAR (XCAR (tem)))))
1102 XSETCDR (elt, XCDR (tem));
1103 tem = XCDR (tem);
1105 if (CONSP (tem) && EQ (XCAR (tem), Qkeymap))
1106 XSETCDR (elt, Fcopy_keymap (tem));
1108 else if (EQ (XCAR (tem), Qkeymap))
1109 res = Fcopy_keymap (elt);
1111 return res;
1114 static void
1115 copy_keymap_1 (chartable, idx, elt)
1116 Lisp_Object chartable, idx, elt;
1118 Fset_char_table_range (chartable, idx, copy_keymap_item (elt));
1121 DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
1122 doc: /* Return a copy of the keymap KEYMAP.
1123 The copy starts out with the same definitions of KEYMAP,
1124 but changing either the copy or KEYMAP does not affect the other.
1125 Any key definitions that are subkeymaps are recursively copied.
1126 However, a key definition which is a symbol whose definition is a keymap
1127 is not copied. */)
1128 (keymap)
1129 Lisp_Object keymap;
1131 register Lisp_Object copy, tail;
1132 keymap = get_keymap (keymap, 1, 0);
1133 copy = tail = Fcons (Qkeymap, Qnil);
1134 keymap = XCDR (keymap); /* Skip the `keymap' symbol. */
1136 while (CONSP (keymap) && !EQ (XCAR (keymap), Qkeymap))
1138 Lisp_Object elt = XCAR (keymap);
1139 if (CHAR_TABLE_P (elt))
1141 elt = Fcopy_sequence (elt);
1142 map_char_table (copy_keymap_1, Qnil, elt, elt);
1144 else if (VECTORP (elt))
1146 int i;
1147 elt = Fcopy_sequence (elt);
1148 for (i = 0; i < ASIZE (elt); i++)
1149 ASET (elt, i, copy_keymap_item (AREF (elt, i)));
1151 else if (CONSP (elt))
1152 elt = Fcons (XCAR (elt), copy_keymap_item (XCDR (elt)));
1153 XSETCDR (tail, Fcons (elt, Qnil));
1154 tail = XCDR (tail);
1155 keymap = XCDR (keymap);
1157 XSETCDR (tail, keymap);
1158 return copy;
1161 /* Simple Keymap mutators and accessors. */
1163 /* GC is possible in this function if it autoloads a keymap. */
1165 DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
1166 doc: /* In KEYMAP, define key sequence KEY as DEF.
1167 KEYMAP is a keymap.
1169 KEY is a string or a vector of symbols and characters meaning a
1170 sequence of keystrokes and events. Non-ASCII characters with codes
1171 above 127 (such as ISO Latin-1) can be included if you use a vector.
1172 Using [t] for KEY creates a default definition, which applies to any
1173 event type that has no other definition in this keymap.
1175 DEF is anything that can be a key's definition:
1176 nil (means key is undefined in this keymap),
1177 a command (a Lisp function suitable for interactive calling),
1178 a string (treated as a keyboard macro),
1179 a keymap (to define a prefix key),
1180 a symbol (when the key is looked up, the symbol will stand for its
1181 function definition, which should at that time be one of the above,
1182 or another symbol whose function definition is used, etc.),
1183 a cons (STRING . DEFN), meaning that DEFN is the definition
1184 (DEFN should be a valid definition in its own right),
1185 or a cons (MAP . CHAR), meaning use definition of CHAR in keymap MAP,
1186 or an extended menu item definition.
1187 (See info node `(elisp)Extended Menu Items'.)
1189 If KEYMAP is a sparse keymap with a binding for KEY, the existing
1190 binding is altered. If there is no binding for KEY, the new pair
1191 binding KEY to DEF is added at the front of KEYMAP. */)
1192 (keymap, key, def)
1193 Lisp_Object keymap;
1194 Lisp_Object key;
1195 Lisp_Object def;
1197 register int idx;
1198 register Lisp_Object c;
1199 register Lisp_Object cmd;
1200 int metized = 0;
1201 int meta_bit;
1202 int length;
1203 struct gcpro gcpro1, gcpro2, gcpro3;
1205 GCPRO3 (keymap, key, def);
1206 keymap = get_keymap (keymap, 1, 1);
1208 CHECK_VECTOR_OR_STRING (key);
1210 length = XFASTINT (Flength (key));
1211 if (length == 0)
1212 RETURN_UNGCPRO (Qnil);
1214 if (SYMBOLP (def) && !EQ (Vdefine_key_rebound_commands, Qt))
1215 Vdefine_key_rebound_commands = Fcons (def, Vdefine_key_rebound_commands);
1217 meta_bit = (VECTORP (key) || (STRINGP (key) && STRING_MULTIBYTE (key))
1218 ? meta_modifier : 0x80);
1220 if (VECTORP (def) && ASIZE (def) > 0 && CONSP (AREF (def, 0)))
1221 { /* DEF is apparently an XEmacs-style keyboard macro. */
1222 Lisp_Object tmp = Fmake_vector (make_number (ASIZE (def)), Qnil);
1223 int i = ASIZE (def);
1224 while (--i >= 0)
1226 Lisp_Object c = AREF (def, i);
1227 if (CONSP (c) && lucid_event_type_list_p (c))
1228 c = Fevent_convert_list (c);
1229 ASET (tmp, i, c);
1231 def = tmp;
1234 idx = 0;
1235 while (1)
1237 c = Faref (key, make_number (idx));
1239 if (CONSP (c))
1241 /* C may be a Lucid style event type list or a cons (FROM .
1242 TO) specifying a range of characters. */
1243 if (lucid_event_type_list_p (c))
1244 c = Fevent_convert_list (c);
1245 else if (CHARACTERP (XCAR (c)))
1246 CHECK_CHARACTER_CDR (c);
1249 if (SYMBOLP (c))
1250 silly_event_symbol_error (c);
1252 if (INTEGERP (c)
1253 && (XINT (c) & meta_bit)
1254 && !metized)
1256 c = meta_prefix_char;
1257 metized = 1;
1259 else
1261 if (INTEGERP (c))
1262 XSETINT (c, XINT (c) & ~meta_bit);
1264 metized = 0;
1265 idx++;
1268 if (!INTEGERP (c) && !SYMBOLP (c)
1269 && (!CONSP (c)
1270 /* If C is a range, it must be a leaf. */
1271 || (INTEGERP (XCAR (c)) && idx != length)))
1272 error ("Key sequence contains invalid event");
1274 if (idx == length)
1275 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
1277 cmd = access_keymap (keymap, c, 0, 1, 1);
1279 /* If this key is undefined, make it a prefix. */
1280 if (NILP (cmd))
1281 cmd = define_as_prefix (keymap, c);
1283 keymap = get_keymap (cmd, 0, 1);
1284 if (!CONSP (keymap))
1285 /* We must use Fkey_description rather than just passing key to
1286 error; key might be a vector, not a string. */
1287 error ("Key sequence %s starts with non-prefix key %s",
1288 SDATA (Fkey_description (key, Qnil)),
1289 SDATA (Fkey_description (Fsubstring (key, make_number (0),
1290 make_number (idx)),
1291 Qnil)));
1295 /* This function may GC (it calls Fkey_binding). */
1297 DEFUN ("command-remapping", Fcommand_remapping, Scommand_remapping, 1, 3, 0,
1298 doc: /* Return the remapping for command COMMAND.
1299 Returns nil if COMMAND is not remapped (or not a symbol).
1301 If the optional argument POSITION is non-nil, it specifies a mouse
1302 position as returned by `event-start' and `event-end', and the
1303 remapping occurs in the keymaps associated with it. It can also be a
1304 number or marker, in which case the keymap properties at the specified
1305 buffer position instead of point are used. The KEYMAPS argument is
1306 ignored if POSITION is non-nil.
1308 If the optional argument KEYMAPS is non-nil, it should be a list of
1309 keymaps to search for command remapping. Otherwise, search for the
1310 remapping in all currently active keymaps. */)
1311 (command, position, keymaps)
1312 Lisp_Object command, position, keymaps;
1314 if (!SYMBOLP (command))
1315 return Qnil;
1317 ASET (command_remapping_vector, 1, command);
1319 if (NILP (keymaps))
1320 return Fkey_binding (command_remapping_vector, Qnil, Qt, position);
1321 else
1323 Lisp_Object maps, binding;
1325 for (maps = keymaps; CONSP (maps); maps = XCDR (maps))
1327 binding = Flookup_key (XCAR (maps), command_remapping_vector, Qnil);
1328 if (!NILP (binding) && !INTEGERP (binding))
1329 return binding;
1331 return Qnil;
1335 /* Value is number if KEY is too long; nil if valid but has no definition. */
1336 /* GC is possible in this function if it autoloads a keymap. */
1338 DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
1339 doc: /* In keymap KEYMAP, look up key sequence KEY. Return the definition.
1340 A value of nil means undefined. See doc of `define-key'
1341 for kinds of definitions.
1343 A number as value means KEY is "too long";
1344 that is, characters or symbols in it except for the last one
1345 fail to be a valid sequence of prefix characters in KEYMAP.
1346 The number is how many characters at the front of KEY
1347 it takes to reach a non-prefix key.
1349 Normally, `lookup-key' ignores bindings for t, which act as default
1350 bindings, used when nothing else in the keymap applies; this makes it
1351 usable as a general function for probing keymaps. However, if the
1352 third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will
1353 recognize the default bindings, just as `read-key-sequence' does. */)
1354 (keymap, key, accept_default)
1355 Lisp_Object keymap;
1356 Lisp_Object key;
1357 Lisp_Object accept_default;
1359 register int idx;
1360 register Lisp_Object cmd;
1361 register Lisp_Object c;
1362 int length;
1363 int t_ok = !NILP (accept_default);
1364 struct gcpro gcpro1, gcpro2;
1366 GCPRO2 (keymap, key);
1367 keymap = get_keymap (keymap, 1, 1);
1369 CHECK_VECTOR_OR_STRING (key);
1371 length = XFASTINT (Flength (key));
1372 if (length == 0)
1373 RETURN_UNGCPRO (keymap);
1375 idx = 0;
1376 while (1)
1378 c = Faref (key, make_number (idx++));
1380 if (CONSP (c) && lucid_event_type_list_p (c))
1381 c = Fevent_convert_list (c);
1383 /* Turn the 8th bit of string chars into a meta modifier. */
1384 if (STRINGP (key) && XINT (c) & 0x80 && !STRING_MULTIBYTE (key))
1385 XSETINT (c, (XINT (c) | meta_modifier) & ~0x80);
1387 /* Allow string since binding for `menu-bar-select-buffer'
1388 includes the buffer name in the key sequence. */
1389 if (!INTEGERP (c) && !SYMBOLP (c) && !CONSP (c) && !STRINGP (c))
1390 error ("Key sequence contains invalid event");
1392 cmd = access_keymap (keymap, c, t_ok, 0, 1);
1393 if (idx == length)
1394 RETURN_UNGCPRO (cmd);
1396 keymap = get_keymap (cmd, 0, 1);
1397 if (!CONSP (keymap))
1398 RETURN_UNGCPRO (make_number (idx));
1400 QUIT;
1404 /* Make KEYMAP define event C as a keymap (i.e., as a prefix).
1405 Assume that currently it does not define C at all.
1406 Return the keymap. */
1408 static Lisp_Object
1409 define_as_prefix (keymap, c)
1410 Lisp_Object keymap, c;
1412 Lisp_Object cmd;
1414 cmd = Fmake_sparse_keymap (Qnil);
1415 /* If this key is defined as a prefix in an inherited keymap,
1416 make it a prefix in this map, and make its definition
1417 inherit the other prefix definition. */
1418 cmd = nconc2 (cmd, access_keymap (keymap, c, 0, 0, 0));
1419 store_in_keymap (keymap, c, cmd);
1421 return cmd;
1424 /* Append a key to the end of a key sequence. We always make a vector. */
1426 Lisp_Object
1427 append_key (key_sequence, key)
1428 Lisp_Object key_sequence, key;
1430 Lisp_Object args[2];
1432 args[0] = key_sequence;
1434 args[1] = Fcons (key, Qnil);
1435 return Fvconcat (2, args);
1438 /* Given a event type C which is a symbol,
1439 signal an error if is a mistake such as RET or M-RET or C-DEL, etc. */
1441 static void
1442 silly_event_symbol_error (c)
1443 Lisp_Object c;
1445 Lisp_Object parsed, base, name, assoc;
1446 int modifiers;
1448 parsed = parse_modifiers (c);
1449 modifiers = (int) XUINT (XCAR (XCDR (parsed)));
1450 base = XCAR (parsed);
1451 name = Fsymbol_name (base);
1452 /* This alist includes elements such as ("RET" . "\\r"). */
1453 assoc = Fassoc (name, exclude_keys);
1455 if (! NILP (assoc))
1457 char new_mods[sizeof ("\\A-\\C-\\H-\\M-\\S-\\s-")];
1458 char *p = new_mods;
1459 Lisp_Object keystring;
1460 if (modifiers & alt_modifier)
1461 { *p++ = '\\'; *p++ = 'A'; *p++ = '-'; }
1462 if (modifiers & ctrl_modifier)
1463 { *p++ = '\\'; *p++ = 'C'; *p++ = '-'; }
1464 if (modifiers & hyper_modifier)
1465 { *p++ = '\\'; *p++ = 'H'; *p++ = '-'; }
1466 if (modifiers & meta_modifier)
1467 { *p++ = '\\'; *p++ = 'M'; *p++ = '-'; }
1468 if (modifiers & shift_modifier)
1469 { *p++ = '\\'; *p++ = 'S'; *p++ = '-'; }
1470 if (modifiers & super_modifier)
1471 { *p++ = '\\'; *p++ = 's'; *p++ = '-'; }
1472 *p = 0;
1474 c = reorder_modifiers (c);
1475 keystring = concat2 (build_string (new_mods), XCDR (assoc));
1477 error ((modifiers & ~meta_modifier
1478 ? "To bind the key %s, use [?%s], not [%s]"
1479 : "To bind the key %s, use \"%s\", not [%s]"),
1480 SDATA (SYMBOL_NAME (c)), SDATA (keystring),
1481 SDATA (SYMBOL_NAME (c)));
1485 /* Global, local, and minor mode keymap stuff. */
1487 /* We can't put these variables inside current_minor_maps, since under
1488 some systems, static gets macro-defined to be the empty string.
1489 Ickypoo. */
1490 static Lisp_Object *cmm_modes = NULL, *cmm_maps = NULL;
1491 static int cmm_size = 0;
1493 /* Store a pointer to an array of the currently active minor modes in
1494 *modeptr, a pointer to an array of the keymaps of the currently
1495 active minor modes in *mapptr, and return the number of maps
1496 *mapptr contains.
1498 This function always returns a pointer to the same buffer, and may
1499 free or reallocate it, so if you want to keep it for a long time or
1500 hand it out to lisp code, copy it. This procedure will be called
1501 for every key sequence read, so the nice lispy approach (return a
1502 new assoclist, list, what have you) for each invocation would
1503 result in a lot of consing over time.
1505 If we used xrealloc/xmalloc and ran out of memory, they would throw
1506 back to the command loop, which would try to read a key sequence,
1507 which would call this function again, resulting in an infinite
1508 loop. Instead, we'll use realloc/malloc and silently truncate the
1509 list, let the key sequence be read, and hope some other piece of
1510 code signals the error. */
1512 current_minor_maps (modeptr, mapptr)
1513 Lisp_Object **modeptr, **mapptr;
1515 int i = 0;
1516 int list_number = 0;
1517 Lisp_Object alist, assoc, var, val;
1518 Lisp_Object emulation_alists;
1519 Lisp_Object lists[2];
1521 emulation_alists = Vemulation_mode_map_alists;
1522 lists[0] = Vminor_mode_overriding_map_alist;
1523 lists[1] = Vminor_mode_map_alist;
1525 for (list_number = 0; list_number < 2; list_number++)
1527 if (CONSP (emulation_alists))
1529 alist = XCAR (emulation_alists);
1530 emulation_alists = XCDR (emulation_alists);
1531 if (SYMBOLP (alist))
1532 alist = find_symbol_value (alist);
1533 list_number = -1;
1535 else
1536 alist = lists[list_number];
1538 for ( ; CONSP (alist); alist = XCDR (alist))
1539 if ((assoc = XCAR (alist), CONSP (assoc))
1540 && (var = XCAR (assoc), SYMBOLP (var))
1541 && (val = find_symbol_value (var), !EQ (val, Qunbound))
1542 && !NILP (val))
1544 Lisp_Object temp;
1546 /* If a variable has an entry in Vminor_mode_overriding_map_alist,
1547 and also an entry in Vminor_mode_map_alist,
1548 ignore the latter. */
1549 if (list_number == 1)
1551 val = assq_no_quit (var, lists[0]);
1552 if (!NILP (val))
1553 continue;
1556 if (i >= cmm_size)
1558 int newsize, allocsize;
1559 Lisp_Object *newmodes, *newmaps;
1561 newsize = cmm_size == 0 ? 30 : cmm_size * 2;
1562 allocsize = newsize * sizeof *newmodes;
1564 /* Use malloc here. See the comment above this function.
1565 Avoid realloc here; it causes spurious traps on GNU/Linux [KFS] */
1566 BLOCK_INPUT;
1567 newmodes = (Lisp_Object *) malloc (allocsize);
1568 if (newmodes)
1570 if (cmm_modes)
1572 bcopy (cmm_modes, newmodes, cmm_size * sizeof cmm_modes[0]);
1573 free (cmm_modes);
1575 cmm_modes = newmodes;
1578 newmaps = (Lisp_Object *) malloc (allocsize);
1579 if (newmaps)
1581 if (cmm_maps)
1583 bcopy (cmm_maps, newmaps, cmm_size * sizeof cmm_maps[0]);
1584 free (cmm_maps);
1586 cmm_maps = newmaps;
1588 UNBLOCK_INPUT;
1590 if (newmodes == NULL || newmaps == NULL)
1591 break;
1592 cmm_size = newsize;
1595 /* Get the keymap definition--or nil if it is not defined. */
1596 temp = Findirect_function (XCDR (assoc), Qt);
1597 if (!NILP (temp))
1599 cmm_modes[i] = var;
1600 cmm_maps [i] = temp;
1601 i++;
1606 if (modeptr) *modeptr = cmm_modes;
1607 if (mapptr) *mapptr = cmm_maps;
1608 return i;
1611 DEFUN ("current-active-maps", Fcurrent_active_maps, Scurrent_active_maps,
1612 0, 2, 0,
1613 doc: /* Return a list of the currently active keymaps.
1614 OLP if non-nil indicates that we should obey `overriding-local-map' and
1615 `overriding-terminal-local-map'. POSITION can specify a click position
1616 like in the respective argument of `key-binding'. */)
1617 (olp, position)
1618 Lisp_Object olp, position;
1620 int count = SPECPDL_INDEX ();
1622 Lisp_Object keymaps;
1624 /* If a mouse click position is given, our variables are based on
1625 the buffer clicked on, not the current buffer. So we may have to
1626 switch the buffer here. */
1628 if (CONSP (position))
1630 Lisp_Object window;
1632 window = POSN_WINDOW (position);
1634 if (WINDOWP (window)
1635 && BUFFERP (XWINDOW (window)->buffer)
1636 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
1638 /* Arrange to go back to the original buffer once we're done
1639 processing the key sequence. We don't use
1640 save_excursion_{save,restore} here, in analogy to
1641 `read-key-sequence' to avoid saving point. Maybe this
1642 would not be a problem here, but it is easier to keep
1643 things the same.
1646 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
1648 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
1652 keymaps = Fcons (current_global_map, Qnil);
1654 if (!NILP (olp))
1656 if (!NILP (current_kboard->Voverriding_terminal_local_map))
1657 keymaps = Fcons (current_kboard->Voverriding_terminal_local_map, keymaps);
1658 /* The doc said that overriding-terminal-local-map should
1659 override overriding-local-map. The code used them both,
1660 but it seems clearer to use just one. rms, jan 2005. */
1661 else if (!NILP (Voverriding_local_map))
1662 keymaps = Fcons (Voverriding_local_map, keymaps);
1664 if (NILP (XCDR (keymaps)))
1666 Lisp_Object *maps;
1667 int nmaps, i;
1669 Lisp_Object keymap, local_map;
1670 EMACS_INT pt;
1672 pt = INTEGERP (position) ? XINT (position)
1673 : MARKERP (position) ? marker_position (position)
1674 : PT;
1676 /* Get the buffer local maps, possibly overriden by text or
1677 overlay properties */
1679 local_map = get_local_map (pt, current_buffer, Qlocal_map);
1680 keymap = get_local_map (pt, current_buffer, Qkeymap);
1682 if (CONSP (position))
1684 Lisp_Object string;
1686 /* For a mouse click, get the local text-property keymap
1687 of the place clicked on, rather than point. */
1689 if (POSN_INBUFFER_P (position))
1691 Lisp_Object pos;
1693 pos = POSN_BUFFER_POSN (position);
1694 if (INTEGERP (pos)
1695 && XINT (pos) >= BEG && XINT (pos) <= Z)
1697 local_map = get_local_map (XINT (pos),
1698 current_buffer, Qlocal_map);
1700 keymap = get_local_map (XINT (pos),
1701 current_buffer, Qkeymap);
1705 /* If on a mode line string with a local keymap,
1706 or for a click on a string, i.e. overlay string or a
1707 string displayed via the `display' property,
1708 consider `local-map' and `keymap' properties of
1709 that string. */
1711 if (string = POSN_STRING (position),
1712 (CONSP (string) && STRINGP (XCAR (string))))
1714 Lisp_Object pos, map;
1716 pos = XCDR (string);
1717 string = XCAR (string);
1718 if (INTEGERP (pos)
1719 && XINT (pos) >= 0
1720 && XINT (pos) < SCHARS (string))
1722 map = Fget_text_property (pos, Qlocal_map, string);
1723 if (!NILP (map))
1724 local_map = map;
1726 map = Fget_text_property (pos, Qkeymap, string);
1727 if (!NILP (map))
1728 keymap = map;
1734 if (!NILP (local_map))
1735 keymaps = Fcons (local_map, keymaps);
1737 /* Now put all the minor mode keymaps on the list. */
1738 nmaps = current_minor_maps (0, &maps);
1740 for (i = --nmaps; i >= 0; i--)
1741 if (!NILP (maps[i]))
1742 keymaps = Fcons (maps[i], keymaps);
1744 if (!NILP (keymap))
1745 keymaps = Fcons (keymap, keymaps);
1748 unbind_to (count, Qnil);
1750 return keymaps;
1753 /* GC is possible in this function if it autoloads a keymap. */
1755 DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 4, 0,
1756 doc: /* Return the binding for command KEY in current keymaps.
1757 KEY is a string or vector, a sequence of keystrokes.
1758 The binding is probably a symbol with a function definition.
1760 Normally, `key-binding' ignores bindings for t, which act as default
1761 bindings, used when nothing else in the keymap applies; this makes it
1762 usable as a general function for probing keymaps. However, if the
1763 optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does
1764 recognize the default bindings, just as `read-key-sequence' does.
1766 Like the normal command loop, `key-binding' will remap the command
1767 resulting from looking up KEY by looking up the command in the
1768 current keymaps. However, if the optional third argument NO-REMAP
1769 is non-nil, `key-binding' returns the unmapped command.
1771 If KEY is a key sequence initiated with the mouse, the used keymaps
1772 will depend on the clicked mouse position with regard to the buffer
1773 and possible local keymaps on strings.
1775 If the optional argument POSITION is non-nil, it specifies a mouse
1776 position as returned by `event-start' and `event-end', and the lookup
1777 occurs in the keymaps associated with it instead of KEY. It can also
1778 be a number or marker, in which case the keymap properties at the
1779 specified buffer position instead of point are used.
1781 (key, accept_default, no_remap, position)
1782 Lisp_Object key, accept_default, no_remap, position;
1784 Lisp_Object *maps, value;
1785 int nmaps, i;
1786 struct gcpro gcpro1, gcpro2;
1787 int count = SPECPDL_INDEX ();
1789 GCPRO2 (key, position);
1791 if (NILP (position) && VECTORP (key))
1793 Lisp_Object event
1794 /* mouse events may have a symbolic prefix indicating the
1795 scrollbar or mode line */
1796 = AREF (key, SYMBOLP (AREF (key, 0)) && ASIZE (key) > 1 ? 1 : 0);
1798 /* We are not interested in locations without event data */
1800 if (EVENT_HAS_PARAMETERS (event) && CONSP (XCDR (event)))
1802 Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (event));
1803 if (EQ (kind, Qmouse_click))
1804 position = EVENT_START (event);
1808 /* Key sequences beginning with mouse clicks
1809 are read using the keymaps of the buffer clicked on, not
1810 the current buffer. So we may have to switch the buffer
1811 here. */
1813 if (CONSP (position))
1815 Lisp_Object window;
1817 window = POSN_WINDOW (position);
1819 if (WINDOWP (window)
1820 && BUFFERP (XWINDOW (window)->buffer)
1821 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
1823 /* Arrange to go back to the original buffer once we're done
1824 processing the key sequence. We don't use
1825 save_excursion_{save,restore} here, in analogy to
1826 `read-key-sequence' to avoid saving point. Maybe this
1827 would not be a problem here, but it is easier to keep
1828 things the same.
1831 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
1833 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
1837 if (! NILP (current_kboard->Voverriding_terminal_local_map))
1839 value = Flookup_key (current_kboard->Voverriding_terminal_local_map,
1840 key, accept_default);
1841 if (! NILP (value) && !INTEGERP (value))
1842 goto done;
1844 else if (! NILP (Voverriding_local_map))
1846 value = Flookup_key (Voverriding_local_map, key, accept_default);
1847 if (! NILP (value) && !INTEGERP (value))
1848 goto done;
1850 else
1852 Lisp_Object keymap, local_map;
1853 EMACS_INT pt;
1855 pt = INTEGERP (position) ? XINT (position)
1856 : MARKERP (position) ? marker_position (position)
1857 : PT;
1859 local_map = get_local_map (pt, current_buffer, Qlocal_map);
1860 keymap = get_local_map (pt, current_buffer, Qkeymap);
1862 if (CONSP (position))
1864 Lisp_Object string;
1866 /* For a mouse click, get the local text-property keymap
1867 of the place clicked on, rather than point. */
1869 if (POSN_INBUFFER_P (position))
1871 Lisp_Object pos;
1873 pos = POSN_BUFFER_POSN (position);
1874 if (INTEGERP (pos)
1875 && XINT (pos) >= BEG && XINT (pos) <= Z)
1877 local_map = get_local_map (XINT (pos),
1878 current_buffer, Qlocal_map);
1880 keymap = get_local_map (XINT (pos),
1881 current_buffer, Qkeymap);
1885 /* If on a mode line string with a local keymap,
1886 or for a click on a string, i.e. overlay string or a
1887 string displayed via the `display' property,
1888 consider `local-map' and `keymap' properties of
1889 that string. */
1891 if (string = POSN_STRING (position),
1892 (CONSP (string) && STRINGP (XCAR (string))))
1894 Lisp_Object pos, map;
1896 pos = XCDR (string);
1897 string = XCAR (string);
1898 if (INTEGERP (pos)
1899 && XINT (pos) >= 0
1900 && XINT (pos) < SCHARS (string))
1902 map = Fget_text_property (pos, Qlocal_map, string);
1903 if (!NILP (map))
1904 local_map = map;
1906 map = Fget_text_property (pos, Qkeymap, string);
1907 if (!NILP (map))
1908 keymap = map;
1914 if (! NILP (keymap))
1916 value = Flookup_key (keymap, key, accept_default);
1917 if (! NILP (value) && !INTEGERP (value))
1918 goto done;
1921 nmaps = current_minor_maps (0, &maps);
1922 /* Note that all these maps are GCPRO'd
1923 in the places where we found them. */
1925 for (i = 0; i < nmaps; i++)
1926 if (! NILP (maps[i]))
1928 value = Flookup_key (maps[i], key, accept_default);
1929 if (! NILP (value) && !INTEGERP (value))
1930 goto done;
1933 if (! NILP (local_map))
1935 value = Flookup_key (local_map, key, accept_default);
1936 if (! NILP (value) && !INTEGERP (value))
1937 goto done;
1941 value = Flookup_key (current_global_map, key, accept_default);
1943 done:
1944 unbind_to (count, Qnil);
1946 UNGCPRO;
1947 if (NILP (value) || INTEGERP (value))
1948 return Qnil;
1950 /* If the result of the ordinary keymap lookup is an interactive
1951 command, look for a key binding (ie. remapping) for that command. */
1953 if (NILP (no_remap) && SYMBOLP (value))
1955 Lisp_Object value1;
1956 if (value1 = Fcommand_remapping (value, position, Qnil), !NILP (value1))
1957 value = value1;
1960 return value;
1963 /* GC is possible in this function if it autoloads a keymap. */
1965 DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
1966 doc: /* Return the binding for command KEYS in current local keymap only.
1967 KEYS is a string or vector, a sequence of keystrokes.
1968 The binding is probably a symbol with a function definition.
1970 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1971 bindings; see the description of `lookup-key' for more details about this. */)
1972 (keys, accept_default)
1973 Lisp_Object keys, accept_default;
1975 register Lisp_Object map;
1976 map = current_buffer->keymap;
1977 if (NILP (map))
1978 return Qnil;
1979 return Flookup_key (map, keys, accept_default);
1982 /* GC is possible in this function if it autoloads a keymap. */
1984 DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
1985 doc: /* Return the binding for command KEYS in current global keymap only.
1986 KEYS is a string or vector, a sequence of keystrokes.
1987 The binding is probably a symbol with a function definition.
1988 This function's return values are the same as those of `lookup-key'
1989 \(which see).
1991 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1992 bindings; see the description of `lookup-key' for more details about this. */)
1993 (keys, accept_default)
1994 Lisp_Object keys, accept_default;
1996 return Flookup_key (current_global_map, keys, accept_default);
1999 /* GC is possible in this function if it autoloads a keymap. */
2001 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
2002 doc: /* Find the visible minor mode bindings of KEY.
2003 Return an alist of pairs (MODENAME . BINDING), where MODENAME is
2004 the symbol which names the minor mode binding KEY, and BINDING is
2005 KEY's definition in that mode. In particular, if KEY has no
2006 minor-mode bindings, return nil. If the first binding is a
2007 non-prefix, all subsequent bindings will be omitted, since they would
2008 be ignored. Similarly, the list doesn't include non-prefix bindings
2009 that come after prefix bindings.
2011 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
2012 bindings; see the description of `lookup-key' for more details about this. */)
2013 (key, accept_default)
2014 Lisp_Object key, accept_default;
2016 Lisp_Object *modes, *maps;
2017 int nmaps;
2018 Lisp_Object binding;
2019 int i, j;
2020 struct gcpro gcpro1, gcpro2;
2022 nmaps = current_minor_maps (&modes, &maps);
2023 /* Note that all these maps are GCPRO'd
2024 in the places where we found them. */
2026 binding = Qnil;
2027 GCPRO2 (key, binding);
2029 for (i = j = 0; i < nmaps; i++)
2030 if (!NILP (maps[i])
2031 && !NILP (binding = Flookup_key (maps[i], key, accept_default))
2032 && !INTEGERP (binding))
2034 if (KEYMAPP (binding))
2035 maps[j++] = Fcons (modes[i], binding);
2036 else if (j == 0)
2037 RETURN_UNGCPRO (Fcons (Fcons (modes[i], binding), Qnil));
2040 UNGCPRO;
2041 return Flist (j, maps);
2044 DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 3, 0,
2045 doc: /* Define COMMAND as a prefix command. COMMAND should be a symbol.
2046 A new sparse keymap is stored as COMMAND's function definition and its value.
2047 If a second optional argument MAPVAR is given, the map is stored as
2048 its value instead of as COMMAND's value; but COMMAND is still defined
2049 as a function.
2050 The third optional argument NAME, if given, supplies a menu name
2051 string for the map. This is required to use the keymap as a menu.
2052 This function returns COMMAND. */)
2053 (command, mapvar, name)
2054 Lisp_Object command, mapvar, name;
2056 Lisp_Object map;
2057 map = Fmake_sparse_keymap (name);
2058 Ffset (command, map);
2059 if (!NILP (mapvar))
2060 Fset (mapvar, map);
2061 else
2062 Fset (command, map);
2063 return command;
2066 DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0,
2067 doc: /* Select KEYMAP as the global keymap. */)
2068 (keymap)
2069 Lisp_Object keymap;
2071 keymap = get_keymap (keymap, 1, 1);
2072 current_global_map = keymap;
2074 return Qnil;
2077 DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
2078 doc: /* Select KEYMAP as the local keymap.
2079 If KEYMAP is nil, that means no local keymap. */)
2080 (keymap)
2081 Lisp_Object keymap;
2083 if (!NILP (keymap))
2084 keymap = get_keymap (keymap, 1, 1);
2086 current_buffer->keymap = keymap;
2088 return Qnil;
2091 DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
2092 doc: /* Return current buffer's local keymap, or nil if it has none.
2093 Normally the local keymap is set by the major mode with `use-local-map'. */)
2096 return current_buffer->keymap;
2099 DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0,
2100 doc: /* Return the current global keymap. */)
2103 return current_global_map;
2106 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0,
2107 doc: /* Return a list of keymaps for the minor modes of the current buffer. */)
2110 Lisp_Object *maps;
2111 int nmaps = current_minor_maps (0, &maps);
2113 return Flist (nmaps, maps);
2116 /* Help functions for describing and documenting keymaps. */
2118 struct accessible_keymaps_data {
2119 Lisp_Object maps, tail, thisseq;
2120 /* Does the current sequence end in the meta-prefix-char? */
2121 int is_metized;
2124 static void
2125 accessible_keymaps_1 (key, cmd, args, data)
2126 Lisp_Object key, cmd, args;
2127 /* Use void* to be compatible with map_keymap_function_t. */
2128 void *data;
2130 struct accessible_keymaps_data *d = data; /* Cast! */
2131 Lisp_Object maps = d->maps;
2132 Lisp_Object tail = d->tail;
2133 Lisp_Object thisseq = d->thisseq;
2134 int is_metized = d->is_metized && INTEGERP (key);
2135 Lisp_Object tem;
2137 cmd = get_keymap (get_keyelt (cmd, 0), 0, 0);
2138 if (NILP (cmd))
2139 return;
2141 /* Look for and break cycles. */
2142 while (!NILP (tem = Frassq (cmd, maps)))
2144 Lisp_Object prefix = XCAR (tem);
2145 int lim = XINT (Flength (XCAR (tem)));
2146 if (lim <= XINT (Flength (thisseq)))
2147 { /* This keymap was already seen with a smaller prefix. */
2148 int i = 0;
2149 while (i < lim && EQ (Faref (prefix, make_number (i)),
2150 Faref (thisseq, make_number (i))))
2151 i++;
2152 if (i >= lim)
2153 /* `prefix' is a prefix of `thisseq' => there's a cycle. */
2154 return;
2156 /* This occurrence of `cmd' in `maps' does not correspond to a cycle,
2157 but maybe `cmd' occurs again further down in `maps', so keep
2158 looking. */
2159 maps = XCDR (Fmemq (tem, maps));
2162 /* If the last key in thisseq is meta-prefix-char,
2163 turn it into a meta-ized keystroke. We know
2164 that the event we're about to append is an
2165 ascii keystroke since we're processing a
2166 keymap table. */
2167 if (is_metized)
2169 int meta_bit = meta_modifier;
2170 Lisp_Object last = make_number (XINT (Flength (thisseq)) - 1);
2171 tem = Fcopy_sequence (thisseq);
2173 Faset (tem, last, make_number (XINT (key) | meta_bit));
2175 /* This new sequence is the same length as
2176 thisseq, so stick it in the list right
2177 after this one. */
2178 XSETCDR (tail,
2179 Fcons (Fcons (tem, cmd), XCDR (tail)));
2181 else
2183 tem = append_key (thisseq, key);
2184 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
2188 /* This function cannot GC. */
2190 DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
2191 1, 2, 0,
2192 doc: /* Find all keymaps accessible via prefix characters from KEYMAP.
2193 Returns a list of elements of the form (KEYS . MAP), where the sequence
2194 KEYS starting from KEYMAP gets you to MAP. These elements are ordered
2195 so that the KEYS increase in length. The first element is ([] . KEYMAP).
2196 An optional argument PREFIX, if non-nil, should be a key sequence;
2197 then the value includes only maps for prefixes that start with PREFIX. */)
2198 (keymap, prefix)
2199 Lisp_Object keymap, prefix;
2201 Lisp_Object maps, tail;
2202 int prefixlen = XINT (Flength (prefix));
2204 /* no need for gcpro because we don't autoload any keymaps. */
2206 if (!NILP (prefix))
2208 /* If a prefix was specified, start with the keymap (if any) for
2209 that prefix, so we don't waste time considering other prefixes. */
2210 Lisp_Object tem;
2211 tem = Flookup_key (keymap, prefix, Qt);
2212 /* Flookup_key may give us nil, or a number,
2213 if the prefix is not defined in this particular map.
2214 It might even give us a list that isn't a keymap. */
2215 tem = get_keymap (tem, 0, 0);
2216 /* If the keymap is autoloaded `tem' is not a cons-cell, but we still
2217 want to return it. */
2218 if (!NILP (tem))
2220 /* Convert PREFIX to a vector now, so that later on
2221 we don't have to deal with the possibility of a string. */
2222 if (STRINGP (prefix))
2224 int i, i_byte, c;
2225 Lisp_Object copy;
2227 copy = Fmake_vector (make_number (SCHARS (prefix)), Qnil);
2228 for (i = 0, i_byte = 0; i < SCHARS (prefix);)
2230 int i_before = i;
2232 FETCH_STRING_CHAR_ADVANCE (c, prefix, i, i_byte);
2233 if (SINGLE_BYTE_CHAR_P (c) && (c & 0200))
2234 c ^= 0200 | meta_modifier;
2235 ASET (copy, i_before, make_number (c));
2237 prefix = copy;
2239 maps = Fcons (Fcons (prefix, tem), Qnil);
2241 else
2242 return Qnil;
2244 else
2245 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
2246 get_keymap (keymap, 1, 0)),
2247 Qnil);
2249 /* For each map in the list maps,
2250 look at any other maps it points to,
2251 and stick them at the end if they are not already in the list.
2253 This is a breadth-first traversal, where tail is the queue of
2254 nodes, and maps accumulates a list of all nodes visited. */
2256 for (tail = maps; CONSP (tail); tail = XCDR (tail))
2258 struct accessible_keymaps_data data;
2259 register Lisp_Object thismap = Fcdr (XCAR (tail));
2260 Lisp_Object last;
2262 data.thisseq = Fcar (XCAR (tail));
2263 data.maps = maps;
2264 data.tail = tail;
2265 last = make_number (XINT (Flength (data.thisseq)) - 1);
2266 /* Does the current sequence end in the meta-prefix-char? */
2267 data.is_metized = (XINT (last) >= 0
2268 /* Don't metize the last char of PREFIX. */
2269 && XINT (last) >= prefixlen
2270 && EQ (Faref (data.thisseq, last), meta_prefix_char));
2272 /* Since we can't run lisp code, we can't scan autoloaded maps. */
2273 if (CONSP (thismap))
2274 map_keymap (thismap, accessible_keymaps_1, Qnil, &data, 0);
2276 return maps;
2278 Lisp_Object Qsingle_key_description, Qkey_description;
2280 /* This function cannot GC. */
2282 DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0,
2283 doc: /* Return a pretty description of key-sequence KEYS.
2284 Optional arg PREFIX is the sequence of keys leading up to KEYS.
2285 Control characters turn into "C-foo" sequences, meta into "M-foo",
2286 spaces are put between sequence elements, etc. */)
2287 (keys, prefix)
2288 Lisp_Object keys, prefix;
2290 int len = 0;
2291 int i, i_byte;
2292 Lisp_Object *args;
2293 int size = XINT (Flength (keys));
2294 Lisp_Object list;
2295 Lisp_Object sep = build_string (" ");
2296 Lisp_Object key;
2297 int add_meta = 0;
2299 if (!NILP (prefix))
2300 size += XINT (Flength (prefix));
2302 /* This has one extra element at the end that we don't pass to Fconcat. */
2303 args = (Lisp_Object *) alloca (size * 4 * sizeof (Lisp_Object));
2305 /* In effect, this computes
2306 (mapconcat 'single-key-description keys " ")
2307 but we shouldn't use mapconcat because it can do GC. */
2309 next_list:
2310 if (!NILP (prefix))
2311 list = prefix, prefix = Qnil;
2312 else if (!NILP (keys))
2313 list = keys, keys = Qnil;
2314 else
2316 if (add_meta)
2318 args[len] = Fsingle_key_description (meta_prefix_char, Qnil);
2319 len += 2;
2321 else if (len == 0)
2322 return empty_unibyte_string;
2323 return Fconcat (len - 1, args);
2326 if (STRINGP (list))
2327 size = SCHARS (list);
2328 else if (VECTORP (list))
2329 size = XVECTOR (list)->size;
2330 else if (CONSP (list))
2331 size = XINT (Flength (list));
2332 else
2333 wrong_type_argument (Qarrayp, list);
2335 i = i_byte = 0;
2337 while (i < size)
2339 if (STRINGP (list))
2341 int c;
2342 FETCH_STRING_CHAR_ADVANCE (c, list, i, i_byte);
2343 if (SINGLE_BYTE_CHAR_P (c) && (c & 0200))
2344 c ^= 0200 | meta_modifier;
2345 XSETFASTINT (key, c);
2347 else if (VECTORP (list))
2349 key = AREF (list, i); i++;
2351 else
2353 key = XCAR (list);
2354 list = XCDR (list);
2355 i++;
2358 if (add_meta)
2360 if (!INTEGERP (key)
2361 || EQ (key, meta_prefix_char)
2362 || (XINT (key) & meta_modifier))
2364 args[len++] = Fsingle_key_description (meta_prefix_char, Qnil);
2365 args[len++] = sep;
2366 if (EQ (key, meta_prefix_char))
2367 continue;
2369 else
2370 XSETINT (key, (XINT (key) | meta_modifier) & ~0x80);
2371 add_meta = 0;
2373 else if (EQ (key, meta_prefix_char))
2375 add_meta = 1;
2376 continue;
2378 args[len++] = Fsingle_key_description (key, Qnil);
2379 args[len++] = sep;
2381 goto next_list;
2385 char *
2386 push_key_description (c, p, force_multibyte)
2387 register unsigned int c;
2388 register char *p;
2389 int force_multibyte;
2391 unsigned c2;
2393 /* Clear all the meaningless bits above the meta bit. */
2394 c &= meta_modifier | ~ - meta_modifier;
2395 c2 = c & ~(alt_modifier | ctrl_modifier | hyper_modifier
2396 | meta_modifier | shift_modifier | super_modifier);
2398 if (! CHARACTERP (make_number (c2)))
2400 /* KEY_DESCRIPTION_SIZE is large enough for this. */
2401 p += sprintf (p, "[%d]", c);
2402 return p;
2405 if (c & alt_modifier)
2407 *p++ = 'A';
2408 *p++ = '-';
2409 c -= alt_modifier;
2411 if ((c & ctrl_modifier) != 0
2412 || (c2 < ' ' && c2 != 27 && c2 != '\t' && c2 != Ctl ('M')))
2414 *p++ = 'C';
2415 *p++ = '-';
2416 c &= ~ctrl_modifier;
2418 if (c & hyper_modifier)
2420 *p++ = 'H';
2421 *p++ = '-';
2422 c -= hyper_modifier;
2424 if (c & meta_modifier)
2426 *p++ = 'M';
2427 *p++ = '-';
2428 c -= meta_modifier;
2430 if (c & shift_modifier)
2432 *p++ = 'S';
2433 *p++ = '-';
2434 c -= shift_modifier;
2436 if (c & super_modifier)
2438 *p++ = 's';
2439 *p++ = '-';
2440 c -= super_modifier;
2442 if (c < 040)
2444 if (c == 033)
2446 *p++ = 'E';
2447 *p++ = 'S';
2448 *p++ = 'C';
2450 else if (c == '\t')
2452 *p++ = 'T';
2453 *p++ = 'A';
2454 *p++ = 'B';
2456 else if (c == Ctl ('M'))
2458 *p++ = 'R';
2459 *p++ = 'E';
2460 *p++ = 'T';
2462 else
2464 /* `C-' already added above. */
2465 if (c > 0 && c <= Ctl ('Z'))
2466 *p++ = c + 0140;
2467 else
2468 *p++ = c + 0100;
2471 else if (c == 0177)
2473 *p++ = 'D';
2474 *p++ = 'E';
2475 *p++ = 'L';
2477 else if (c == ' ')
2479 *p++ = 'S';
2480 *p++ = 'P';
2481 *p++ = 'C';
2483 else if (c < 128
2484 || (NILP (current_buffer->enable_multibyte_characters)
2485 && SINGLE_BYTE_CHAR_P (c)
2486 && !force_multibyte))
2488 *p++ = c;
2490 else
2492 /* Now we are sure that C is a valid character code. */
2493 if (NILP (current_buffer->enable_multibyte_characters)
2494 && ! force_multibyte)
2495 *p++ = multibyte_char_to_unibyte (c, Qnil);
2496 else
2497 p += CHAR_STRING (c, (unsigned char *) p);
2500 return p;
2503 /* This function cannot GC. */
2505 DEFUN ("single-key-description", Fsingle_key_description,
2506 Ssingle_key_description, 1, 2, 0,
2507 doc: /* Return a pretty description of command character KEY.
2508 Control characters turn into C-whatever, etc.
2509 Optional argument NO-ANGLES non-nil means don't put angle brackets
2510 around function keys and event symbols. */)
2511 (key, no_angles)
2512 Lisp_Object key, no_angles;
2514 if (CONSP (key) && lucid_event_type_list_p (key))
2515 key = Fevent_convert_list (key);
2517 key = EVENT_HEAD (key);
2519 if (INTEGERP (key)) /* Normal character */
2521 char tem[KEY_DESCRIPTION_SIZE];
2523 *push_key_description (XUINT (key), tem, 1) = 0;
2524 return build_string (tem);
2526 else if (SYMBOLP (key)) /* Function key or event-symbol */
2528 if (NILP (no_angles))
2530 char *buffer
2531 = (char *) alloca (SBYTES (SYMBOL_NAME (key)) + 5);
2532 sprintf (buffer, "<%s>", SDATA (SYMBOL_NAME (key)));
2533 return build_string (buffer);
2535 else
2536 return Fsymbol_name (key);
2538 else if (STRINGP (key)) /* Buffer names in the menubar. */
2539 return Fcopy_sequence (key);
2540 else
2541 error ("KEY must be an integer, cons, symbol, or string");
2542 return Qnil;
2545 char *
2546 push_text_char_description (c, p)
2547 register unsigned int c;
2548 register char *p;
2550 if (c >= 0200)
2552 *p++ = 'M';
2553 *p++ = '-';
2554 c -= 0200;
2556 if (c < 040)
2558 *p++ = '^';
2559 *p++ = c + 64; /* 'A' - 1 */
2561 else if (c == 0177)
2563 *p++ = '^';
2564 *p++ = '?';
2566 else
2567 *p++ = c;
2568 return p;
2571 /* This function cannot GC. */
2573 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
2574 doc: /* Return a pretty description of file-character CHARACTER.
2575 Control characters turn into "^char", etc. This differs from
2576 `single-key-description' which turns them into "C-char".
2577 Also, this function recognizes the 2**7 bit as the Meta character,
2578 whereas `single-key-description' uses the 2**27 bit for Meta.
2579 See Info node `(elisp)Describing Characters' for examples. */)
2580 (character)
2581 Lisp_Object character;
2583 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */
2584 unsigned char str[6];
2585 int c;
2587 CHECK_NUMBER (character);
2589 c = XINT (character);
2590 if (!ASCII_CHAR_P (c))
2592 int len = CHAR_STRING (c, str);
2594 return make_multibyte_string (str, 1, len);
2597 *push_text_char_description (c & 0377, str) = 0;
2599 return build_string (str);
2602 /* Return non-zero if SEQ contains only ASCII characters, perhaps with
2603 a meta bit. */
2604 static int
2605 ascii_sequence_p (seq)
2606 Lisp_Object seq;
2608 int i;
2609 int len = XINT (Flength (seq));
2611 for (i = 0; i < len; i++)
2613 Lisp_Object ii, elt;
2615 XSETFASTINT (ii, i);
2616 elt = Faref (seq, ii);
2618 if (!INTEGERP (elt)
2619 || (XUINT (elt) & ~CHAR_META) >= 0x80)
2620 return 0;
2623 return 1;
2627 /* where-is - finding a command in a set of keymaps. */
2629 static Lisp_Object where_is_internal ();
2630 static void where_is_internal_1 P_ ((Lisp_Object key, Lisp_Object binding,
2631 Lisp_Object args, void *data));
2633 /* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2634 Returns the first non-nil binding found in any of those maps. */
2636 static Lisp_Object
2637 shadow_lookup (shadow, key, flag)
2638 Lisp_Object shadow, key, flag;
2640 Lisp_Object tail, value;
2642 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
2644 value = Flookup_key (XCAR (tail), key, flag);
2645 if (NATNUMP (value))
2647 value = Flookup_key (XCAR (tail),
2648 Fsubstring (key, make_number (0), value), flag);
2649 if (!NILP (value))
2650 return Qnil;
2652 else if (!NILP (value))
2653 return value;
2655 return Qnil;
2658 static Lisp_Object Vmouse_events;
2660 struct where_is_internal_data {
2661 Lisp_Object definition, noindirect, this, last;
2662 int last_is_meta;
2663 Lisp_Object sequences;
2666 /* This function can GC if Flookup_key autoloads any keymaps. */
2668 static Lisp_Object
2669 where_is_internal (definition, keymaps, firstonly, noindirect, no_remap)
2670 Lisp_Object definition, keymaps;
2671 Lisp_Object firstonly, noindirect, no_remap;
2673 Lisp_Object maps = Qnil;
2674 Lisp_Object found, sequences;
2675 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2676 /* 1 means ignore all menu bindings entirely. */
2677 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2679 found = keymaps;
2680 while (CONSP (found))
2682 maps =
2683 nconc2 (maps,
2684 Faccessible_keymaps (get_keymap (XCAR (found), 1, 0), Qnil));
2685 found = XCDR (found);
2688 GCPRO5 (definition, keymaps, maps, found, sequences);
2689 found = Qnil;
2690 sequences = Qnil;
2692 /* If this command is remapped, then it has no key bindings
2693 of its own. */
2694 if (NILP (no_remap)
2695 && SYMBOLP (definition)
2696 && !NILP (Fcommand_remapping (definition, Qnil, keymaps)))
2697 RETURN_UNGCPRO (Qnil);
2699 for (; CONSP (maps); maps = XCDR (maps))
2701 /* Key sequence to reach map, and the map that it reaches */
2702 register Lisp_Object this, map, tem;
2703 struct where_is_internal_data data;
2705 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
2706 [M-CHAR] sequences, check if last character of the sequence
2707 is the meta-prefix char. */
2708 Lisp_Object last;
2709 int last_is_meta;
2711 this = Fcar (XCAR (maps));
2712 map = Fcdr (XCAR (maps));
2713 last = make_number (XINT (Flength (this)) - 1);
2714 last_is_meta = (XINT (last) >= 0
2715 && EQ (Faref (this, last), meta_prefix_char));
2717 /* if (nomenus && !ascii_sequence_p (this)) */
2718 if (nomenus && XINT (last) >= 0
2719 && SYMBOLP (tem = Faref (this, make_number (0)))
2720 && !NILP (Fmemq (XCAR (parse_modifiers (tem)), Vmouse_events)))
2721 /* If no menu entries should be returned, skip over the
2722 keymaps bound to `menu-bar' and `tool-bar' and other
2723 non-ascii prefixes like `C-down-mouse-2'. */
2724 continue;
2726 QUIT;
2728 data.definition = definition;
2729 data.noindirect = noindirect;
2730 data.this = this;
2731 data.last = last;
2732 data.last_is_meta = last_is_meta;
2733 data.sequences = Qnil;
2735 if (CONSP (map))
2736 map_keymap (map, where_is_internal_1, Qnil, &data, 0);
2738 sequences = data.sequences;
2740 while (CONSP (sequences))
2742 Lisp_Object sequence, remapped, function;
2744 sequence = XCAR (sequences);
2745 sequences = XCDR (sequences);
2747 /* If the current sequence is a command remapping with
2748 format [remap COMMAND], find the key sequences
2749 which run COMMAND, and use those sequences instead. */
2750 remapped = Qnil;
2751 if (NILP (no_remap)
2752 && VECTORP (sequence) && XVECTOR (sequence)->size == 2
2753 && EQ (AREF (sequence, 0), Qremap)
2754 && (function = AREF (sequence, 1), SYMBOLP (function)))
2756 Lisp_Object remapped1;
2758 remapped1 = where_is_internal (function, keymaps, firstonly, noindirect, Qt);
2759 if (CONSP (remapped1))
2761 /* Verify that this key binding actually maps to the
2762 remapped command (see below). */
2763 if (!EQ (shadow_lookup (keymaps, XCAR (remapped1), Qnil), function))
2764 continue;
2765 sequence = XCAR (remapped1);
2766 remapped = XCDR (remapped1);
2767 goto record_sequence;
2771 /* Verify that this key binding is not shadowed by another
2772 binding for the same key, before we say it exists.
2774 Mechanism: look for local definition of this key and if
2775 it is defined and does not match what we found then
2776 ignore this key.
2778 Either nil or number as value from Flookup_key
2779 means undefined. */
2780 if (!EQ (shadow_lookup (keymaps, sequence, Qnil), definition))
2781 continue;
2783 record_sequence:
2784 /* Don't annoy user with strings from a menu such as
2785 Select Paste. Change them all to "(any string)",
2786 so that there seems to be only one menu item
2787 to report. */
2788 if (! NILP (sequence))
2790 Lisp_Object tem;
2791 tem = Faref (sequence, make_number (XVECTOR (sequence)->size - 1));
2792 if (STRINGP (tem))
2793 Faset (sequence, make_number (XVECTOR (sequence)->size - 1),
2794 build_string ("(any string)"));
2797 /* It is a true unshadowed match. Record it, unless it's already
2798 been seen (as could happen when inheriting keymaps). */
2799 if (NILP (Fmember (sequence, found)))
2800 found = Fcons (sequence, found);
2802 /* If firstonly is Qnon_ascii, then we can return the first
2803 binding we find. If firstonly is not Qnon_ascii but not
2804 nil, then we should return the first ascii-only binding
2805 we find. */
2806 if (EQ (firstonly, Qnon_ascii))
2807 RETURN_UNGCPRO (sequence);
2808 else if (!NILP (firstonly) && ascii_sequence_p (sequence))
2809 RETURN_UNGCPRO (sequence);
2811 if (CONSP (remapped))
2813 sequence = XCAR (remapped);
2814 remapped = XCDR (remapped);
2815 goto record_sequence;
2820 UNGCPRO;
2822 found = Fnreverse (found);
2824 /* firstonly may have been t, but we may have gone all the way through
2825 the keymaps without finding an all-ASCII key sequence. So just
2826 return the best we could find. */
2827 if (!NILP (firstonly))
2828 return Fcar (found);
2830 return found;
2833 DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 5, 0,
2834 doc: /* Return list of keys that invoke DEFINITION.
2835 If KEYMAP is a keymap, search only KEYMAP and the global keymap.
2836 If KEYMAP is nil, search all the currently active keymaps.
2837 If KEYMAP is a list of keymaps, search only those keymaps.
2839 If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,
2840 rather than a list of all possible key sequences.
2841 If FIRSTONLY is the symbol `non-ascii', return the first binding found,
2842 no matter what it is.
2843 If FIRSTONLY has another non-nil value, prefer sequences of ASCII characters
2844 \(or their meta variants) and entirely reject menu bindings.
2846 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections
2847 to other keymaps or slots. This makes it possible to search for an
2848 indirect definition itself.
2850 If optional 5th arg NO-REMAP is non-nil, don't search for key sequences
2851 that invoke a command which is remapped to DEFINITION, but include the
2852 remapped command in the returned list. */)
2853 (definition, keymap, firstonly, noindirect, no_remap)
2854 Lisp_Object definition, keymap;
2855 Lisp_Object firstonly, noindirect, no_remap;
2857 Lisp_Object sequences, keymaps;
2858 /* 1 means ignore all menu bindings entirely. */
2859 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2860 Lisp_Object result;
2862 /* Find the relevant keymaps. */
2863 if (CONSP (keymap) && KEYMAPP (XCAR (keymap)))
2864 keymaps = keymap;
2865 else if (!NILP (keymap))
2866 keymaps = Fcons (keymap, Fcons (current_global_map, Qnil));
2867 else
2868 keymaps = Fcurrent_active_maps (Qnil, Qnil);
2870 /* Only use caching for the menubar (i.e. called with (def nil t nil).
2871 We don't really need to check `keymap'. */
2872 if (nomenus && NILP (noindirect) && NILP (keymap))
2874 Lisp_Object *defns;
2875 int i, j, n;
2876 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2878 /* Check heuristic-consistency of the cache. */
2879 if (NILP (Fequal (keymaps, where_is_cache_keymaps)))
2880 where_is_cache = Qnil;
2882 if (NILP (where_is_cache))
2884 /* We need to create the cache. */
2885 Lisp_Object args[2];
2886 where_is_cache = Fmake_hash_table (0, args);
2887 where_is_cache_keymaps = Qt;
2889 /* Fill in the cache. */
2890 GCPRO5 (definition, keymaps, firstonly, noindirect, no_remap);
2891 where_is_internal (definition, keymaps, firstonly, noindirect, no_remap);
2892 UNGCPRO;
2894 where_is_cache_keymaps = keymaps;
2897 /* We want to process definitions from the last to the first.
2898 Instead of consing, copy definitions to a vector and step
2899 over that vector. */
2900 sequences = Fgethash (definition, where_is_cache, Qnil);
2901 n = XINT (Flength (sequences));
2902 defns = (Lisp_Object *) alloca (n * sizeof *defns);
2903 for (i = 0; CONSP (sequences); sequences = XCDR (sequences))
2904 defns[i++] = XCAR (sequences);
2906 /* Verify that the key bindings are not shadowed. Note that
2907 the following can GC. */
2908 GCPRO2 (definition, keymaps);
2909 result = Qnil;
2910 j = -1;
2911 for (i = n - 1; i >= 0; --i)
2912 if (EQ (shadow_lookup (keymaps, defns[i], Qnil), definition))
2914 if (ascii_sequence_p (defns[i]))
2915 break;
2916 else if (j < 0)
2917 j = i;
2920 result = i >= 0 ? defns[i] : (j >= 0 ? defns[j] : Qnil);
2921 UNGCPRO;
2923 else
2925 /* Kill the cache so that where_is_internal_1 doesn't think
2926 we're filling it up. */
2927 where_is_cache = Qnil;
2928 result = where_is_internal (definition, keymaps, firstonly, noindirect, no_remap);
2931 return result;
2934 /* This function can GC because get_keyelt can. */
2936 static void
2937 where_is_internal_1 (key, binding, args, data)
2938 Lisp_Object key, binding, args;
2939 void *data;
2941 struct where_is_internal_data *d = data; /* Cast! */
2942 Lisp_Object definition = d->definition;
2943 Lisp_Object noindirect = d->noindirect;
2944 Lisp_Object this = d->this;
2945 Lisp_Object last = d->last;
2946 int last_is_meta = d->last_is_meta;
2947 Lisp_Object sequence;
2949 /* Search through indirections unless that's not wanted. */
2950 if (NILP (noindirect))
2951 binding = get_keyelt (binding, 0);
2953 /* End this iteration if this element does not match
2954 the target. */
2956 if (!(!NILP (where_is_cache) /* everything "matches" during cache-fill. */
2957 || EQ (binding, definition)
2958 || (CONSP (definition) && !NILP (Fequal (binding, definition)))))
2959 /* Doesn't match. */
2960 return;
2962 /* We have found a match. Construct the key sequence where we found it. */
2963 if (INTEGERP (key) && last_is_meta)
2965 sequence = Fcopy_sequence (this);
2966 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
2968 else
2970 if (CONSP (key))
2971 key = Fcons (XCAR (key), XCDR (key));
2972 sequence = append_key (this, key);
2975 if (!NILP (where_is_cache))
2977 Lisp_Object sequences = Fgethash (binding, where_is_cache, Qnil);
2978 Fputhash (binding, Fcons (sequence, sequences), where_is_cache);
2980 else
2981 d->sequences = Fcons (sequence, d->sequences);
2984 /* describe-bindings - summarizing all the bindings in a set of keymaps. */
2986 DEFUN ("describe-buffer-bindings", Fdescribe_buffer_bindings, Sdescribe_buffer_bindings, 1, 3, 0,
2987 doc: /* Insert the list of all defined keys and their definitions.
2988 The list is inserted in the current buffer, while the bindings are
2989 looked up in BUFFER.
2990 The optional argument PREFIX, if non-nil, should be a key sequence;
2991 then we display only bindings that start with that prefix.
2992 The optional argument MENUS, if non-nil, says to mention menu bindings.
2993 \(Ordinarily these are omitted from the output.) */)
2994 (buffer, prefix, menus)
2995 Lisp_Object buffer, prefix, menus;
2997 Lisp_Object outbuf, shadow;
2998 int nomenu = NILP (menus);
2999 register Lisp_Object start1;
3000 struct gcpro gcpro1;
3002 char *alternate_heading
3003 = "\
3004 Keyboard translations:\n\n\
3005 You type Translation\n\
3006 -------- -----------\n";
3008 CHECK_BUFFER (buffer);
3010 shadow = Qnil;
3011 GCPRO1 (shadow);
3013 outbuf = Fcurrent_buffer ();
3015 /* Report on alternates for keys. */
3016 if (STRINGP (current_kboard->Vkeyboard_translate_table) && !NILP (prefix))
3018 int c;
3019 const unsigned char *translate = SDATA (current_kboard->Vkeyboard_translate_table);
3020 int translate_len = SCHARS (current_kboard->Vkeyboard_translate_table);
3022 for (c = 0; c < translate_len; c++)
3023 if (translate[c] != c)
3025 char buf[KEY_DESCRIPTION_SIZE];
3026 char *bufend;
3028 if (alternate_heading)
3030 insert_string (alternate_heading);
3031 alternate_heading = 0;
3034 bufend = push_key_description (translate[c], buf, 1);
3035 insert (buf, bufend - buf);
3036 Findent_to (make_number (16), make_number (1));
3037 bufend = push_key_description (c, buf, 1);
3038 insert (buf, bufend - buf);
3040 insert ("\n", 1);
3042 /* Insert calls signal_after_change which may GC. */
3043 translate = SDATA (current_kboard->Vkeyboard_translate_table);
3046 insert ("\n", 1);
3049 if (!NILP (Vkey_translation_map))
3050 describe_map_tree (Vkey_translation_map, 0, Qnil, prefix,
3051 "Key translations", nomenu, 1, 0, 0);
3054 /* Print the (major mode) local map. */
3055 start1 = Qnil;
3056 if (!NILP (current_kboard->Voverriding_terminal_local_map))
3057 start1 = current_kboard->Voverriding_terminal_local_map;
3058 else if (!NILP (Voverriding_local_map))
3059 start1 = Voverriding_local_map;
3061 if (!NILP (start1))
3063 describe_map_tree (start1, 1, shadow, prefix,
3064 "\f\nOverriding Bindings", nomenu, 0, 0, 0);
3065 shadow = Fcons (start1, shadow);
3067 else
3069 /* Print the minor mode and major mode keymaps. */
3070 int i, nmaps;
3071 Lisp_Object *modes, *maps;
3073 /* Temporarily switch to `buffer', so that we can get that buffer's
3074 minor modes correctly. */
3075 Fset_buffer (buffer);
3077 nmaps = current_minor_maps (&modes, &maps);
3078 Fset_buffer (outbuf);
3080 start1 = get_local_map (BUF_PT (XBUFFER (buffer)),
3081 XBUFFER (buffer), Qkeymap);
3082 if (!NILP (start1))
3084 describe_map_tree (start1, 1, shadow, prefix,
3085 "\f\n`keymap' Property Bindings", nomenu,
3086 0, 0, 0);
3087 shadow = Fcons (start1, shadow);
3090 /* Print the minor mode maps. */
3091 for (i = 0; i < nmaps; i++)
3093 /* The title for a minor mode keymap
3094 is constructed at run time.
3095 We let describe_map_tree do the actual insertion
3096 because it takes care of other features when doing so. */
3097 char *title, *p;
3099 if (!SYMBOLP (modes[i]))
3100 abort();
3102 p = title = (char *) alloca (42 + SCHARS (SYMBOL_NAME (modes[i])));
3103 *p++ = '\f';
3104 *p++ = '\n';
3105 *p++ = '`';
3106 bcopy (SDATA (SYMBOL_NAME (modes[i])), p,
3107 SCHARS (SYMBOL_NAME (modes[i])));
3108 p += SCHARS (SYMBOL_NAME (modes[i]));
3109 *p++ = '\'';
3110 bcopy (" Minor Mode Bindings", p, sizeof (" Minor Mode Bindings") - 1);
3111 p += sizeof (" Minor Mode Bindings") - 1;
3112 *p = 0;
3114 describe_map_tree (maps[i], 1, shadow, prefix,
3115 title, nomenu, 0, 0, 0);
3116 shadow = Fcons (maps[i], shadow);
3119 start1 = get_local_map (BUF_PT (XBUFFER (buffer)),
3120 XBUFFER (buffer), Qlocal_map);
3121 if (!NILP (start1))
3123 if (EQ (start1, XBUFFER (buffer)->keymap))
3124 describe_map_tree (start1, 1, shadow, prefix,
3125 "\f\nMajor Mode Bindings", nomenu, 0, 0, 0);
3126 else
3127 describe_map_tree (start1, 1, shadow, prefix,
3128 "\f\n`local-map' Property Bindings",
3129 nomenu, 0, 0, 0);
3131 shadow = Fcons (start1, shadow);
3135 describe_map_tree (current_global_map, 1, shadow, prefix,
3136 "\f\nGlobal Bindings", nomenu, 0, 1, 0);
3138 /* Print the function-key-map translations under this prefix. */
3139 if (!NILP (current_kboard->Vlocal_function_key_map))
3140 describe_map_tree (current_kboard->Vlocal_function_key_map, 0, Qnil, prefix,
3141 "\f\nFunction key map translations", nomenu, 1, 0, 0);
3143 /* Print the input-decode-map translations under this prefix. */
3144 if (!NILP (current_kboard->Vinput_decode_map))
3145 describe_map_tree (current_kboard->Vinput_decode_map, 0, Qnil, prefix,
3146 "\f\nInput decoding map translations", nomenu, 1, 0, 0);
3148 UNGCPRO;
3149 return Qnil;
3152 /* Insert a description of the key bindings in STARTMAP,
3153 followed by those of all maps reachable through STARTMAP.
3154 If PARTIAL is nonzero, omit certain "uninteresting" commands
3155 (such as `undefined').
3156 If SHADOW is non-nil, it is a list of maps;
3157 don't mention keys which would be shadowed by any of them.
3158 PREFIX, if non-nil, says mention only keys that start with PREFIX.
3159 TITLE, if not 0, is a string to insert at the beginning.
3160 TITLE should not end with a colon or a newline; we supply that.
3161 If NOMENU is not 0, then omit menu-bar commands.
3163 If TRANSL is nonzero, the definitions are actually key translations
3164 so print strings and vectors differently.
3166 If ALWAYS_TITLE is nonzero, print the title even if there are no maps
3167 to look through.
3169 If MENTION_SHADOW is nonzero, then when something is shadowed by SHADOW,
3170 don't omit it; instead, mention it but say it is shadowed. */
3172 void
3173 describe_map_tree (startmap, partial, shadow, prefix, title, nomenu, transl,
3174 always_title, mention_shadow)
3175 Lisp_Object startmap, shadow, prefix;
3176 int partial;
3177 char *title;
3178 int nomenu;
3179 int transl;
3180 int always_title;
3181 int mention_shadow;
3183 Lisp_Object maps, orig_maps, seen, sub_shadows;
3184 struct gcpro gcpro1, gcpro2, gcpro3;
3185 int something = 0;
3186 char *key_heading
3187 = "\
3188 key binding\n\
3189 --- -------\n";
3191 orig_maps = maps = Faccessible_keymaps (startmap, prefix);
3192 seen = Qnil;
3193 sub_shadows = Qnil;
3194 GCPRO3 (maps, seen, sub_shadows);
3196 if (nomenu)
3198 Lisp_Object list;
3200 /* Delete from MAPS each element that is for the menu bar. */
3201 for (list = maps; CONSP (list); list = XCDR (list))
3203 Lisp_Object elt, prefix, tem;
3205 elt = XCAR (list);
3206 prefix = Fcar (elt);
3207 if (XVECTOR (prefix)->size >= 1)
3209 tem = Faref (prefix, make_number (0));
3210 if (EQ (tem, Qmenu_bar))
3211 maps = Fdelq (elt, maps);
3216 if (!NILP (maps) || always_title)
3218 if (title)
3220 insert_string (title);
3221 if (!NILP (prefix))
3223 insert_string (" Starting With ");
3224 insert1 (Fkey_description (prefix, Qnil));
3226 insert_string (":\n");
3228 insert_string (key_heading);
3229 something = 1;
3232 for (; CONSP (maps); maps = XCDR (maps))
3234 register Lisp_Object elt, prefix, tail;
3236 elt = XCAR (maps);
3237 prefix = Fcar (elt);
3239 sub_shadows = Qnil;
3241 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
3243 Lisp_Object shmap;
3245 shmap = XCAR (tail);
3247 /* If the sequence by which we reach this keymap is zero-length,
3248 then the shadow map for this keymap is just SHADOW. */
3249 if ((STRINGP (prefix) && SCHARS (prefix) == 0)
3250 || (VECTORP (prefix) && XVECTOR (prefix)->size == 0))
3252 /* If the sequence by which we reach this keymap actually has
3253 some elements, then the sequence's definition in SHADOW is
3254 what we should use. */
3255 else
3257 shmap = Flookup_key (shmap, Fcar (elt), Qt);
3258 if (INTEGERP (shmap))
3259 shmap = Qnil;
3262 /* If shmap is not nil and not a keymap,
3263 it completely shadows this map, so don't
3264 describe this map at all. */
3265 if (!NILP (shmap) && !KEYMAPP (shmap))
3266 goto skip;
3268 if (!NILP (shmap))
3269 sub_shadows = Fcons (shmap, sub_shadows);
3272 /* Maps we have already listed in this loop shadow this map. */
3273 for (tail = orig_maps; !EQ (tail, maps); tail = XCDR (tail))
3275 Lisp_Object tem;
3276 tem = Fequal (Fcar (XCAR (tail)), prefix);
3277 if (!NILP (tem))
3278 sub_shadows = Fcons (XCDR (XCAR (tail)), sub_shadows);
3281 describe_map (Fcdr (elt), prefix,
3282 transl ? describe_translation : describe_command,
3283 partial, sub_shadows, &seen, nomenu, mention_shadow);
3285 skip: ;
3288 if (something)
3289 insert_string ("\n");
3291 UNGCPRO;
3294 static int previous_description_column;
3296 static void
3297 describe_command (definition, args)
3298 Lisp_Object definition, args;
3300 register Lisp_Object tem1;
3301 int column = (int) current_column (); /* iftc */
3302 int description_column;
3304 /* If column 16 is no good, go to col 32;
3305 but don't push beyond that--go to next line instead. */
3306 if (column > 30)
3308 insert_char ('\n');
3309 description_column = 32;
3311 else if (column > 14 || (column > 10 && previous_description_column == 32))
3312 description_column = 32;
3313 else
3314 description_column = 16;
3316 Findent_to (make_number (description_column), make_number (1));
3317 previous_description_column = description_column;
3319 if (SYMBOLP (definition))
3321 tem1 = SYMBOL_NAME (definition);
3322 insert1 (tem1);
3323 insert_string ("\n");
3325 else if (STRINGP (definition) || VECTORP (definition))
3326 insert_string ("Keyboard Macro\n");
3327 else if (KEYMAPP (definition))
3328 insert_string ("Prefix Command\n");
3329 else
3330 insert_string ("??\n");
3333 static void
3334 describe_translation (definition, args)
3335 Lisp_Object definition, args;
3337 register Lisp_Object tem1;
3339 Findent_to (make_number (16), make_number (1));
3341 if (SYMBOLP (definition))
3343 tem1 = SYMBOL_NAME (definition);
3344 insert1 (tem1);
3345 insert_string ("\n");
3347 else if (STRINGP (definition) || VECTORP (definition))
3349 insert1 (Fkey_description (definition, Qnil));
3350 insert_string ("\n");
3352 else if (KEYMAPP (definition))
3353 insert_string ("Prefix Command\n");
3354 else
3355 insert_string ("??\n");
3358 /* describe_map puts all the usable elements of a sparse keymap
3359 into an array of `struct describe_map_elt',
3360 then sorts them by the events. */
3362 struct describe_map_elt { Lisp_Object event; Lisp_Object definition; int shadowed; };
3364 /* qsort comparison function for sorting `struct describe_map_elt' by
3365 the event field. */
3367 static int
3368 describe_map_compare (aa, bb)
3369 const void *aa, *bb;
3371 const struct describe_map_elt *a = aa, *b = bb;
3372 if (INTEGERP (a->event) && INTEGERP (b->event))
3373 return ((XINT (a->event) > XINT (b->event))
3374 - (XINT (a->event) < XINT (b->event)));
3375 if (!INTEGERP (a->event) && INTEGERP (b->event))
3376 return 1;
3377 if (INTEGERP (a->event) && !INTEGERP (b->event))
3378 return -1;
3379 if (SYMBOLP (a->event) && SYMBOLP (b->event))
3380 return (!NILP (Fstring_lessp (a->event, b->event)) ? -1
3381 : !NILP (Fstring_lessp (b->event, a->event)) ? 1
3382 : 0);
3383 return 0;
3386 /* Describe the contents of map MAP, assuming that this map itself is
3387 reached by the sequence of prefix keys PREFIX (a string or vector).
3388 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
3390 static void
3391 describe_map (map, prefix, elt_describer, partial, shadow,
3392 seen, nomenu, mention_shadow)
3393 register Lisp_Object map;
3394 Lisp_Object prefix;
3395 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object));
3396 int partial;
3397 Lisp_Object shadow;
3398 Lisp_Object *seen;
3399 int nomenu;
3400 int mention_shadow;
3402 Lisp_Object tail, definition, event;
3403 Lisp_Object tem;
3404 Lisp_Object suppress;
3405 Lisp_Object kludge;
3406 int first = 1;
3407 struct gcpro gcpro1, gcpro2, gcpro3;
3409 /* These accumulate the values from sparse keymap bindings,
3410 so we can sort them and handle them in order. */
3411 int length_needed = 0;
3412 struct describe_map_elt *vect;
3413 int slots_used = 0;
3414 int i;
3416 suppress = Qnil;
3418 if (partial)
3419 suppress = intern ("suppress-keymap");
3421 /* This vector gets used to present single keys to Flookup_key. Since
3422 that is done once per keymap element, we don't want to cons up a
3423 fresh vector every time. */
3424 kludge = Fmake_vector (make_number (1), Qnil);
3425 definition = Qnil;
3427 GCPRO3 (prefix, definition, kludge);
3429 map = call1 (Qkeymap_canonicalize, map);
3431 for (tail = map; CONSP (tail); tail = XCDR (tail))
3432 length_needed++;
3434 vect = ((struct describe_map_elt *)
3435 alloca (sizeof (struct describe_map_elt) * length_needed));
3437 for (tail = map; CONSP (tail); tail = XCDR (tail))
3439 QUIT;
3441 if (VECTORP (XCAR (tail))
3442 || CHAR_TABLE_P (XCAR (tail)))
3443 describe_vector (XCAR (tail),
3444 prefix, Qnil, elt_describer, partial, shadow, map,
3445 (int *)0, 0, 1, mention_shadow);
3446 else if (CONSP (XCAR (tail)))
3448 int this_shadowed = 0;
3450 event = XCAR (XCAR (tail));
3452 /* Ignore bindings whose "prefix" are not really valid events.
3453 (We get these in the frames and buffers menu.) */
3454 if (!(SYMBOLP (event) || INTEGERP (event)))
3455 continue;
3457 if (nomenu && EQ (event, Qmenu_bar))
3458 continue;
3460 definition = get_keyelt (XCDR (XCAR (tail)), 0);
3462 /* Don't show undefined commands or suppressed commands. */
3463 if (NILP (definition)) continue;
3464 if (SYMBOLP (definition) && partial)
3466 tem = Fget (definition, suppress);
3467 if (!NILP (tem))
3468 continue;
3471 /* Don't show a command that isn't really visible
3472 because a local definition of the same key shadows it. */
3474 ASET (kludge, 0, event);
3475 if (!NILP (shadow))
3477 tem = shadow_lookup (shadow, kludge, Qt);
3478 if (!NILP (tem))
3480 /* If both bindings are keymaps, this key is a prefix key,
3481 so don't say it is shadowed. */
3482 if (KEYMAPP (definition) && KEYMAPP (tem))
3484 /* Avoid generating duplicate entries if the
3485 shadowed binding has the same definition. */
3486 else if (mention_shadow && !EQ (tem, definition))
3487 this_shadowed = 1;
3488 else
3489 continue;
3493 tem = Flookup_key (map, kludge, Qt);
3494 if (!EQ (tem, definition)) continue;
3496 vect[slots_used].event = event;
3497 vect[slots_used].definition = definition;
3498 vect[slots_used].shadowed = this_shadowed;
3499 slots_used++;
3501 else if (EQ (XCAR (tail), Qkeymap))
3503 /* The same keymap might be in the structure twice, if we're
3504 using an inherited keymap. So skip anything we've already
3505 encountered. */
3506 tem = Fassq (tail, *seen);
3507 if (CONSP (tem) && !NILP (Fequal (XCAR (tem), prefix)))
3508 break;
3509 *seen = Fcons (Fcons (tail, prefix), *seen);
3513 /* If we found some sparse map events, sort them. */
3515 qsort (vect, slots_used, sizeof (struct describe_map_elt),
3516 describe_map_compare);
3518 /* Now output them in sorted order. */
3520 for (i = 0; i < slots_used; i++)
3522 Lisp_Object start, end;
3524 if (first)
3526 previous_description_column = 0;
3527 insert ("\n", 1);
3528 first = 0;
3531 ASET (kludge, 0, vect[i].event);
3532 start = vect[i].event;
3533 end = start;
3535 definition = vect[i].definition;
3537 /* Find consecutive chars that are identically defined. */
3538 if (INTEGERP (vect[i].event))
3540 while (i + 1 < slots_used
3541 && EQ (vect[i+1].event, make_number (XINT (vect[i].event) + 1))
3542 && !NILP (Fequal (vect[i + 1].definition, definition))
3543 && vect[i].shadowed == vect[i + 1].shadowed)
3544 i++;
3545 end = vect[i].event;
3548 /* Now START .. END is the range to describe next. */
3550 /* Insert the string to describe the event START. */
3551 insert1 (Fkey_description (kludge, prefix));
3553 if (!EQ (start, end))
3555 insert (" .. ", 4);
3557 ASET (kludge, 0, end);
3558 /* Insert the string to describe the character END. */
3559 insert1 (Fkey_description (kludge, prefix));
3562 /* Print a description of the definition of this character.
3563 elt_describer will take care of spacing out far enough
3564 for alignment purposes. */
3565 (*elt_describer) (vect[i].definition, Qnil);
3567 if (vect[i].shadowed)
3569 SET_PT (PT - 1);
3570 insert_string ("\n (that binding is currently shadowed by another mode)");
3571 SET_PT (PT + 1);
3575 UNGCPRO;
3578 static void
3579 describe_vector_princ (elt, fun)
3580 Lisp_Object elt, fun;
3582 Findent_to (make_number (16), make_number (1));
3583 call1 (fun, elt);
3584 Fterpri (Qnil);
3587 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0,
3588 doc: /* Insert a description of contents of VECTOR.
3589 This is text showing the elements of vector matched against indices.
3590 DESCRIBER is the output function used; nil means use `princ'. */)
3591 (vector, describer)
3592 Lisp_Object vector, describer;
3594 int count = SPECPDL_INDEX ();
3595 if (NILP (describer))
3596 describer = intern ("princ");
3597 specbind (Qstandard_output, Fcurrent_buffer ());
3598 CHECK_VECTOR_OR_CHAR_TABLE (vector);
3599 describe_vector (vector, Qnil, describer, describe_vector_princ, 0,
3600 Qnil, Qnil, (int *)0, 0, 0, 0);
3602 return unbind_to (count, Qnil);
3605 /* Insert in the current buffer a description of the contents of VECTOR.
3606 We call ELT_DESCRIBER to insert the description of one value found
3607 in VECTOR.
3609 ELT_PREFIX describes what "comes before" the keys or indices defined
3610 by this vector. This is a human-readable string whose size
3611 is not necessarily related to the situation.
3613 If the vector is in a keymap, ELT_PREFIX is a prefix key which
3614 leads to this keymap.
3616 If the vector is a chartable, ELT_PREFIX is the vector
3617 of bytes that lead to the character set or portion of a character
3618 set described by this chartable.
3620 If PARTIAL is nonzero, it means do not mention suppressed commands
3621 (that assumes the vector is in a keymap).
3623 SHADOW is a list of keymaps that shadow this map.
3624 If it is non-nil, then we look up the key in those maps
3625 and we don't mention it now if it is defined by any of them.
3627 ENTIRE_MAP is the keymap in which this vector appears.
3628 If the definition in effect in the whole map does not match
3629 the one in this vector, we ignore this one.
3631 ARGS is simply passed as the second argument to ELT_DESCRIBER.
3633 INDICES and CHAR_TABLE_DEPTH are ignored. They will be removed in
3634 the near future.
3636 KEYMAP_P is 1 if vector is known to be a keymap, so map ESC to M-.
3638 ARGS is simply passed as the second argument to ELT_DESCRIBER. */
3640 static void
3641 describe_vector (vector, prefix, args, elt_describer,
3642 partial, shadow, entire_map,
3643 indices, char_table_depth, keymap_p,
3644 mention_shadow)
3645 register Lisp_Object vector;
3646 Lisp_Object prefix, args;
3647 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object));
3648 int partial;
3649 Lisp_Object shadow;
3650 Lisp_Object entire_map;
3651 int *indices;
3652 int char_table_depth;
3653 int keymap_p;
3654 int mention_shadow;
3656 Lisp_Object definition;
3657 Lisp_Object tem2;
3658 Lisp_Object elt_prefix = Qnil;
3659 int i;
3660 Lisp_Object suppress;
3661 Lisp_Object kludge;
3662 int first = 1;
3663 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3664 /* Range of elements to be handled. */
3665 int from, to;
3666 Lisp_Object character;
3667 int starting_i;
3669 suppress = Qnil;
3671 definition = Qnil;
3673 if (!keymap_p)
3675 /* Call Fkey_description first, to avoid GC bug for the other string. */
3676 if (!NILP (prefix) && XFASTINT (Flength (prefix)) > 0)
3678 Lisp_Object tem;
3679 tem = Fkey_description (prefix, Qnil);
3680 elt_prefix = concat2 (tem, build_string (" "));
3682 prefix = Qnil;
3685 /* This vector gets used to present single keys to Flookup_key. Since
3686 that is done once per vector element, we don't want to cons up a
3687 fresh vector every time. */
3688 kludge = Fmake_vector (make_number (1), Qnil);
3689 GCPRO4 (elt_prefix, prefix, definition, kludge);
3691 if (partial)
3692 suppress = intern ("suppress-keymap");
3694 from = 0;
3695 to = CHAR_TABLE_P (vector) ? MAX_CHAR + 1 : XVECTOR (vector)->size;
3697 for (i = from; i < to; i++)
3699 int this_shadowed = 0;
3700 int range_beg, range_end;
3701 Lisp_Object val;
3703 QUIT;
3705 starting_i = i;
3707 if (CHAR_TABLE_P (vector))
3708 val = char_table_ref_and_range (vector, i, &range_beg, &i);
3709 else
3710 val = AREF (vector, i);
3711 definition = get_keyelt (val, 0);
3713 if (NILP (definition)) continue;
3715 /* Don't mention suppressed commands. */
3716 if (SYMBOLP (definition) && partial)
3718 Lisp_Object tem;
3720 tem = Fget (definition, suppress);
3722 if (!NILP (tem)) continue;
3725 character = make_number (starting_i);
3726 ASET (kludge, 0, character);
3728 /* If this binding is shadowed by some other map, ignore it. */
3729 if (!NILP (shadow))
3731 Lisp_Object tem;
3733 tem = shadow_lookup (shadow, kludge, Qt);
3735 if (!NILP (tem))
3737 if (mention_shadow)
3738 this_shadowed = 1;
3739 else
3740 continue;
3744 /* Ignore this definition if it is shadowed by an earlier
3745 one in the same keymap. */
3746 if (!NILP (entire_map))
3748 Lisp_Object tem;
3750 tem = Flookup_key (entire_map, kludge, Qt);
3752 if (!EQ (tem, definition))
3753 continue;
3756 if (first)
3758 insert ("\n", 1);
3759 first = 0;
3762 /* Output the prefix that applies to every entry in this map. */
3763 if (!NILP (elt_prefix))
3764 insert1 (elt_prefix);
3766 insert1 (Fkey_description (kludge, prefix));
3768 /* Find all consecutive characters or rows that have the same
3769 definition. But, for elements of a top level char table, if
3770 they are for charsets, we had better describe one by one even
3771 if they have the same definition. */
3772 if (CHAR_TABLE_P (vector))
3773 while (i + 1 < to
3774 && (val = char_table_ref_and_range (vector, i + 1,
3775 &range_beg, &range_end),
3776 tem2 = get_keyelt (val, 0),
3777 !NILP (tem2))
3778 && !NILP (Fequal (tem2, definition)))
3779 i = range_end;
3780 else
3781 while (i + 1 < to
3782 && (tem2 = get_keyelt (AREF (vector, i + 1), 0),
3783 !NILP (tem2))
3784 && !NILP (Fequal (tem2, definition)))
3785 i++;
3787 /* If we have a range of more than one character,
3788 print where the range reaches to. */
3790 if (i != starting_i)
3792 insert (" .. ", 4);
3794 ASET (kludge, 0, make_number (i));
3796 if (!NILP (elt_prefix))
3797 insert1 (elt_prefix);
3799 insert1 (Fkey_description (kludge, prefix));
3802 /* Print a description of the definition of this character.
3803 elt_describer will take care of spacing out far enough
3804 for alignment purposes. */
3805 (*elt_describer) (definition, args);
3807 if (this_shadowed)
3809 SET_PT (PT - 1);
3810 insert_string (" (binding currently shadowed)");
3811 SET_PT (PT + 1);
3815 if (CHAR_TABLE_P (vector) && ! NILP (XCHAR_TABLE (vector)->defalt))
3817 if (!NILP (elt_prefix))
3818 insert1 (elt_prefix);
3819 insert ("default", 7);
3820 (*elt_describer) (XCHAR_TABLE (vector)->defalt, args);
3823 UNGCPRO;
3826 /* Apropos - finding all symbols whose names match a regexp. */
3827 static Lisp_Object apropos_predicate;
3828 static Lisp_Object apropos_accumulate;
3830 static void
3831 apropos_accum (symbol, string)
3832 Lisp_Object symbol, string;
3834 register Lisp_Object tem;
3836 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
3837 if (!NILP (tem) && !NILP (apropos_predicate))
3838 tem = call1 (apropos_predicate, symbol);
3839 if (!NILP (tem))
3840 apropos_accumulate = Fcons (symbol, apropos_accumulate);
3843 DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
3844 doc: /* Show all symbols whose names contain match for REGEXP.
3845 If optional 2nd arg PREDICATE is non-nil, (funcall PREDICATE SYMBOL) is done
3846 for each symbol and a symbol is mentioned only if that returns non-nil.
3847 Return list of symbols found. */)
3848 (regexp, predicate)
3849 Lisp_Object regexp, predicate;
3851 Lisp_Object tem;
3852 CHECK_STRING (regexp);
3853 apropos_predicate = predicate;
3854 apropos_accumulate = Qnil;
3855 map_obarray (Vobarray, apropos_accum, regexp);
3856 tem = Fsort (apropos_accumulate, Qstring_lessp);
3857 apropos_accumulate = Qnil;
3858 apropos_predicate = Qnil;
3859 return tem;
3862 void
3863 syms_of_keymap ()
3865 Qkeymap = intern ("keymap");
3866 staticpro (&Qkeymap);
3867 staticpro (&apropos_predicate);
3868 staticpro (&apropos_accumulate);
3869 apropos_predicate = Qnil;
3870 apropos_accumulate = Qnil;
3872 Qkeymap_canonicalize = intern ("keymap-canonicalize");
3873 staticpro (&Qkeymap_canonicalize);
3875 /* Now we are ready to set up this property, so we can
3876 create char tables. */
3877 Fput (Qkeymap, Qchar_table_extra_slots, make_number (0));
3879 /* Initialize the keymaps standardly used.
3880 Each one is the value of a Lisp variable, and is also
3881 pointed to by a C variable */
3883 global_map = Fmake_keymap (Qnil);
3884 Fset (intern ("global-map"), global_map);
3886 current_global_map = global_map;
3887 staticpro (&global_map);
3888 staticpro (&current_global_map);
3890 meta_map = Fmake_keymap (Qnil);
3891 Fset (intern ("esc-map"), meta_map);
3892 Ffset (intern ("ESC-prefix"), meta_map);
3894 control_x_map = Fmake_keymap (Qnil);
3895 Fset (intern ("ctl-x-map"), control_x_map);
3896 Ffset (intern ("Control-X-prefix"), control_x_map);
3898 exclude_keys
3899 = Fcons (Fcons (build_string ("DEL"), build_string ("\\d")),
3900 Fcons (Fcons (build_string ("TAB"), build_string ("\\t")),
3901 Fcons (Fcons (build_string ("RET"), build_string ("\\r")),
3902 Fcons (Fcons (build_string ("ESC"), build_string ("\\e")),
3903 Fcons (Fcons (build_string ("SPC"), build_string (" ")),
3904 Qnil)))));
3905 staticpro (&exclude_keys);
3907 DEFVAR_LISP ("define-key-rebound-commands", &Vdefine_key_rebound_commands,
3908 doc: /* List of commands given new key bindings recently.
3909 This is used for internal purposes during Emacs startup;
3910 don't alter it yourself. */);
3911 Vdefine_key_rebound_commands = Qt;
3913 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map,
3914 doc: /* Default keymap to use when reading from the minibuffer. */);
3915 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
3917 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
3918 doc: /* Local keymap for the minibuffer when spaces are not allowed. */);
3919 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
3920 Fset_keymap_parent (Vminibuffer_local_ns_map, Vminibuffer_local_map);
3922 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
3923 doc: /* Local keymap for minibuffer input with completion. */);
3924 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
3925 Fset_keymap_parent (Vminibuffer_local_completion_map, Vminibuffer_local_map);
3927 DEFVAR_LISP ("minibuffer-local-filename-completion-map",
3928 &Vminibuffer_local_filename_completion_map,
3929 doc: /* Local keymap for minibuffer input with completion for filenames. */);
3930 Vminibuffer_local_filename_completion_map = Fmake_sparse_keymap (Qnil);
3931 Fset_keymap_parent (Vminibuffer_local_filename_completion_map,
3932 Vminibuffer_local_completion_map);
3935 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map,
3936 doc: /* Local keymap for minibuffer input with completion, for exact match. */);
3937 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
3938 Fset_keymap_parent (Vminibuffer_local_must_match_map,
3939 Vminibuffer_local_completion_map);
3941 DEFVAR_LISP ("minibuffer-local-must-match-filename-map",
3942 &Vminibuffer_local_must_match_filename_map,
3943 doc: /* Local keymap for minibuffer input with completion for filenames with exact match. */);
3944 Vminibuffer_local_must_match_filename_map = Fmake_sparse_keymap (Qnil);
3945 Fset_keymap_parent (Vminibuffer_local_must_match_filename_map,
3946 Vminibuffer_local_must_match_map);
3948 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
3949 doc: /* Alist of keymaps to use for minor modes.
3950 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read
3951 key sequences and look up bindings if VARIABLE's value is non-nil.
3952 If two active keymaps bind the same key, the keymap appearing earlier
3953 in the list takes precedence. */);
3954 Vminor_mode_map_alist = Qnil;
3956 DEFVAR_LISP ("minor-mode-overriding-map-alist", &Vminor_mode_overriding_map_alist,
3957 doc: /* Alist of keymaps to use for minor modes, in current major mode.
3958 This variable is an alist just like `minor-mode-map-alist', and it is
3959 used the same way (and before `minor-mode-map-alist'); however,
3960 it is provided for major modes to bind locally. */);
3961 Vminor_mode_overriding_map_alist = Qnil;
3963 DEFVAR_LISP ("emulation-mode-map-alists", &Vemulation_mode_map_alists,
3964 doc: /* List of keymap alists to use for emulations modes.
3965 It is intended for modes or packages using multiple minor-mode keymaps.
3966 Each element is a keymap alist just like `minor-mode-map-alist', or a
3967 symbol with a variable binding which is a keymap alist, and it is used
3968 the same way. The "active" keymaps in each alist are used before
3969 `minor-mode-map-alist' and `minor-mode-overriding-map-alist'. */);
3970 Vemulation_mode_map_alists = Qnil;
3972 staticpro (&Vmouse_events);
3973 Vmouse_events = Fcons (intern ("menu-bar"),
3974 Fcons (intern ("tool-bar"),
3975 Fcons (intern ("header-line"),
3976 Fcons (intern ("mode-line"),
3977 Fcons (intern ("mouse-1"),
3978 Fcons (intern ("mouse-2"),
3979 Fcons (intern ("mouse-3"),
3980 Fcons (intern ("mouse-4"),
3981 Fcons (intern ("mouse-5"),
3982 Qnil)))))))));
3985 Qsingle_key_description = intern ("single-key-description");
3986 staticpro (&Qsingle_key_description);
3988 Qkey_description = intern ("key-description");
3989 staticpro (&Qkey_description);
3991 Qkeymapp = intern ("keymapp");
3992 staticpro (&Qkeymapp);
3994 Qnon_ascii = intern ("non-ascii");
3995 staticpro (&Qnon_ascii);
3997 Qmenu_item = intern ("menu-item");
3998 staticpro (&Qmenu_item);
4000 Qremap = intern ("remap");
4001 staticpro (&Qremap);
4003 command_remapping_vector = Fmake_vector (make_number (2), Qremap);
4004 staticpro (&command_remapping_vector);
4006 where_is_cache_keymaps = Qt;
4007 where_is_cache = Qnil;
4008 staticpro (&where_is_cache);
4009 staticpro (&where_is_cache_keymaps);
4011 defsubr (&Skeymapp);
4012 defsubr (&Skeymap_parent);
4013 defsubr (&Skeymap_prompt);
4014 defsubr (&Sset_keymap_parent);
4015 defsubr (&Smake_keymap);
4016 defsubr (&Smake_sparse_keymap);
4017 defsubr (&Smap_keymap_internal);
4018 defsubr (&Smap_keymap);
4019 defsubr (&Scopy_keymap);
4020 defsubr (&Scommand_remapping);
4021 defsubr (&Skey_binding);
4022 defsubr (&Slocal_key_binding);
4023 defsubr (&Sglobal_key_binding);
4024 defsubr (&Sminor_mode_key_binding);
4025 defsubr (&Sdefine_key);
4026 defsubr (&Slookup_key);
4027 defsubr (&Sdefine_prefix_command);
4028 defsubr (&Suse_global_map);
4029 defsubr (&Suse_local_map);
4030 defsubr (&Scurrent_local_map);
4031 defsubr (&Scurrent_global_map);
4032 defsubr (&Scurrent_minor_mode_maps);
4033 defsubr (&Scurrent_active_maps);
4034 defsubr (&Saccessible_keymaps);
4035 defsubr (&Skey_description);
4036 defsubr (&Sdescribe_vector);
4037 defsubr (&Ssingle_key_description);
4038 defsubr (&Stext_char_description);
4039 defsubr (&Swhere_is_internal);
4040 defsubr (&Sdescribe_buffer_bindings);
4041 defsubr (&Sapropos_internal);
4044 void
4045 keys_of_keymap ()
4047 initial_define_key (global_map, 033, "ESC-prefix");
4048 initial_define_key (global_map, Ctl('X'), "Control-X-prefix");
4051 /* arch-tag: 6dd15c26-7cf1-41c4-b904-f42f7ddda463
4052 (do not change this comment) */