--color not available in version 21.3
[emacs.git] / src / keymap.c
blob97884223d8d35deea4bc322ccecb4b9d6bc4cd2e
1 /* Manipulation of keymaps
2 Copyright (C) 1985, 86,87,88,93,94,95,98,99, 2000, 2001
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include <config.h>
24 #include <stdio.h>
25 #include "lisp.h"
26 #include "commands.h"
27 #include "buffer.h"
28 #include "charset.h"
29 #include "keyboard.h"
30 #include "termhooks.h"
31 #include "blockinput.h"
32 #include "puresize.h"
33 #include "intervals.h"
34 #include "keymap.h"
36 /* The number of elements in keymap vectors. */
37 #define DENSE_TABLE_SIZE (0200)
39 /* Actually allocate storage for these variables */
41 Lisp_Object current_global_map; /* Current global keymap */
43 Lisp_Object global_map; /* default global key bindings */
45 Lisp_Object meta_map; /* The keymap used for globally bound
46 ESC-prefixed default commands */
48 Lisp_Object control_x_map; /* The keymap used for globally bound
49 C-x-prefixed default commands */
51 /* was MinibufLocalMap */
52 Lisp_Object Vminibuffer_local_map;
53 /* The keymap used by the minibuf for local
54 bindings when spaces are allowed in the
55 minibuf */
57 /* was MinibufLocalNSMap */
58 Lisp_Object Vminibuffer_local_ns_map;
59 /* The keymap used by the minibuf for local
60 bindings when spaces are not encouraged
61 in the minibuf */
63 /* keymap used for minibuffers when doing completion */
64 /* was MinibufLocalCompletionMap */
65 Lisp_Object Vminibuffer_local_completion_map;
67 /* keymap used for minibuffers when doing completion and require a match */
68 /* was MinibufLocalMustMatchMap */
69 Lisp_Object Vminibuffer_local_must_match_map;
71 /* Alist of minor mode variables and keymaps. */
72 Lisp_Object Vminor_mode_map_alist;
74 /* Alist of major-mode-specific overrides for
75 minor mode variables and keymaps. */
76 Lisp_Object Vminor_mode_overriding_map_alist;
78 /* List of emulation mode keymap alists. */
79 Lisp_Object Vemulation_mode_map_alists;
81 /* Keymap mapping ASCII function key sequences onto their preferred forms.
82 Initialized by the terminal-specific lisp files. See DEFVAR for more
83 documentation. */
84 Lisp_Object Vfunction_key_map;
86 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
87 Lisp_Object Vkey_translation_map;
89 /* A list of all commands given new bindings since a certain time
90 when nil was stored here.
91 This is used to speed up recomputation of menu key equivalents
92 when Emacs starts up. t means don't record anything here. */
93 Lisp_Object Vdefine_key_rebound_commands;
95 Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii, Qmenu_item, Qremap;
97 /* Alist of elements like (DEL . "\d"). */
98 static Lisp_Object exclude_keys;
100 /* Pre-allocated 2-element vector for Fcommand_remapping to use. */
101 static Lisp_Object command_remapping_vector;
103 /* A char with the CHAR_META bit set in a vector or the 0200 bit set
104 in a string key sequence is equivalent to prefixing with this
105 character. */
106 extern Lisp_Object meta_prefix_char;
108 extern Lisp_Object Voverriding_local_map;
110 /* Hash table used to cache a reverse-map to speed up calls to where-is. */
111 static Lisp_Object where_is_cache;
112 /* Which keymaps are reverse-stored in the cache. */
113 static Lisp_Object where_is_cache_keymaps;
115 static Lisp_Object store_in_keymap P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
116 static void fix_submap_inheritance P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
118 static Lisp_Object define_as_prefix P_ ((Lisp_Object, Lisp_Object));
119 static void describe_command P_ ((Lisp_Object, Lisp_Object));
120 static void describe_translation P_ ((Lisp_Object, Lisp_Object));
121 static void describe_map P_ ((Lisp_Object, Lisp_Object,
122 void (*) P_ ((Lisp_Object, Lisp_Object)),
123 int, Lisp_Object, Lisp_Object*, int));
124 static void silly_event_symbol_error P_ ((Lisp_Object));
126 /* Keymap object support - constructors and predicates. */
128 DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0,
129 doc: /* Construct and return a new keymap, of the form (keymap CHARTABLE . ALIST).
130 CHARTABLE is a char-table that holds the bindings for the ASCII
131 characters. ALIST is an assoc-list which holds bindings for function keys,
132 mouse events, and any other things that appear in the input stream.
133 All entries in it are initially nil, meaning "command undefined".
135 The optional arg STRING supplies a menu name for the keymap
136 in case you use it as a menu with `x-popup-menu'. */)
137 (string)
138 Lisp_Object string;
140 Lisp_Object tail;
141 if (!NILP (string))
142 tail = Fcons (string, Qnil);
143 else
144 tail = Qnil;
145 return Fcons (Qkeymap,
146 Fcons (Fmake_char_table (Qkeymap, Qnil), tail));
149 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0,
150 doc: /* Construct and return a new sparse keymap.
151 Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),
152 which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),
153 which binds the function key or mouse event SYMBOL to DEFINITION.
154 Initially the alist is nil.
156 The optional arg STRING supplies a menu name for the keymap
157 in case you use it as a menu with `x-popup-menu'. */)
158 (string)
159 Lisp_Object string;
161 if (!NILP (string))
162 return Fcons (Qkeymap, Fcons (string, Qnil));
163 return Fcons (Qkeymap, Qnil);
166 /* This function is used for installing the standard key bindings
167 at initialization time.
169 For example:
171 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
173 void
174 initial_define_key (keymap, key, defname)
175 Lisp_Object keymap;
176 int key;
177 char *defname;
179 store_in_keymap (keymap, make_number (key), intern (defname));
182 void
183 initial_define_lispy_key (keymap, keyname, defname)
184 Lisp_Object keymap;
185 char *keyname;
186 char *defname;
188 store_in_keymap (keymap, intern (keyname), intern (defname));
191 DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0,
192 doc: /* Return t if OBJECT is a keymap.
194 A keymap is a list (keymap . ALIST),
195 or a symbol whose function definition is itself a keymap.
196 ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);
197 a vector of densely packed bindings for small character codes
198 is also allowed as an element. */)
199 (object)
200 Lisp_Object object;
202 return (KEYMAPP (object) ? Qt : Qnil);
205 DEFUN ("keymap-prompt", Fkeymap_prompt, Skeymap_prompt, 1, 1, 0,
206 doc: /* Return the prompt-string of a keymap MAP.
207 If non-nil, the prompt is shown in the echo-area
208 when reading a key-sequence to be looked-up in this keymap. */)
209 (map)
210 Lisp_Object map;
212 while (CONSP (map))
214 register Lisp_Object tem;
215 tem = Fcar (map);
216 if (STRINGP (tem))
217 return tem;
218 map = Fcdr (map);
220 return Qnil;
223 /* Check that OBJECT is a keymap (after dereferencing through any
224 symbols). If it is, return it.
226 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
227 is an autoload form, do the autoload and try again.
228 If AUTOLOAD is nonzero, callers must assume GC is possible.
230 If the map needs to be autoloaded, but AUTOLOAD is zero (and ERROR
231 is zero as well), return Qt.
233 ERROR controls how we respond if OBJECT isn't a keymap.
234 If ERROR is non-zero, signal an error; otherwise, just return Qnil.
236 Note that most of the time, we don't want to pursue autoloads.
237 Functions like Faccessible_keymaps which scan entire keymap trees
238 shouldn't load every autoloaded keymap. I'm not sure about this,
239 but it seems to me that only read_key_sequence, Flookup_key, and
240 Fdefine_key should cause keymaps to be autoloaded.
242 This function can GC when AUTOLOAD is non-zero, because it calls
243 do_autoload which can GC. */
245 Lisp_Object
246 get_keymap (object, error, autoload)
247 Lisp_Object object;
248 int error, autoload;
250 Lisp_Object tem;
252 autoload_retry:
253 if (NILP (object))
254 goto end;
255 if (CONSP (object) && EQ (XCAR (object), Qkeymap))
256 return object;
258 tem = indirect_function (object);
259 if (CONSP (tem))
261 if (EQ (XCAR (tem), Qkeymap))
262 return tem;
264 /* Should we do an autoload? Autoload forms for keymaps have
265 Qkeymap as their fifth element. */
266 if ((autoload || !error) && EQ (XCAR (tem), Qautoload))
268 Lisp_Object tail;
270 tail = Fnth (make_number (4), tem);
271 if (EQ (tail, Qkeymap))
273 if (autoload)
275 struct gcpro gcpro1, gcpro2;
277 GCPRO2 (tem, object);
278 do_autoload (tem, object);
279 UNGCPRO;
281 goto autoload_retry;
283 else
284 return Qt;
289 end:
290 if (error)
291 wrong_type_argument (Qkeymapp, object);
292 return Qnil;
295 /* Return the parent map of KEYMAP, or nil if it has none.
296 We assume that KEYMAP is a valid keymap. */
298 Lisp_Object
299 keymap_parent (keymap, autoload)
300 Lisp_Object keymap;
301 int autoload;
303 Lisp_Object list;
305 keymap = get_keymap (keymap, 1, autoload);
307 /* Skip past the initial element `keymap'. */
308 list = XCDR (keymap);
309 for (; CONSP (list); list = XCDR (list))
311 /* See if there is another `keymap'. */
312 if (KEYMAPP (list))
313 return list;
316 return get_keymap (list, 0, autoload);
319 DEFUN ("keymap-parent", Fkeymap_parent, Skeymap_parent, 1, 1, 0,
320 doc: /* Return the parent keymap of KEYMAP. */)
321 (keymap)
322 Lisp_Object keymap;
324 return keymap_parent (keymap, 1);
327 /* Check whether MAP is one of MAPS parents. */
329 keymap_memberp (map, maps)
330 Lisp_Object map, maps;
332 if (NILP (map)) return 0;
333 while (KEYMAPP (maps) && !EQ (map, maps))
334 maps = keymap_parent (maps, 0);
335 return (EQ (map, maps));
338 /* Set the parent keymap of MAP to PARENT. */
340 DEFUN ("set-keymap-parent", Fset_keymap_parent, Sset_keymap_parent, 2, 2, 0,
341 doc: /* Modify KEYMAP to set its parent map to PARENT.
342 PARENT should be nil or another keymap. */)
343 (keymap, parent)
344 Lisp_Object keymap, parent;
346 Lisp_Object list, prev;
347 struct gcpro gcpro1, gcpro2;
348 int i;
350 /* Force a keymap flush for the next call to where-is.
351 Since this can be called from within where-is, we don't set where_is_cache
352 directly but only where_is_cache_keymaps, since where_is_cache shouldn't
353 be changed during where-is, while where_is_cache_keymaps is only used at
354 the very beginning of where-is and can thus be changed here without any
355 adverse effect.
356 This is a very minor correctness (rather than safety) issue. */
357 where_is_cache_keymaps = Qt;
359 GCPRO2 (keymap, parent);
360 keymap = get_keymap (keymap, 1, 1);
362 if (!NILP (parent))
364 parent = get_keymap (parent, 1, 1);
366 /* Check for cycles. */
367 if (keymap_memberp (keymap, parent))
368 error ("Cyclic keymap inheritance");
371 /* Skip past the initial element `keymap'. */
372 prev = keymap;
373 while (1)
375 list = XCDR (prev);
376 /* If there is a parent keymap here, replace it.
377 If we came to the end, add the parent in PREV. */
378 if (!CONSP (list) || KEYMAPP (list))
380 /* If we already have the right parent, return now
381 so that we avoid the loops below. */
382 if (EQ (XCDR (prev), parent))
383 RETURN_UNGCPRO (parent);
385 XSETCDR (prev, parent);
386 break;
388 prev = list;
391 /* Scan through for submaps, and set their parents too. */
393 for (list = XCDR (keymap); CONSP (list); list = XCDR (list))
395 /* Stop the scan when we come to the parent. */
396 if (EQ (XCAR (list), Qkeymap))
397 break;
399 /* If this element holds a prefix map, deal with it. */
400 if (CONSP (XCAR (list))
401 && CONSP (XCDR (XCAR (list))))
402 fix_submap_inheritance (keymap, XCAR (XCAR (list)),
403 XCDR (XCAR (list)));
405 if (VECTORP (XCAR (list)))
406 for (i = 0; i < XVECTOR (XCAR (list))->size; i++)
407 if (CONSP (XVECTOR (XCAR (list))->contents[i]))
408 fix_submap_inheritance (keymap, make_number (i),
409 XVECTOR (XCAR (list))->contents[i]);
411 if (CHAR_TABLE_P (XCAR (list)))
413 Lisp_Object indices[3];
415 map_char_table (fix_submap_inheritance, Qnil, XCAR (list),
416 keymap, 0, indices);
420 RETURN_UNGCPRO (parent);
423 /* EVENT is defined in MAP as a prefix, and SUBMAP is its definition.
424 if EVENT is also a prefix in MAP's parent,
425 make sure that SUBMAP inherits that definition as its own parent. */
427 static void
428 fix_submap_inheritance (map, event, submap)
429 Lisp_Object map, event, submap;
431 Lisp_Object map_parent, parent_entry;
433 /* SUBMAP is a cons that we found as a key binding.
434 Discard the other things found in a menu key binding. */
436 submap = get_keymap (get_keyelt (submap, 0), 0, 0);
438 /* If it isn't a keymap now, there's no work to do. */
439 if (!CONSP (submap))
440 return;
442 map_parent = keymap_parent (map, 0);
443 if (!NILP (map_parent))
444 parent_entry =
445 get_keymap (access_keymap (map_parent, event, 0, 0, 0), 0, 0);
446 else
447 parent_entry = Qnil;
449 /* If MAP's parent has something other than a keymap,
450 our own submap shadows it completely. */
451 if (!CONSP (parent_entry))
452 return;
454 if (! EQ (parent_entry, submap))
456 Lisp_Object submap_parent;
457 submap_parent = submap;
458 while (1)
460 Lisp_Object tem;
462 tem = keymap_parent (submap_parent, 0);
464 if (KEYMAPP (tem))
466 if (keymap_memberp (tem, parent_entry))
467 /* Fset_keymap_parent could create a cycle. */
468 return;
469 submap_parent = tem;
471 else
472 break;
474 Fset_keymap_parent (submap_parent, parent_entry);
478 /* Look up IDX in MAP. IDX may be any sort of event.
479 Note that this does only one level of lookup; IDX must be a single
480 event, not a sequence.
482 If T_OK is non-zero, bindings for Qt are treated as default
483 bindings; any key left unmentioned by other tables and bindings is
484 given the binding of Qt.
486 If T_OK is zero, bindings for Qt are not treated specially.
488 If NOINHERIT, don't accept a subkeymap found in an inherited keymap. */
490 Lisp_Object
491 access_keymap (map, idx, t_ok, noinherit, autoload)
492 Lisp_Object map;
493 Lisp_Object idx;
494 int t_ok;
495 int noinherit;
496 int autoload;
498 Lisp_Object val;
500 /* Qunbound in VAL means we have found no binding yet. */
501 val = Qunbound;
503 /* If idx is a list (some sort of mouse click, perhaps?),
504 the index we want to use is the car of the list, which
505 ought to be a symbol. */
506 idx = EVENT_HEAD (idx);
508 /* If idx is a symbol, it might have modifiers, which need to
509 be put in the canonical order. */
510 if (SYMBOLP (idx))
511 idx = reorder_modifiers (idx);
512 else if (INTEGERP (idx))
513 /* Clobber the high bits that can be present on a machine
514 with more than 24 bits of integer. */
515 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
517 /* Handle the special meta -> esc mapping. */
518 if (INTEGERP (idx) && XUINT (idx) & meta_modifier)
520 /* See if there is a meta-map. If there's none, there is
521 no binding for IDX, unless a default binding exists in MAP. */
522 struct gcpro gcpro1;
523 Lisp_Object meta_map;
524 GCPRO1 (map);
525 meta_map = get_keymap (access_keymap (map, meta_prefix_char,
526 t_ok, noinherit, autoload),
527 0, autoload);
528 UNGCPRO;
529 if (CONSP (meta_map))
531 map = meta_map;
532 idx = make_number (XUINT (idx) & ~meta_modifier);
534 else if (t_ok)
535 /* Set IDX to t, so that we only find a default binding. */
536 idx = Qt;
537 else
538 /* We know there is no binding. */
539 return Qnil;
542 /* t_binding is where we put a default binding that applies,
543 to use in case we do not find a binding specifically
544 for this key sequence. */
546 Lisp_Object tail;
547 Lisp_Object t_binding = Qnil;
548 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
550 GCPRO4 (map, tail, idx, t_binding);
552 /* If `t_ok' is 2, both `t' and generic-char bindings are accepted.
553 If it is 1, only generic-char bindings are accepted.
554 Otherwise, neither are. */
555 t_ok = t_ok ? 2 : 0;
557 for (tail = XCDR (map);
558 (CONSP (tail)
559 || (tail = get_keymap (tail, 0, autoload), CONSP (tail)));
560 tail = XCDR (tail))
562 Lisp_Object binding;
564 binding = XCAR (tail);
565 if (SYMBOLP (binding))
567 /* If NOINHERIT, stop finding prefix definitions
568 after we pass a second occurrence of the `keymap' symbol. */
569 if (noinherit && EQ (binding, Qkeymap))
570 RETURN_UNGCPRO (Qnil);
572 else if (CONSP (binding))
574 Lisp_Object key = XCAR (binding);
576 if (EQ (key, idx))
577 val = XCDR (binding);
578 else if (t_ok
579 && INTEGERP (idx)
580 && (XINT (idx) & CHAR_MODIFIER_MASK) == 0
581 && INTEGERP (key)
582 && (XINT (key) & CHAR_MODIFIER_MASK) == 0
583 && !SINGLE_BYTE_CHAR_P (XINT (idx))
584 && !SINGLE_BYTE_CHAR_P (XINT (key))
585 && CHAR_VALID_P (XINT (key), 1)
586 && !CHAR_VALID_P (XINT (key), 0)
587 && (CHAR_CHARSET (XINT (key))
588 == CHAR_CHARSET (XINT (idx))))
590 /* KEY is the generic character of the charset of IDX.
591 Use KEY's binding if there isn't a binding for IDX
592 itself. */
593 t_binding = XCDR (binding);
594 t_ok = 0;
596 else if (t_ok > 1 && EQ (key, Qt))
598 t_binding = XCDR (binding);
599 t_ok = 1;
602 else if (VECTORP (binding))
604 if (NATNUMP (idx) && XFASTINT (idx) < ASIZE (binding))
605 val = AREF (binding, XFASTINT (idx));
607 else if (CHAR_TABLE_P (binding))
609 /* Character codes with modifiers
610 are not included in a char-table.
611 All character codes without modifiers are included. */
612 if (NATNUMP (idx) && (XFASTINT (idx) & CHAR_MODIFIER_MASK) == 0)
614 val = Faref (binding, idx);
615 /* `nil' has a special meaning for char-tables, so
616 we use something else to record an explicitly
617 unbound entry. */
618 if (NILP (val))
619 val = Qunbound;
623 /* If we found a binding, clean it up and return it. */
624 if (!EQ (val, Qunbound))
626 if (EQ (val, Qt))
627 /* A Qt binding is just like an explicit nil binding
628 (i.e. it shadows any parent binding but not bindings in
629 keymaps of lower precedence). */
630 val = Qnil;
631 val = get_keyelt (val, autoload);
632 if (KEYMAPP (val))
633 fix_submap_inheritance (map, idx, val);
634 RETURN_UNGCPRO (val);
636 QUIT;
638 UNGCPRO;
639 return get_keyelt (t_binding, autoload);
643 static void
644 map_keymap_item (fun, args, key, val, data)
645 map_keymap_function_t fun;
646 Lisp_Object args, key, val;
647 void *data;
649 /* We should maybe try to detect bindings shadowed by previous
650 ones and things like that. */
651 if (EQ (val, Qt))
652 val = Qnil;
653 (*fun) (key, val, args, data);
656 static void
657 map_keymap_char_table_item (args, key, val)
658 Lisp_Object args, key, val;
660 if (!NILP (val))
662 map_keymap_function_t fun = XSAVE_VALUE (XCAR (args))->pointer;
663 args = XCDR (args);
664 map_keymap_item (fun, XCDR (args), key, val,
665 XSAVE_VALUE (XCAR (args))->pointer);
669 /* Call FUN for every binding in MAP.
670 FUN is called with 4 arguments: FUN (KEY, BINDING, ARGS, DATA). */
671 void
672 map_keymap (map, fun, args, data, autoload)
673 map_keymap_function_t fun;
674 Lisp_Object map, args;
675 void *data;
676 int autoload;
678 struct gcpro gcpro1, gcpro2, gcpro3;
679 Lisp_Object tail;
681 GCPRO3 (map, args, tail);
682 map = get_keymap (map, 1, autoload);
683 for (tail = (CONSP (map) && EQ (Qkeymap, XCAR (map))) ? XCDR (map) : map;
684 CONSP (tail) || (tail = get_keymap (tail, 0, autoload), CONSP (tail));
685 tail = XCDR (tail))
687 Lisp_Object binding = XCAR (tail);
689 if (CONSP (binding))
690 map_keymap_item (fun, args, XCAR (binding), XCDR (binding), data);
691 else if (VECTORP (binding))
693 /* Loop over the char values represented in the vector. */
694 int len = ASIZE (binding);
695 int c;
696 abort();
697 for (c = 0; c < len; c++)
699 Lisp_Object character;
700 XSETFASTINT (character, c);
701 map_keymap_item (fun, args, character, AREF (binding, c), data);
704 else if (CHAR_TABLE_P (binding))
706 Lisp_Object indices[3];
707 map_char_table (map_keymap_char_table_item, Qnil, binding,
708 Fcons (make_save_value (fun, 0),
709 Fcons (make_save_value (data, 0),
710 args)),
711 0, indices);
714 UNGCPRO;
717 static void
718 map_keymap_call (key, val, fun, dummy)
719 Lisp_Object key, val, fun;
720 void *dummy;
722 call2 (fun, key, val);
725 DEFUN ("map-keymap", Fmap_keymap, Smap_keymap, 2, 2, 0,
726 doc: /* Call FUNCTION for every binding in KEYMAP.
727 FUNCTION is called with two arguments: the event and its binding. */)
728 (function, keymap)
729 Lisp_Object function, keymap;
731 if (INTEGERP (function))
732 /* We have to stop integers early since map_keymap gives them special
733 significance. */
734 Fsignal (Qinvalid_function, Fcons (function, Qnil));
735 map_keymap (keymap, map_keymap_call, function, NULL, 1);
736 return Qnil;
739 /* Given OBJECT which was found in a slot in a keymap,
740 trace indirect definitions to get the actual definition of that slot.
741 An indirect definition is a list of the form
742 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
743 and INDEX is the object to look up in KEYMAP to yield the definition.
745 Also if OBJECT has a menu string as the first element,
746 remove that. Also remove a menu help string as second element.
748 If AUTOLOAD is nonzero, load autoloadable keymaps
749 that are referred to with indirection. */
751 Lisp_Object
752 get_keyelt (object, autoload)
753 Lisp_Object object;
754 int autoload;
756 while (1)
758 if (!(CONSP (object)))
759 /* This is really the value. */
760 return object;
762 /* If the keymap contents looks like (keymap ...) or (lambda ...)
763 then use itself. */
764 else if (EQ (XCAR (object), Qkeymap) || EQ (XCAR (object), Qlambda))
765 return object;
767 /* If the keymap contents looks like (menu-item name . DEFN)
768 or (menu-item name DEFN ...) then use DEFN.
769 This is a new format menu item. */
770 else if (EQ (XCAR (object), Qmenu_item))
772 if (CONSP (XCDR (object)))
774 Lisp_Object tem;
776 object = XCDR (XCDR (object));
777 tem = object;
778 if (CONSP (object))
779 object = XCAR (object);
781 /* If there's a `:filter FILTER', apply FILTER to the
782 menu-item's definition to get the real definition to
783 use. */
784 for (; CONSP (tem) && CONSP (XCDR (tem)); tem = XCDR (tem))
785 if (EQ (XCAR (tem), QCfilter) && autoload)
787 Lisp_Object filter;
788 filter = XCAR (XCDR (tem));
789 filter = list2 (filter, list2 (Qquote, object));
790 object = menu_item_eval_property (filter);
791 break;
794 else
795 /* Invalid keymap. */
796 return object;
799 /* If the keymap contents looks like (STRING . DEFN), use DEFN.
800 Keymap alist elements like (CHAR MENUSTRING . DEFN)
801 will be used by HierarKey menus. */
802 else if (STRINGP (XCAR (object)))
804 object = XCDR (object);
805 /* Also remove a menu help string, if any,
806 following the menu item name. */
807 if (CONSP (object) && STRINGP (XCAR (object)))
808 object = XCDR (object);
809 /* Also remove the sublist that caches key equivalences, if any. */
810 if (CONSP (object) && CONSP (XCAR (object)))
812 Lisp_Object carcar;
813 carcar = XCAR (XCAR (object));
814 if (NILP (carcar) || VECTORP (carcar))
815 object = XCDR (object);
819 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
820 else
822 struct gcpro gcpro1;
823 Lisp_Object map;
824 GCPRO1 (object);
825 map = get_keymap (Fcar_safe (object), 0, autoload);
826 UNGCPRO;
827 return (!CONSP (map) ? object /* Invalid keymap */
828 : access_keymap (map, Fcdr (object), 0, 0, autoload));
833 static Lisp_Object
834 store_in_keymap (keymap, idx, def)
835 Lisp_Object keymap;
836 register Lisp_Object idx;
837 register Lisp_Object def;
839 /* Flush any reverse-map cache. */
840 where_is_cache = Qnil;
841 where_is_cache_keymaps = Qt;
843 /* If we are preparing to dump, and DEF is a menu element
844 with a menu item indicator, copy it to ensure it is not pure. */
845 if (CONSP (def) && PURE_P (def)
846 && (EQ (XCAR (def), Qmenu_item) || STRINGP (XCAR (def))))
847 def = Fcons (XCAR (def), XCDR (def));
849 if (!CONSP (keymap) || !EQ (XCAR (keymap), Qkeymap))
850 error ("attempt to define a key in a non-keymap");
852 /* If idx is a list (some sort of mouse click, perhaps?),
853 the index we want to use is the car of the list, which
854 ought to be a symbol. */
855 idx = EVENT_HEAD (idx);
857 /* If idx is a symbol, it might have modifiers, which need to
858 be put in the canonical order. */
859 if (SYMBOLP (idx))
860 idx = reorder_modifiers (idx);
861 else if (INTEGERP (idx))
862 /* Clobber the high bits that can be present on a machine
863 with more than 24 bits of integer. */
864 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
866 /* Scan the keymap for a binding of idx. */
868 Lisp_Object tail;
870 /* The cons after which we should insert new bindings. If the
871 keymap has a table element, we record its position here, so new
872 bindings will go after it; this way, the table will stay
873 towards the front of the alist and character lookups in dense
874 keymaps will remain fast. Otherwise, this just points at the
875 front of the keymap. */
876 Lisp_Object insertion_point;
878 insertion_point = keymap;
879 for (tail = XCDR (keymap); CONSP (tail); tail = XCDR (tail))
881 Lisp_Object elt;
883 elt = XCAR (tail);
884 if (VECTORP (elt))
886 if (NATNUMP (idx) && XFASTINT (idx) < ASIZE (elt))
888 ASET (elt, XFASTINT (idx), def);
889 return def;
891 insertion_point = tail;
893 else if (CHAR_TABLE_P (elt))
895 /* Character codes with modifiers
896 are not included in a char-table.
897 All character codes without modifiers are included. */
898 if (NATNUMP (idx) && !(XFASTINT (idx) & CHAR_MODIFIER_MASK))
900 Faset (elt, idx,
901 /* `nil' has a special meaning for char-tables, so
902 we use something else to record an explicitly
903 unbound entry. */
904 NILP (def) ? Qt : def);
905 return def;
907 insertion_point = tail;
909 else if (CONSP (elt))
911 if (EQ (idx, XCAR (elt)))
913 XSETCDR (elt, def);
914 return def;
917 else if (EQ (elt, Qkeymap))
918 /* If we find a 'keymap' symbol in the spine of KEYMAP,
919 then we must have found the start of a second keymap
920 being used as the tail of KEYMAP, and a binding for IDX
921 should be inserted before it. */
922 goto keymap_end;
924 QUIT;
927 keymap_end:
928 /* We have scanned the entire keymap, and not found a binding for
929 IDX. Let's add one. */
930 XSETCDR (insertion_point,
931 Fcons (Fcons (idx, def), XCDR (insertion_point)));
934 return def;
937 EXFUN (Fcopy_keymap, 1);
939 Lisp_Object
940 copy_keymap_item (elt)
941 Lisp_Object elt;
943 Lisp_Object res, tem;
945 if (!CONSP (elt))
946 return elt;
948 res = tem = elt;
950 /* Is this a new format menu item. */
951 if (EQ (XCAR (tem), Qmenu_item))
953 /* Copy cell with menu-item marker. */
954 res = elt = Fcons (XCAR (tem), XCDR (tem));
955 tem = XCDR (elt);
956 if (CONSP (tem))
958 /* Copy cell with menu-item name. */
959 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
960 elt = XCDR (elt);
961 tem = XCDR (elt);
963 if (CONSP (tem))
965 /* Copy cell with binding and if the binding is a keymap,
966 copy that. */
967 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
968 elt = XCDR (elt);
969 tem = XCAR (elt);
970 if (CONSP (tem) && EQ (XCAR (tem), Qkeymap))
971 XSETCAR (elt, Fcopy_keymap (tem));
972 tem = XCDR (elt);
973 if (CONSP (tem) && CONSP (XCAR (tem)))
974 /* Delete cache for key equivalences. */
975 XSETCDR (elt, XCDR (tem));
978 else
980 /* It may be an old fomat menu item.
981 Skip the optional menu string. */
982 if (STRINGP (XCAR (tem)))
984 /* Copy the cell, since copy-alist didn't go this deep. */
985 res = elt = Fcons (XCAR (tem), XCDR (tem));
986 tem = XCDR (elt);
987 /* Also skip the optional menu help string. */
988 if (CONSP (tem) && STRINGP (XCAR (tem)))
990 XSETCDR (elt, Fcons (XCAR (tem), XCDR (tem)));
991 elt = XCDR (elt);
992 tem = XCDR (elt);
994 /* There may also be a list that caches key equivalences.
995 Just delete it for the new keymap. */
996 if (CONSP (tem)
997 && CONSP (XCAR (tem))
998 && (NILP (XCAR (XCAR (tem)))
999 || VECTORP (XCAR (XCAR (tem)))))
1001 XSETCDR (elt, XCDR (tem));
1002 tem = XCDR (tem);
1004 if (CONSP (tem) && EQ (XCAR (tem), Qkeymap))
1005 XSETCDR (elt, Fcopy_keymap (tem));
1007 else if (EQ (XCAR (tem), Qkeymap))
1008 res = Fcopy_keymap (elt);
1010 return res;
1013 static void
1014 copy_keymap_1 (chartable, idx, elt)
1015 Lisp_Object chartable, idx, elt;
1017 Faset (chartable, idx, copy_keymap_item (elt));
1020 DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
1021 doc: /* Return a copy of the keymap KEYMAP.
1022 The copy starts out with the same definitions of KEYMAP,
1023 but changing either the copy or KEYMAP does not affect the other.
1024 Any key definitions that are subkeymaps are recursively copied.
1025 However, a key definition which is a symbol whose definition is a keymap
1026 is not copied. */)
1027 (keymap)
1028 Lisp_Object keymap;
1030 register Lisp_Object copy, tail;
1031 keymap = get_keymap (keymap, 1, 0);
1032 copy = tail = Fcons (Qkeymap, Qnil);
1033 keymap = XCDR (keymap); /* Skip the `keymap' symbol. */
1035 while (CONSP (keymap) && !EQ (XCAR (keymap), Qkeymap))
1037 Lisp_Object elt = XCAR (keymap);
1038 if (CHAR_TABLE_P (elt))
1040 Lisp_Object indices[3];
1041 elt = Fcopy_sequence (elt);
1042 map_char_table (copy_keymap_1, Qnil, elt, elt, 0, indices);
1044 else if (VECTORP (elt))
1046 int i;
1047 elt = Fcopy_sequence (elt);
1048 for (i = 0; i < ASIZE (elt); i++)
1049 ASET (elt, i, copy_keymap_item (AREF (elt, i)));
1051 else if (CONSP (elt))
1052 elt = Fcons (XCAR (elt), copy_keymap_item (XCDR (elt)));
1053 XSETCDR (tail, Fcons (elt, Qnil));
1054 tail = XCDR (tail);
1055 keymap = XCDR (keymap);
1057 XSETCDR (tail, keymap);
1058 return copy;
1061 /* Simple Keymap mutators and accessors. */
1063 /* GC is possible in this function if it autoloads a keymap. */
1065 DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
1066 doc: /* In KEYMAP, define key sequence KEY as DEF.
1067 KEYMAP is a keymap.
1069 KEY is a string or a vector of symbols and characters meaning a
1070 sequence of keystrokes and events. Non-ASCII characters with codes
1071 above 127 (such as ISO Latin-1) can be included if you use a vector.
1072 Using [t] for KEY creates a default definition, which applies to any
1073 event type that has no other definition in this keymap.
1075 DEF is anything that can be a key's definition:
1076 nil (means key is undefined in this keymap),
1077 a command (a Lisp function suitable for interactive calling)
1078 a string (treated as a keyboard macro),
1079 a keymap (to define a prefix key),
1080 a symbol. When the key is looked up, the symbol will stand for its
1081 function definition, which should at that time be one of the above,
1082 or another symbol whose function definition is used, etc.
1083 a cons (STRING . DEFN), meaning that DEFN is the definition
1084 (DEFN should be a valid definition in its own right),
1085 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.
1087 If KEYMAP is a sparse keymap with a binding for KEY, the existing
1088 binding is altered. If there is no binding for KEY, the new pair
1089 binding KEY to DEF is added at the front of KEYMAP. */)
1090 (keymap, key, def)
1091 Lisp_Object keymap;
1092 Lisp_Object key;
1093 Lisp_Object def;
1095 register int idx;
1096 register Lisp_Object c;
1097 register Lisp_Object cmd;
1098 int metized = 0;
1099 int meta_bit;
1100 int length;
1101 struct gcpro gcpro1, gcpro2, gcpro3;
1103 GCPRO3 (keymap, key, def);
1104 keymap = get_keymap (keymap, 1, 1);
1106 if (!VECTORP (key) && !STRINGP (key))
1107 key = wrong_type_argument (Qarrayp, key);
1109 length = XFASTINT (Flength (key));
1110 if (length == 0)
1111 RETURN_UNGCPRO (Qnil);
1113 if (SYMBOLP (def) && !EQ (Vdefine_key_rebound_commands, Qt))
1114 Vdefine_key_rebound_commands = Fcons (def, Vdefine_key_rebound_commands);
1116 meta_bit = VECTORP (key) ? meta_modifier : 0x80;
1118 idx = 0;
1119 while (1)
1121 c = Faref (key, make_number (idx));
1123 if (CONSP (c) && lucid_event_type_list_p (c))
1124 c = Fevent_convert_list (c);
1126 if (SYMBOLP (c))
1127 silly_event_symbol_error (c);
1129 if (INTEGERP (c)
1130 && (XINT (c) & meta_bit)
1131 && !metized)
1133 c = meta_prefix_char;
1134 metized = 1;
1136 else
1138 if (INTEGERP (c))
1139 XSETINT (c, XINT (c) & ~meta_bit);
1141 metized = 0;
1142 idx++;
1145 if (!INTEGERP (c) && !SYMBOLP (c) && !CONSP (c))
1146 error ("Key sequence contains invalid event");
1148 if (idx == length)
1149 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
1151 cmd = access_keymap (keymap, c, 0, 1, 1);
1153 /* If this key is undefined, make it a prefix. */
1154 if (NILP (cmd))
1155 cmd = define_as_prefix (keymap, c);
1157 keymap = get_keymap (cmd, 0, 1);
1158 if (!CONSP (keymap))
1159 /* We must use Fkey_description rather than just passing key to
1160 error; key might be a vector, not a string. */
1161 error ("Key sequence %s uses invalid prefix characters",
1162 SDATA (Fkey_description (key)));
1166 /* This function may GC (it calls Fkey_binding). */
1168 DEFUN ("command-remapping", Fcommand_remapping, Scommand_remapping, 1, 1, 0,
1169 doc: /* Return the remapping for command COMMAND in current keymaps.
1170 Returns nil if COMMAND is not remapped (or not a symbol). */)
1171 (command)
1172 Lisp_Object command;
1174 if (!SYMBOLP (command))
1175 return Qnil;
1177 ASET (command_remapping_vector, 1, command);
1178 return Fkey_binding (command_remapping_vector, Qnil, Qt);
1181 /* Value is number if KEY is too long; nil if valid but has no definition. */
1182 /* GC is possible in this function if it autoloads a keymap. */
1184 DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
1185 doc: /* In keymap KEYMAP, look up key sequence KEY. Return the definition.
1186 nil means undefined. See doc of `define-key' for kinds of definitions.
1188 A number as value means KEY is "too long";
1189 that is, characters or symbols in it except for the last one
1190 fail to be a valid sequence of prefix characters in KEYMAP.
1191 The number is how many characters at the front of KEY
1192 it takes to reach a non-prefix command.
1194 Normally, `lookup-key' ignores bindings for t, which act as default
1195 bindings, used when nothing else in the keymap applies; this makes it
1196 usable as a general function for probing keymaps. However, if the
1197 third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will
1198 recognize the default bindings, just as `read-key-sequence' does. */)
1199 (keymap, key, accept_default)
1200 Lisp_Object keymap;
1201 Lisp_Object key;
1202 Lisp_Object accept_default;
1204 register int idx;
1205 register Lisp_Object cmd;
1206 register Lisp_Object c;
1207 int length;
1208 int t_ok = !NILP (accept_default);
1209 struct gcpro gcpro1, gcpro2;
1211 GCPRO2 (keymap, key);
1212 keymap = get_keymap (keymap, 1, 1);
1214 if (!VECTORP (key) && !STRINGP (key))
1215 key = wrong_type_argument (Qarrayp, key);
1217 length = XFASTINT (Flength (key));
1218 if (length == 0)
1219 RETURN_UNGCPRO (keymap);
1221 idx = 0;
1222 while (1)
1224 c = Faref (key, make_number (idx++));
1226 if (CONSP (c) && lucid_event_type_list_p (c))
1227 c = Fevent_convert_list (c);
1229 /* Turn the 8th bit of string chars into a meta modifier. */
1230 if (XINT (c) & 0x80 && STRINGP (key))
1231 XSETINT (c, (XINT (c) | meta_modifier) & ~0x80);
1233 /* Allow string since binding for `menu-bar-select-buffer'
1234 includes the buffer name in the key sequence. */
1235 if (!INTEGERP (c) && !SYMBOLP (c) && !CONSP (c) && !STRINGP (c))
1236 error ("Key sequence contains invalid event");
1238 cmd = access_keymap (keymap, c, t_ok, 0, 1);
1239 if (idx == length)
1240 RETURN_UNGCPRO (cmd);
1242 keymap = get_keymap (cmd, 0, 1);
1243 if (!CONSP (keymap))
1244 RETURN_UNGCPRO (make_number (idx));
1246 QUIT;
1250 /* Make KEYMAP define event C as a keymap (i.e., as a prefix).
1251 Assume that currently it does not define C at all.
1252 Return the keymap. */
1254 static Lisp_Object
1255 define_as_prefix (keymap, c)
1256 Lisp_Object keymap, c;
1258 Lisp_Object cmd;
1260 cmd = Fmake_sparse_keymap (Qnil);
1261 /* If this key is defined as a prefix in an inherited keymap,
1262 make it a prefix in this map, and make its definition
1263 inherit the other prefix definition. */
1264 cmd = nconc2 (cmd, access_keymap (keymap, c, 0, 0, 0));
1265 store_in_keymap (keymap, c, cmd);
1267 return cmd;
1270 /* Append a key to the end of a key sequence. We always make a vector. */
1272 Lisp_Object
1273 append_key (key_sequence, key)
1274 Lisp_Object key_sequence, key;
1276 Lisp_Object args[2];
1278 args[0] = key_sequence;
1280 args[1] = Fcons (key, Qnil);
1281 return Fvconcat (2, args);
1284 /* Given a event type C which is a symbol,
1285 signal an error if is a mistake such as RET or M-RET or C-DEL, etc. */
1287 static void
1288 silly_event_symbol_error (c)
1289 Lisp_Object c;
1291 Lisp_Object parsed, base, name, assoc;
1292 int modifiers;
1294 parsed = parse_modifiers (c);
1295 modifiers = (int) XUINT (XCAR (XCDR (parsed)));
1296 base = XCAR (parsed);
1297 name = Fsymbol_name (base);
1298 /* This alist includes elements such as ("RET" . "\\r"). */
1299 assoc = Fassoc (name, exclude_keys);
1301 if (! NILP (assoc))
1303 char new_mods[sizeof ("\\A-\\C-\\H-\\M-\\S-\\s-")];
1304 char *p = new_mods;
1305 Lisp_Object keystring;
1306 if (modifiers & alt_modifier)
1307 { *p++ = '\\'; *p++ = 'A'; *p++ = '-'; }
1308 if (modifiers & ctrl_modifier)
1309 { *p++ = '\\'; *p++ = 'C'; *p++ = '-'; }
1310 if (modifiers & hyper_modifier)
1311 { *p++ = '\\'; *p++ = 'H'; *p++ = '-'; }
1312 if (modifiers & meta_modifier)
1313 { *p++ = '\\'; *p++ = 'M'; *p++ = '-'; }
1314 if (modifiers & shift_modifier)
1315 { *p++ = '\\'; *p++ = 'S'; *p++ = '-'; }
1316 if (modifiers & super_modifier)
1317 { *p++ = '\\'; *p++ = 's'; *p++ = '-'; }
1318 *p = 0;
1320 c = reorder_modifiers (c);
1321 keystring = concat2 (build_string (new_mods), XCDR (assoc));
1323 error ((modifiers & ~meta_modifier
1324 ? "To bind the key %s, use [?%s], not [%s]"
1325 : "To bind the key %s, use \"%s\", not [%s]"),
1326 SDATA (SYMBOL_NAME (c)), SDATA (keystring),
1327 SDATA (SYMBOL_NAME (c)));
1331 /* Global, local, and minor mode keymap stuff. */
1333 /* We can't put these variables inside current_minor_maps, since under
1334 some systems, static gets macro-defined to be the empty string.
1335 Ickypoo. */
1336 static Lisp_Object *cmm_modes = NULL, *cmm_maps = NULL;
1337 static int cmm_size = 0;
1339 /* Error handler used in current_minor_maps. */
1340 static Lisp_Object
1341 current_minor_maps_error ()
1343 return Qnil;
1346 /* Store a pointer to an array of the keymaps of the currently active
1347 minor modes in *buf, and return the number of maps it contains.
1349 This function always returns a pointer to the same buffer, and may
1350 free or reallocate it, so if you want to keep it for a long time or
1351 hand it out to lisp code, copy it. This procedure will be called
1352 for every key sequence read, so the nice lispy approach (return a
1353 new assoclist, list, what have you) for each invocation would
1354 result in a lot of consing over time.
1356 If we used xrealloc/xmalloc and ran out of memory, they would throw
1357 back to the command loop, which would try to read a key sequence,
1358 which would call this function again, resulting in an infinite
1359 loop. Instead, we'll use realloc/malloc and silently truncate the
1360 list, let the key sequence be read, and hope some other piece of
1361 code signals the error. */
1363 current_minor_maps (modeptr, mapptr)
1364 Lisp_Object **modeptr, **mapptr;
1366 int i = 0;
1367 int list_number = 0;
1368 Lisp_Object alist, assoc, var, val;
1369 Lisp_Object emulation_alists;
1370 Lisp_Object lists[2];
1372 emulation_alists = Vemulation_mode_map_alists;
1373 lists[0] = Vminor_mode_overriding_map_alist;
1374 lists[1] = Vminor_mode_map_alist;
1376 for (list_number = 0; list_number < 2; list_number++)
1378 if (CONSP (emulation_alists))
1380 alist = XCAR (emulation_alists);
1381 emulation_alists = XCDR (emulation_alists);
1382 if (SYMBOLP (alist))
1383 alist = find_symbol_value (alist);
1384 list_number = -1;
1386 else
1387 alist = lists[list_number];
1389 for ( ; CONSP (alist); alist = XCDR (alist))
1390 if ((assoc = XCAR (alist), CONSP (assoc))
1391 && (var = XCAR (assoc), SYMBOLP (var))
1392 && (val = find_symbol_value (var), !EQ (val, Qunbound))
1393 && !NILP (val))
1395 Lisp_Object temp;
1397 /* If a variable has an entry in Vminor_mode_overriding_map_alist,
1398 and also an entry in Vminor_mode_map_alist,
1399 ignore the latter. */
1400 if (list_number == 1)
1402 val = assq_no_quit (var, lists[0]);
1403 if (!NILP (val))
1404 continue;
1407 if (i >= cmm_size)
1409 int newsize, allocsize;
1410 Lisp_Object *newmodes, *newmaps;
1412 newsize = cmm_size == 0 ? 30 : cmm_size * 2;
1413 allocsize = newsize * sizeof *newmodes;
1415 /* Use malloc here. See the comment above this function.
1416 Avoid realloc here; it causes spurious traps on GNU/Linux [KFS] */
1417 BLOCK_INPUT;
1418 newmodes = (Lisp_Object *) malloc (allocsize);
1419 if (newmodes)
1421 if (cmm_modes)
1423 bcopy (cmm_modes, newmodes, cmm_size * sizeof cmm_modes[0]);
1424 free (cmm_modes);
1426 cmm_modes = newmodes;
1429 newmaps = (Lisp_Object *) malloc (allocsize);
1430 if (newmaps)
1432 if (cmm_maps)
1434 bcopy (cmm_maps, newmaps, cmm_size * sizeof cmm_maps[0]);
1435 free (cmm_maps);
1437 cmm_maps = newmaps;
1439 UNBLOCK_INPUT;
1441 if (newmodes == NULL || newmaps == NULL)
1442 break;
1443 cmm_size = newsize;
1446 /* Get the keymap definition--or nil if it is not defined. */
1447 temp = internal_condition_case_1 (Findirect_function,
1448 XCDR (assoc),
1449 Qerror, current_minor_maps_error);
1450 if (!NILP (temp))
1452 cmm_modes[i] = var;
1453 cmm_maps [i] = temp;
1454 i++;
1459 if (modeptr) *modeptr = cmm_modes;
1460 if (mapptr) *mapptr = cmm_maps;
1461 return i;
1464 DEFUN ("current-active-maps", Fcurrent_active_maps, Scurrent_active_maps,
1465 0, 1, 0,
1466 doc: /* Return a list of the currently active keymaps.
1467 OLP if non-nil indicates that we should obey `overriding-local-map' and
1468 `overriding-terminal-local-map'. */)
1469 (olp)
1470 Lisp_Object olp;
1472 Lisp_Object keymaps = Fcons (current_global_map, Qnil);
1474 if (!NILP (olp))
1476 if (!NILP (Voverriding_local_map))
1477 keymaps = Fcons (Voverriding_local_map, keymaps);
1478 if (!NILP (current_kboard->Voverriding_terminal_local_map))
1479 keymaps = Fcons (current_kboard->Voverriding_terminal_local_map, keymaps);
1481 if (NILP (XCDR (keymaps)))
1483 Lisp_Object local;
1484 Lisp_Object *maps;
1485 int nmaps, i;
1487 local = get_local_map (PT, current_buffer, Qlocal_map);
1488 if (!NILP (local))
1489 keymaps = Fcons (local, keymaps);
1491 nmaps = current_minor_maps (0, &maps);
1493 for (i = --nmaps; i >= 0; i--)
1494 if (!NILP (maps[i]))
1495 keymaps = Fcons (maps[i], keymaps);
1497 local = get_local_map (PT, current_buffer, Qkeymap);
1498 if (!NILP (local))
1499 keymaps = Fcons (local, keymaps);
1502 return keymaps;
1505 /* GC is possible in this function if it autoloads a keymap. */
1507 DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 3, 0,
1508 doc: /* Return the binding for command KEY in current keymaps.
1509 KEY is a string or vector, a sequence of keystrokes.
1510 The binding is probably a symbol with a function definition.
1512 Normally, `key-binding' ignores bindings for t, which act as default
1513 bindings, used when nothing else in the keymap applies; this makes it
1514 usable as a general function for probing keymaps. However, if the
1515 optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does
1516 recognize the default bindings, just as `read-key-sequence' does.
1518 Like the normal command loop, `key-binding' will remap the command
1519 resulting from looking up KEY by looking up the command in the
1520 current keymaps. However, if the optional third argument NO-REMAP
1521 is non-nil, `key-binding' returns the unmapped command. */)
1522 (key, accept_default, no_remap)
1523 Lisp_Object key, accept_default, no_remap;
1525 Lisp_Object *maps, value;
1526 int nmaps, i;
1527 struct gcpro gcpro1;
1529 GCPRO1 (key);
1531 if (!NILP (current_kboard->Voverriding_terminal_local_map))
1533 value = Flookup_key (current_kboard->Voverriding_terminal_local_map,
1534 key, accept_default);
1535 if (! NILP (value) && !INTEGERP (value))
1536 goto done;
1538 else if (!NILP (Voverriding_local_map))
1540 value = Flookup_key (Voverriding_local_map, key, accept_default);
1541 if (! NILP (value) && !INTEGERP (value))
1542 goto done;
1544 else
1546 Lisp_Object local;
1548 local = get_local_map (PT, current_buffer, Qkeymap);
1549 if (! NILP (local))
1551 value = Flookup_key (local, key, accept_default);
1552 if (! NILP (value) && !INTEGERP (value))
1553 goto done;
1556 nmaps = current_minor_maps (0, &maps);
1557 /* Note that all these maps are GCPRO'd
1558 in the places where we found them. */
1560 for (i = 0; i < nmaps; i++)
1561 if (! NILP (maps[i]))
1563 value = Flookup_key (maps[i], key, accept_default);
1564 if (! NILP (value) && !INTEGERP (value))
1565 goto done;
1568 local = get_local_map (PT, current_buffer, Qlocal_map);
1569 if (! NILP (local))
1571 value = Flookup_key (local, key, accept_default);
1572 if (! NILP (value) && !INTEGERP (value))
1573 goto done;
1577 value = Flookup_key (current_global_map, key, accept_default);
1579 done:
1580 UNGCPRO;
1581 if (NILP (value) || INTEGERP (value))
1582 return Qnil;
1584 /* If the result of the ordinary keymap lookup is an interactive
1585 command, look for a key binding (ie. remapping) for that command. */
1587 if (NILP (no_remap) && SYMBOLP (value))
1589 Lisp_Object value1;
1590 if (value1 = Fcommand_remapping (value), !NILP (value1))
1591 value = value1;
1594 return value;
1597 /* GC is possible in this function if it autoloads a keymap. */
1599 DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
1600 doc: /* Return the binding for command KEYS in current local keymap only.
1601 KEYS is a string, a sequence of keystrokes.
1602 The binding is probably a symbol with a function definition.
1604 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1605 bindings; see the description of `lookup-key' for more details about this. */)
1606 (keys, accept_default)
1607 Lisp_Object keys, accept_default;
1609 register Lisp_Object map;
1610 map = current_buffer->keymap;
1611 if (NILP (map))
1612 return Qnil;
1613 return Flookup_key (map, keys, accept_default);
1616 /* GC is possible in this function if it autoloads a keymap. */
1618 DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
1619 doc: /* Return the binding for command KEYS in current global keymap only.
1620 KEYS is a string, a sequence of keystrokes.
1621 The binding is probably a symbol with a function definition.
1622 This function's return values are the same as those of lookup-key
1623 \(which see).
1625 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1626 bindings; see the description of `lookup-key' for more details about this. */)
1627 (keys, accept_default)
1628 Lisp_Object keys, accept_default;
1630 return Flookup_key (current_global_map, keys, accept_default);
1633 /* GC is possible in this function if it autoloads a keymap. */
1635 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
1636 doc: /* Find the visible minor mode bindings of KEY.
1637 Return an alist of pairs (MODENAME . BINDING), where MODENAME is the
1638 the symbol which names the minor mode binding KEY, and BINDING is
1639 KEY's definition in that mode. In particular, if KEY has no
1640 minor-mode bindings, return nil. If the first binding is a
1641 non-prefix, all subsequent bindings will be omitted, since they would
1642 be ignored. Similarly, the list doesn't include non-prefix bindings
1643 that come after prefix bindings.
1645 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
1646 bindings; see the description of `lookup-key' for more details about this. */)
1647 (key, accept_default)
1648 Lisp_Object key, accept_default;
1650 Lisp_Object *modes, *maps;
1651 int nmaps;
1652 Lisp_Object binding;
1653 int i, j;
1654 struct gcpro gcpro1, gcpro2;
1656 nmaps = current_minor_maps (&modes, &maps);
1657 /* Note that all these maps are GCPRO'd
1658 in the places where we found them. */
1660 binding = Qnil;
1661 GCPRO2 (key, binding);
1663 for (i = j = 0; i < nmaps; i++)
1664 if (!NILP (maps[i])
1665 && !NILP (binding = Flookup_key (maps[i], key, accept_default))
1666 && !INTEGERP (binding))
1668 if (KEYMAPP (binding))
1669 maps[j++] = Fcons (modes[i], binding);
1670 else if (j == 0)
1671 RETURN_UNGCPRO (Fcons (Fcons (modes[i], binding), Qnil));
1674 UNGCPRO;
1675 return Flist (j, maps);
1678 DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 3, 0,
1679 doc: /* Define COMMAND as a prefix command. COMMAND should be a symbol.
1680 A new sparse keymap is stored as COMMAND's function definition and its value.
1681 If a second optional argument MAPVAR is given, the map is stored as
1682 its value instead of as COMMAND's value; but COMMAND is still defined
1683 as a function.
1684 The third optional argument NAME, if given, supplies a menu name
1685 string for the map. This is required to use the keymap as a menu. */)
1686 (command, mapvar, name)
1687 Lisp_Object command, mapvar, name;
1689 Lisp_Object map;
1690 map = Fmake_sparse_keymap (name);
1691 Ffset (command, map);
1692 if (!NILP (mapvar))
1693 Fset (mapvar, map);
1694 else
1695 Fset (command, map);
1696 return command;
1699 DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0,
1700 doc: /* Select KEYMAP as the global keymap. */)
1701 (keymap)
1702 Lisp_Object keymap;
1704 keymap = get_keymap (keymap, 1, 1);
1705 current_global_map = keymap;
1707 return Qnil;
1710 DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
1711 doc: /* Select KEYMAP as the local keymap.
1712 If KEYMAP is nil, that means no local keymap. */)
1713 (keymap)
1714 Lisp_Object keymap;
1716 if (!NILP (keymap))
1717 keymap = get_keymap (keymap, 1, 1);
1719 current_buffer->keymap = keymap;
1721 return Qnil;
1724 DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
1725 doc: /* Return current buffer's local keymap, or nil if it has none. */)
1728 return current_buffer->keymap;
1731 DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0,
1732 doc: /* Return the current global keymap. */)
1735 return current_global_map;
1738 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0,
1739 doc: /* Return a list of keymaps for the minor modes of the current buffer. */)
1742 Lisp_Object *maps;
1743 int nmaps = current_minor_maps (0, &maps);
1745 return Flist (nmaps, maps);
1748 /* Help functions for describing and documenting keymaps. */
1751 static void
1752 accessible_keymaps_1 (key, cmd, maps, tail, thisseq, is_metized)
1753 Lisp_Object maps, tail, thisseq, key, cmd;
1754 int is_metized; /* If 1, `key' is assumed to be INTEGERP. */
1756 Lisp_Object tem;
1758 cmd = get_keymap (get_keyelt (cmd, 0), 0, 0);
1759 if (NILP (cmd))
1760 return;
1762 /* Look for and break cycles. */
1763 while (!NILP (tem = Frassq (cmd, maps)))
1765 Lisp_Object prefix = XCAR (tem);
1766 int lim = XINT (Flength (XCAR (tem)));
1767 if (lim <= XINT (Flength (thisseq)))
1768 { /* This keymap was already seen with a smaller prefix. */
1769 int i = 0;
1770 while (i < lim && EQ (Faref (prefix, make_number (i)),
1771 Faref (thisseq, make_number (i))))
1772 i++;
1773 if (i >= lim)
1774 /* `prefix' is a prefix of `thisseq' => there's a cycle. */
1775 return;
1777 /* This occurrence of `cmd' in `maps' does not correspond to a cycle,
1778 but maybe `cmd' occurs again further down in `maps', so keep
1779 looking. */
1780 maps = XCDR (Fmemq (tem, maps));
1783 /* If the last key in thisseq is meta-prefix-char,
1784 turn it into a meta-ized keystroke. We know
1785 that the event we're about to append is an
1786 ascii keystroke since we're processing a
1787 keymap table. */
1788 if (is_metized)
1790 int meta_bit = meta_modifier;
1791 Lisp_Object last = make_number (XINT (Flength (thisseq)) - 1);
1792 tem = Fcopy_sequence (thisseq);
1794 Faset (tem, last, make_number (XINT (key) | meta_bit));
1796 /* This new sequence is the same length as
1797 thisseq, so stick it in the list right
1798 after this one. */
1799 XSETCDR (tail,
1800 Fcons (Fcons (tem, cmd), XCDR (tail)));
1802 else
1804 tem = append_key (thisseq, key);
1805 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
1809 static void
1810 accessible_keymaps_char_table (args, index, cmd)
1811 Lisp_Object args, index, cmd;
1813 accessible_keymaps_1 (index, cmd,
1814 XCAR (XCAR (args)),
1815 XCAR (XCDR (args)),
1816 XCDR (XCDR (args)),
1817 XINT (XCDR (XCAR (args))));
1820 /* This function cannot GC. */
1822 DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
1823 1, 2, 0,
1824 doc: /* Find all keymaps accessible via prefix characters from KEYMAP.
1825 Returns a list of elements of the form (KEYS . MAP), where the sequence
1826 KEYS starting from KEYMAP gets you to MAP. These elements are ordered
1827 so that the KEYS increase in length. The first element is ([] . KEYMAP).
1828 An optional argument PREFIX, if non-nil, should be a key sequence;
1829 then the value includes only maps for prefixes that start with PREFIX. */)
1830 (keymap, prefix)
1831 Lisp_Object keymap, prefix;
1833 Lisp_Object maps, tail;
1834 int prefixlen = 0;
1836 /* no need for gcpro because we don't autoload any keymaps. */
1838 if (!NILP (prefix))
1839 prefixlen = XINT (Flength (prefix));
1841 if (!NILP (prefix))
1843 /* If a prefix was specified, start with the keymap (if any) for
1844 that prefix, so we don't waste time considering other prefixes. */
1845 Lisp_Object tem;
1846 tem = Flookup_key (keymap, prefix, Qt);
1847 /* Flookup_key may give us nil, or a number,
1848 if the prefix is not defined in this particular map.
1849 It might even give us a list that isn't a keymap. */
1850 tem = get_keymap (tem, 0, 0);
1851 if (CONSP (tem))
1853 /* Convert PREFIX to a vector now, so that later on
1854 we don't have to deal with the possibility of a string. */
1855 if (STRINGP (prefix))
1857 int i, i_byte, c;
1858 Lisp_Object copy;
1860 copy = Fmake_vector (make_number (SCHARS (prefix)), Qnil);
1861 for (i = 0, i_byte = 0; i < SCHARS (prefix);)
1863 int i_before = i;
1865 FETCH_STRING_CHAR_ADVANCE (c, prefix, i, i_byte);
1866 if (SINGLE_BYTE_CHAR_P (c) && (c & 0200))
1867 c ^= 0200 | meta_modifier;
1868 ASET (copy, i_before, make_number (c));
1870 prefix = copy;
1872 maps = Fcons (Fcons (prefix, tem), Qnil);
1874 else
1875 return Qnil;
1877 else
1878 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
1879 get_keymap (keymap, 1, 0)),
1880 Qnil);
1882 /* For each map in the list maps,
1883 look at any other maps it points to,
1884 and stick them at the end if they are not already in the list.
1886 This is a breadth-first traversal, where tail is the queue of
1887 nodes, and maps accumulates a list of all nodes visited. */
1889 for (tail = maps; CONSP (tail); tail = XCDR (tail))
1891 register Lisp_Object thisseq, thismap;
1892 Lisp_Object last;
1893 /* Does the current sequence end in the meta-prefix-char? */
1894 int is_metized;
1896 thisseq = Fcar (Fcar (tail));
1897 thismap = Fcdr (Fcar (tail));
1898 last = make_number (XINT (Flength (thisseq)) - 1);
1899 is_metized = (XINT (last) >= 0
1900 /* Don't metize the last char of PREFIX. */
1901 && XINT (last) >= prefixlen
1902 && EQ (Faref (thisseq, last), meta_prefix_char));
1904 for (; CONSP (thismap); thismap = XCDR (thismap))
1906 Lisp_Object elt;
1908 elt = XCAR (thismap);
1910 QUIT;
1912 if (CHAR_TABLE_P (elt))
1914 Lisp_Object indices[3];
1916 map_char_table (accessible_keymaps_char_table, Qnil,
1917 elt, Fcons (Fcons (maps, make_number (is_metized)),
1918 Fcons (tail, thisseq)),
1919 0, indices);
1921 else if (VECTORP (elt))
1923 register int i;
1925 /* Vector keymap. Scan all the elements. */
1926 for (i = 0; i < ASIZE (elt); i++)
1927 accessible_keymaps_1 (make_number (i), AREF (elt, i),
1928 maps, tail, thisseq, is_metized);
1931 else if (CONSP (elt))
1932 accessible_keymaps_1 (XCAR (elt), XCDR (elt),
1933 maps, tail, thisseq,
1934 is_metized && INTEGERP (XCAR (elt)));
1939 return maps;
1942 Lisp_Object Qsingle_key_description, Qkey_description;
1944 /* This function cannot GC. */
1946 DEFUN ("key-description", Fkey_description, Skey_description, 1, 1, 0,
1947 doc: /* Return a pretty description of key-sequence KEYS.
1948 Control characters turn into "C-foo" sequences, meta into "M-foo"
1949 spaces are put between sequence elements, etc. */)
1950 (keys)
1951 Lisp_Object keys;
1953 int len = 0;
1954 int i, i_byte;
1955 Lisp_Object sep;
1956 Lisp_Object *args = NULL;
1958 if (STRINGP (keys))
1960 Lisp_Object vector;
1961 vector = Fmake_vector (Flength (keys), Qnil);
1962 for (i = 0, i_byte = 0; i < SCHARS (keys); )
1964 int c;
1965 int i_before = i;
1967 FETCH_STRING_CHAR_ADVANCE (c, keys, i, i_byte);
1968 if (SINGLE_BYTE_CHAR_P (c) && (c & 0200))
1969 c ^= 0200 | meta_modifier;
1970 XSETFASTINT (AREF (vector, i_before), c);
1972 keys = vector;
1975 if (VECTORP (keys))
1977 /* In effect, this computes
1978 (mapconcat 'single-key-description keys " ")
1979 but we shouldn't use mapconcat because it can do GC. */
1981 len = XVECTOR (keys)->size;
1982 sep = build_string (" ");
1983 /* This has one extra element at the end that we don't pass to Fconcat. */
1984 args = (Lisp_Object *) alloca (len * 2 * sizeof (Lisp_Object));
1986 for (i = 0; i < len; i++)
1988 args[i * 2] = Fsingle_key_description (AREF (keys, i), Qnil);
1989 args[i * 2 + 1] = sep;
1992 else if (CONSP (keys))
1994 /* In effect, this computes
1995 (mapconcat 'single-key-description keys " ")
1996 but we shouldn't use mapconcat because it can do GC. */
1998 len = XFASTINT (Flength (keys));
1999 sep = build_string (" ");
2000 /* This has one extra element at the end that we don't pass to Fconcat. */
2001 args = (Lisp_Object *) alloca (len * 2 * sizeof (Lisp_Object));
2003 for (i = 0; i < len; i++)
2005 args[i * 2] = Fsingle_key_description (XCAR (keys), Qnil);
2006 args[i * 2 + 1] = sep;
2007 keys = XCDR (keys);
2010 else
2011 keys = wrong_type_argument (Qarrayp, keys);
2013 if (len == 0)
2014 return empty_string;
2015 return Fconcat (len * 2 - 1, args);
2018 char *
2019 push_key_description (c, p, force_multibyte)
2020 register unsigned int c;
2021 register char *p;
2022 int force_multibyte;
2024 unsigned c2;
2026 /* Clear all the meaningless bits above the meta bit. */
2027 c &= meta_modifier | ~ - meta_modifier;
2028 c2 = c & ~(alt_modifier | ctrl_modifier | hyper_modifier
2029 | meta_modifier | shift_modifier | super_modifier);
2031 if (c & alt_modifier)
2033 *p++ = 'A';
2034 *p++ = '-';
2035 c -= alt_modifier;
2037 if ((c & ctrl_modifier) != 0
2038 || (c2 < ' ' && c2 != 27 && c2 != '\t' && c2 != Ctl ('M')))
2040 *p++ = 'C';
2041 *p++ = '-';
2042 c &= ~ctrl_modifier;
2044 if (c & hyper_modifier)
2046 *p++ = 'H';
2047 *p++ = '-';
2048 c -= hyper_modifier;
2050 if (c & meta_modifier)
2052 *p++ = 'M';
2053 *p++ = '-';
2054 c -= meta_modifier;
2056 if (c & shift_modifier)
2058 *p++ = 'S';
2059 *p++ = '-';
2060 c -= shift_modifier;
2062 if (c & super_modifier)
2064 *p++ = 's';
2065 *p++ = '-';
2066 c -= super_modifier;
2068 if (c < 040)
2070 if (c == 033)
2072 *p++ = 'E';
2073 *p++ = 'S';
2074 *p++ = 'C';
2076 else if (c == '\t')
2078 *p++ = 'T';
2079 *p++ = 'A';
2080 *p++ = 'B';
2082 else if (c == Ctl ('M'))
2084 *p++ = 'R';
2085 *p++ = 'E';
2086 *p++ = 'T';
2088 else
2090 /* `C-' already added above. */
2091 if (c > 0 && c <= Ctl ('Z'))
2092 *p++ = c + 0140;
2093 else
2094 *p++ = c + 0100;
2097 else if (c == 0177)
2099 *p++ = 'D';
2100 *p++ = 'E';
2101 *p++ = 'L';
2103 else if (c == ' ')
2105 *p++ = 'S';
2106 *p++ = 'P';
2107 *p++ = 'C';
2109 else if (c < 128
2110 || (NILP (current_buffer->enable_multibyte_characters)
2111 && SINGLE_BYTE_CHAR_P (c)
2112 && !force_multibyte))
2114 *p++ = c;
2116 else
2118 int valid_p = SINGLE_BYTE_CHAR_P (c) || char_valid_p (c, 0);
2120 if (force_multibyte && valid_p)
2122 if (SINGLE_BYTE_CHAR_P (c))
2123 c = unibyte_char_to_multibyte (c);
2124 p += CHAR_STRING (c, p);
2126 else if (NILP (current_buffer->enable_multibyte_characters)
2127 || valid_p)
2129 int bit_offset;
2130 *p++ = '\\';
2131 /* The biggest character code uses 19 bits. */
2132 for (bit_offset = 18; bit_offset >= 0; bit_offset -= 3)
2134 if (c >= (1 << bit_offset))
2135 *p++ = ((c & (7 << bit_offset)) >> bit_offset) + '0';
2138 else
2139 p += CHAR_STRING (c, p);
2142 return p;
2145 /* This function cannot GC. */
2147 DEFUN ("single-key-description", Fsingle_key_description,
2148 Ssingle_key_description, 1, 2, 0,
2149 doc: /* Return a pretty description of command character KEY.
2150 Control characters turn into C-whatever, etc.
2151 Optional argument NO-ANGLES non-nil means don't put angle brackets
2152 around function keys and event symbols. */)
2153 (key, no_angles)
2154 Lisp_Object key, no_angles;
2156 if (CONSP (key) && lucid_event_type_list_p (key))
2157 key = Fevent_convert_list (key);
2159 key = EVENT_HEAD (key);
2161 if (INTEGERP (key)) /* Normal character */
2163 unsigned int charset, c1, c2;
2164 int without_bits = XINT (key) & ~((-1) << CHARACTERBITS);
2166 if (SINGLE_BYTE_CHAR_P (without_bits))
2167 charset = 0;
2168 else
2169 SPLIT_CHAR (without_bits, charset, c1, c2);
2171 if (charset
2172 && CHARSET_DEFINED_P (charset)
2173 && ((c1 >= 0 && c1 < 32)
2174 || (c2 >= 0 && c2 < 32)))
2176 /* Handle a generic character. */
2177 Lisp_Object name;
2178 name = CHARSET_TABLE_INFO (charset, CHARSET_LONG_NAME_IDX);
2179 CHECK_STRING (name);
2180 return concat2 (build_string ("Character set "), name);
2182 else
2184 char tem[KEY_DESCRIPTION_SIZE], *end;
2185 int nbytes, nchars;
2186 Lisp_Object string;
2188 end = push_key_description (XUINT (key), tem, 1);
2189 nbytes = end - tem;
2190 nchars = multibyte_chars_in_text (tem, nbytes);
2191 if (nchars == nbytes)
2193 *end = '\0';
2194 string = build_string (tem);
2196 else
2197 string = make_multibyte_string (tem, nchars, nbytes);
2198 return string;
2201 else if (SYMBOLP (key)) /* Function key or event-symbol */
2203 if (NILP (no_angles))
2205 char *buffer
2206 = (char *) alloca (SBYTES (SYMBOL_NAME (key)) + 5);
2207 sprintf (buffer, "<%s>", SDATA (SYMBOL_NAME (key)));
2208 return build_string (buffer);
2210 else
2211 return Fsymbol_name (key);
2213 else if (STRINGP (key)) /* Buffer names in the menubar. */
2214 return Fcopy_sequence (key);
2215 else
2216 error ("KEY must be an integer, cons, symbol, or string");
2217 return Qnil;
2220 char *
2221 push_text_char_description (c, p)
2222 register unsigned int c;
2223 register char *p;
2225 if (c >= 0200)
2227 *p++ = 'M';
2228 *p++ = '-';
2229 c -= 0200;
2231 if (c < 040)
2233 *p++ = '^';
2234 *p++ = c + 64; /* 'A' - 1 */
2236 else if (c == 0177)
2238 *p++ = '^';
2239 *p++ = '?';
2241 else
2242 *p++ = c;
2243 return p;
2246 /* This function cannot GC. */
2248 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
2249 doc: /* Return a pretty description of file-character CHARACTER.
2250 Control characters turn into "^char", etc. */)
2251 (character)
2252 Lisp_Object character;
2254 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */
2255 unsigned char str[6];
2256 int c;
2258 CHECK_NUMBER (character);
2260 c = XINT (character);
2261 if (!SINGLE_BYTE_CHAR_P (c))
2263 int len = CHAR_STRING (c, str);
2265 return make_multibyte_string (str, 1, len);
2268 *push_text_char_description (c & 0377, str) = 0;
2270 return build_string (str);
2273 /* Return non-zero if SEQ contains only ASCII characters, perhaps with
2274 a meta bit. */
2275 static int
2276 ascii_sequence_p (seq)
2277 Lisp_Object seq;
2279 int i;
2280 int len = XINT (Flength (seq));
2282 for (i = 0; i < len; i++)
2284 Lisp_Object ii, elt;
2286 XSETFASTINT (ii, i);
2287 elt = Faref (seq, ii);
2289 if (!INTEGERP (elt)
2290 || (XUINT (elt) & ~CHAR_META) >= 0x80)
2291 return 0;
2294 return 1;
2298 /* where-is - finding a command in a set of keymaps. */
2300 static Lisp_Object where_is_internal ();
2301 static Lisp_Object where_is_internal_1 ();
2302 static void where_is_internal_2 ();
2304 /* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2305 Returns the first non-nil binding found in any of those maps. */
2307 static Lisp_Object
2308 shadow_lookup (shadow, key, flag)
2309 Lisp_Object shadow, key, flag;
2311 Lisp_Object tail, value;
2313 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
2315 value = Flookup_key (XCAR (tail), key, flag);
2316 if (!NILP (value) && !NATNUMP (value))
2317 return value;
2319 return Qnil;
2322 static Lisp_Object Vmenu_events;
2324 /* This function can GC if Flookup_key autoloads any keymaps. */
2326 static Lisp_Object
2327 where_is_internal (definition, keymaps, firstonly, noindirect, no_remap)
2328 Lisp_Object definition, keymaps;
2329 Lisp_Object firstonly, noindirect, no_remap;
2331 Lisp_Object maps = Qnil;
2332 Lisp_Object found, sequences;
2333 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2334 /* 1 means ignore all menu bindings entirely. */
2335 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2337 /* If this command is remapped, then it has no key bindings
2338 of its own. */
2339 if (NILP (no_remap) && SYMBOLP (definition))
2341 Lisp_Object tem;
2342 if (tem = Fcommand_remapping (definition), !NILP (tem))
2343 return Qnil;
2346 found = keymaps;
2347 while (CONSP (found))
2349 maps =
2350 nconc2 (maps,
2351 Faccessible_keymaps (get_keymap (XCAR (found), 1, 0), Qnil));
2352 found = XCDR (found);
2355 GCPRO5 (definition, keymaps, maps, found, sequences);
2356 found = Qnil;
2357 sequences = Qnil;
2359 for (; !NILP (maps); maps = Fcdr (maps))
2361 /* Key sequence to reach map, and the map that it reaches */
2362 register Lisp_Object this, map, tem;
2364 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
2365 [M-CHAR] sequences, check if last character of the sequence
2366 is the meta-prefix char. */
2367 Lisp_Object last;
2368 int last_is_meta;
2370 this = Fcar (Fcar (maps));
2371 map = Fcdr (Fcar (maps));
2372 last = make_number (XINT (Flength (this)) - 1);
2373 last_is_meta = (XINT (last) >= 0
2374 && EQ (Faref (this, last), meta_prefix_char));
2376 /* if (nomenus && !ascii_sequence_p (this)) */
2377 if (nomenus && XINT (last) >= 0
2378 && SYMBOLP (tem = Faref (this, make_number (0)))
2379 && !NILP (Fmemq (XCAR (parse_modifiers (tem)), Vmenu_events)))
2380 /* If no menu entries should be returned, skip over the
2381 keymaps bound to `menu-bar' and `tool-bar' and other
2382 non-ascii prefixes like `C-down-mouse-2'. */
2383 continue;
2385 QUIT;
2387 while (CONSP (map))
2389 /* Because the code we want to run on each binding is rather
2390 large, we don't want to have two separate loop bodies for
2391 sparse keymap bindings and tables; we want to iterate one
2392 loop body over both keymap and vector bindings.
2394 For this reason, if Fcar (map) is a vector, we don't
2395 advance map to the next element until i indicates that we
2396 have finished off the vector. */
2397 Lisp_Object elt, key, binding;
2398 elt = XCAR (map);
2399 map = XCDR (map);
2401 sequences = Qnil;
2403 QUIT;
2405 /* Set key and binding to the current key and binding, and
2406 advance map and i to the next binding. */
2407 if (VECTORP (elt))
2409 Lisp_Object sequence;
2410 int i;
2411 /* In a vector, look at each element. */
2412 for (i = 0; i < XVECTOR (elt)->size; i++)
2414 binding = AREF (elt, i);
2415 XSETFASTINT (key, i);
2416 sequence = where_is_internal_1 (binding, key, definition,
2417 noindirect, this,
2418 last, nomenus, last_is_meta);
2419 if (!NILP (sequence))
2420 sequences = Fcons (sequence, sequences);
2423 else if (CHAR_TABLE_P (elt))
2425 Lisp_Object indices[3];
2426 Lisp_Object args;
2428 args = Fcons (Fcons (Fcons (definition, noindirect),
2429 Qnil), /* Result accumulator. */
2430 Fcons (Fcons (this, last),
2431 Fcons (make_number (nomenus),
2432 make_number (last_is_meta))));
2433 map_char_table (where_is_internal_2, Qnil, elt, args,
2434 0, indices);
2435 sequences = XCDR (XCAR (args));
2437 else if (CONSP (elt))
2439 Lisp_Object sequence;
2441 key = XCAR (elt);
2442 binding = XCDR (elt);
2444 sequence = where_is_internal_1 (binding, key, definition,
2445 noindirect, this,
2446 last, nomenus, last_is_meta);
2447 if (!NILP (sequence))
2448 sequences = Fcons (sequence, sequences);
2452 while (!NILP (sequences))
2454 Lisp_Object sequence, remapped, function;
2456 sequence = XCAR (sequences);
2457 sequences = XCDR (sequences);
2459 /* If the current sequence is a command remapping with
2460 format [remap COMMAND], find the key sequences
2461 which run COMMAND, and use those sequences instead. */
2462 remapped = Qnil;
2463 if (NILP (no_remap)
2464 && VECTORP (sequence) && XVECTOR (sequence)->size == 2
2465 && EQ (AREF (sequence, 0), Qremap)
2466 && (function = AREF (sequence, 1), SYMBOLP (function)))
2468 Lisp_Object remapped1;
2470 remapped1 = where_is_internal (function, keymaps, firstonly, noindirect, Qt);
2471 if (CONSP (remapped1))
2473 /* Verify that this key binding actually maps to the
2474 remapped command (see below). */
2475 if (!EQ (shadow_lookup (keymaps, XCAR (remapped1), Qnil), function))
2476 continue;
2477 sequence = XCAR (remapped1);
2478 remapped = XCDR (remapped1);
2479 goto record_sequence;
2483 /* Verify that this key binding is not shadowed by another
2484 binding for the same key, before we say it exists.
2486 Mechanism: look for local definition of this key and if
2487 it is defined and does not match what we found then
2488 ignore this key.
2490 Either nil or number as value from Flookup_key
2491 means undefined. */
2492 if (!EQ (shadow_lookup (keymaps, sequence, Qnil), definition))
2493 continue;
2495 record_sequence:
2496 /* It is a true unshadowed match. Record it, unless it's already
2497 been seen (as could happen when inheriting keymaps). */
2498 if (NILP (Fmember (sequence, found)))
2499 found = Fcons (sequence, found);
2501 /* If firstonly is Qnon_ascii, then we can return the first
2502 binding we find. If firstonly is not Qnon_ascii but not
2503 nil, then we should return the first ascii-only binding
2504 we find. */
2505 if (EQ (firstonly, Qnon_ascii))
2506 RETURN_UNGCPRO (sequence);
2507 else if (!NILP (firstonly) && ascii_sequence_p (sequence))
2508 RETURN_UNGCPRO (sequence);
2510 if (CONSP (remapped))
2512 sequence = XCAR (remapped);
2513 remapped = XCDR (remapped);
2514 goto record_sequence;
2520 UNGCPRO;
2522 found = Fnreverse (found);
2524 /* firstonly may have been t, but we may have gone all the way through
2525 the keymaps without finding an all-ASCII key sequence. So just
2526 return the best we could find. */
2527 if (!NILP (firstonly))
2528 return Fcar (found);
2530 return found;
2533 DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 5, 0,
2534 doc: /* Return list of keys that invoke DEFINITION.
2535 If KEYMAP is non-nil, search only KEYMAP and the global keymap.
2536 If KEYMAP is nil, search all the currently active keymaps.
2537 If KEYMAP is a list of keymaps, search only those keymaps.
2539 If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,
2540 rather than a list of all possible key sequences.
2541 If FIRSTONLY is the symbol `non-ascii', return the first binding found,
2542 no matter what it is.
2543 If FIRSTONLY has another non-nil value, prefer sequences of ASCII characters,
2544 and entirely reject menu bindings.
2546 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections
2547 to other keymaps or slots. This makes it possible to search for an
2548 indirect definition itself.
2550 If optional 5th arg NO-REMAP is non-nil, don't search for key sequences
2551 that invoke a command which is remapped to DEFINITION, but include the
2552 remapped command in the returned list. */)
2553 (definition, keymap, firstonly, noindirect, no_remap)
2554 Lisp_Object definition, keymap;
2555 Lisp_Object firstonly, noindirect, no_remap;
2557 Lisp_Object sequences, keymaps;
2558 /* 1 means ignore all menu bindings entirely. */
2559 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2560 Lisp_Object result;
2562 /* Find the relevant keymaps. */
2563 if (CONSP (keymap) && KEYMAPP (XCAR (keymap)))
2564 keymaps = keymap;
2565 else if (!NILP (keymap))
2566 keymaps = Fcons (keymap, Fcons (current_global_map, Qnil));
2567 else
2568 keymaps = Fcurrent_active_maps (Qnil);
2570 /* Only use caching for the menubar (i.e. called with (def nil t nil).
2571 We don't really need to check `keymap'. */
2572 if (nomenus && NILP (noindirect) && NILP (keymap))
2574 Lisp_Object *defns;
2575 int i, j, n;
2576 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2578 /* Check heuristic-consistency of the cache. */
2579 if (NILP (Fequal (keymaps, where_is_cache_keymaps)))
2580 where_is_cache = Qnil;
2582 if (NILP (where_is_cache))
2584 /* We need to create the cache. */
2585 Lisp_Object args[2];
2586 where_is_cache = Fmake_hash_table (0, args);
2587 where_is_cache_keymaps = Qt;
2589 /* Fill in the cache. */
2590 GCPRO5 (definition, keymaps, firstonly, noindirect, no_remap);
2591 where_is_internal (definition, keymaps, firstonly, noindirect, no_remap);
2592 UNGCPRO;
2594 where_is_cache_keymaps = keymaps;
2597 /* We want to process definitions from the last to the first.
2598 Instead of consing, copy definitions to a vector and step
2599 over that vector. */
2600 sequences = Fgethash (definition, where_is_cache, Qnil);
2601 n = XINT (Flength (sequences));
2602 defns = (Lisp_Object *) alloca (n * sizeof *defns);
2603 for (i = 0; CONSP (sequences); sequences = XCDR (sequences))
2604 defns[i++] = XCAR (sequences);
2606 /* Verify that the key bindings are not shadowed. Note that
2607 the following can GC. */
2608 GCPRO2 (definition, keymaps);
2609 result = Qnil;
2610 j = -1;
2611 for (i = n - 1; i >= 0; --i)
2612 if (EQ (shadow_lookup (keymaps, defns[i], Qnil), definition))
2614 if (ascii_sequence_p (defns[i]))
2615 break;
2616 else if (j < 0)
2617 j = i;
2620 result = i >= 0 ? defns[i] : (j >= 0 ? defns[j] : Qnil);
2621 UNGCPRO;
2623 else
2625 /* Kill the cache so that where_is_internal_1 doesn't think
2626 we're filling it up. */
2627 where_is_cache = Qnil;
2628 result = where_is_internal (definition, keymaps, firstonly, noindirect, no_remap);
2631 return result;
2634 /* This is the function that Fwhere_is_internal calls using map_char_table.
2635 ARGS has the form
2636 (((DEFINITION . NOINDIRECT) . (KEYMAP . RESULT))
2638 ((THIS . LAST) . (NOMENUS . LAST_IS_META)))
2639 Since map_char_table doesn't really use the return value from this function,
2640 we the result append to RESULT, the slot in ARGS.
2642 This function can GC because it calls where_is_internal_1 which can
2643 GC. */
2645 static void
2646 where_is_internal_2 (args, key, binding)
2647 Lisp_Object args, key, binding;
2649 Lisp_Object definition, noindirect, this, last;
2650 Lisp_Object result, sequence;
2651 int nomenus, last_is_meta;
2652 struct gcpro gcpro1, gcpro2, gcpro3;
2654 GCPRO3 (args, key, binding);
2655 result = XCDR (XCAR (args));
2656 definition = XCAR (XCAR (XCAR (args)));
2657 noindirect = XCDR (XCAR (XCAR (args)));
2658 this = XCAR (XCAR (XCDR (args)));
2659 last = XCDR (XCAR (XCDR (args)));
2660 nomenus = XFASTINT (XCAR (XCDR (XCDR (args))));
2661 last_is_meta = XFASTINT (XCDR (XCDR (XCDR (args))));
2663 sequence = where_is_internal_1 (binding, key, definition, noindirect,
2664 this, last, nomenus, last_is_meta);
2666 if (!NILP (sequence))
2667 XSETCDR (XCAR (args), Fcons (sequence, result));
2669 UNGCPRO;
2673 /* This function cannot GC. */
2675 static Lisp_Object
2676 where_is_internal_1 (binding, key, definition, noindirect, this, last,
2677 nomenus, last_is_meta)
2678 Lisp_Object binding, key, definition, noindirect, this, last;
2679 int nomenus, last_is_meta;
2681 Lisp_Object sequence;
2683 /* Search through indirections unless that's not wanted. */
2684 if (NILP (noindirect))
2685 binding = get_keyelt (binding, 0);
2687 /* End this iteration if this element does not match
2688 the target. */
2690 if (!(!NILP (where_is_cache) /* everything "matches" during cache-fill. */
2691 || EQ (binding, definition)
2692 || (CONSP (definition) && !NILP (Fequal (binding, definition)))))
2693 /* Doesn't match. */
2694 return Qnil;
2696 /* We have found a match. Construct the key sequence where we found it. */
2697 if (INTEGERP (key) && last_is_meta)
2699 sequence = Fcopy_sequence (this);
2700 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
2702 else
2703 sequence = append_key (this, key);
2705 if (!NILP (where_is_cache))
2707 Lisp_Object sequences = Fgethash (binding, where_is_cache, Qnil);
2708 Fputhash (binding, Fcons (sequence, sequences), where_is_cache);
2709 return Qnil;
2711 else
2712 return sequence;
2715 /* describe-bindings - summarizing all the bindings in a set of keymaps. */
2717 DEFUN ("describe-buffer-bindings", Fdescribe_buffer_bindings, Sdescribe_buffer_bindings, 1, 3, 0,
2718 doc: /* Insert the list of all defined keys and their definitions.
2719 The list is inserted in the current buffer, while the bindings are
2720 looked up in BUFFER.
2721 The optional argument PREFIX, if non-nil, should be a key sequence;
2722 then we display only bindings that start with that prefix.
2723 The optional argument MENUS, if non-nil, says to mention menu bindings.
2724 \(Ordinarily these are omitted from the output.) */)
2725 (buffer, prefix, menus)
2726 Lisp_Object buffer, prefix, menus;
2728 Lisp_Object outbuf, shadow;
2729 int nomenu = NILP (menus);
2730 register Lisp_Object start1;
2731 struct gcpro gcpro1;
2733 char *alternate_heading
2734 = "\
2735 Keyboard translations:\n\n\
2736 You type Translation\n\
2737 -------- -----------\n";
2739 shadow = Qnil;
2740 GCPRO1 (shadow);
2742 outbuf = Fcurrent_buffer ();
2744 /* Report on alternates for keys. */
2745 if (STRINGP (Vkeyboard_translate_table) && !NILP (prefix))
2747 int c;
2748 const unsigned char *translate = SDATA (Vkeyboard_translate_table);
2749 int translate_len = SCHARS (Vkeyboard_translate_table);
2751 for (c = 0; c < translate_len; c++)
2752 if (translate[c] != c)
2754 char buf[KEY_DESCRIPTION_SIZE];
2755 char *bufend;
2757 if (alternate_heading)
2759 insert_string (alternate_heading);
2760 alternate_heading = 0;
2763 bufend = push_key_description (translate[c], buf, 1);
2764 insert (buf, bufend - buf);
2765 Findent_to (make_number (16), make_number (1));
2766 bufend = push_key_description (c, buf, 1);
2767 insert (buf, bufend - buf);
2769 insert ("\n", 1);
2772 insert ("\n", 1);
2775 if (!NILP (Vkey_translation_map))
2776 describe_map_tree (Vkey_translation_map, 0, Qnil, prefix,
2777 "Key translations", nomenu, 1, 0);
2780 /* Print the (major mode) local map. */
2781 start1 = Qnil;
2782 if (!NILP (current_kboard->Voverriding_terminal_local_map))
2783 start1 = current_kboard->Voverriding_terminal_local_map;
2784 else if (!NILP (Voverriding_local_map))
2785 start1 = Voverriding_local_map;
2787 if (!NILP (start1))
2789 describe_map_tree (start1, 1, shadow, prefix,
2790 "\f\nOverriding Bindings", nomenu, 0, 0);
2791 shadow = Fcons (start1, shadow);
2793 else
2795 /* Print the minor mode and major mode keymaps. */
2796 int i, nmaps;
2797 Lisp_Object *modes, *maps;
2799 /* Temporarily switch to `buffer', so that we can get that buffer's
2800 minor modes correctly. */
2801 Fset_buffer (buffer);
2803 nmaps = current_minor_maps (&modes, &maps);
2804 Fset_buffer (outbuf);
2806 start1 = get_local_map (BUF_PT (XBUFFER (buffer)),
2807 XBUFFER (buffer), Qkeymap);
2808 if (!NILP (start1))
2810 describe_map_tree (start1, 1, shadow, prefix,
2811 "\f\n`keymap' Property Bindings", nomenu, 0, 0);
2812 shadow = Fcons (start1, shadow);
2815 /* Print the minor mode maps. */
2816 for (i = 0; i < nmaps; i++)
2818 /* The title for a minor mode keymap
2819 is constructed at run time.
2820 We let describe_map_tree do the actual insertion
2821 because it takes care of other features when doing so. */
2822 char *title, *p;
2824 if (!SYMBOLP (modes[i]))
2825 abort();
2827 p = title = (char *) alloca (42 + SCHARS (SYMBOL_NAME (modes[i])));
2828 *p++ = '\f';
2829 *p++ = '\n';
2830 *p++ = '`';
2831 bcopy (SDATA (SYMBOL_NAME (modes[i])), p,
2832 SCHARS (SYMBOL_NAME (modes[i])));
2833 p += SCHARS (SYMBOL_NAME (modes[i]));
2834 *p++ = '\'';
2835 bcopy (" Minor Mode Bindings", p, sizeof (" Minor Mode Bindings") - 1);
2836 p += sizeof (" Minor Mode Bindings") - 1;
2837 *p = 0;
2839 describe_map_tree (maps[i], 1, shadow, prefix, title, nomenu, 0, 0);
2840 shadow = Fcons (maps[i], shadow);
2843 start1 = get_local_map (BUF_PT (XBUFFER (buffer)),
2844 XBUFFER (buffer), Qlocal_map);
2845 if (!NILP (start1))
2847 if (EQ (start1, XBUFFER (buffer)->keymap))
2848 describe_map_tree (start1, 1, shadow, prefix,
2849 "\f\nMajor Mode Bindings", nomenu, 0, 0);
2850 else
2851 describe_map_tree (start1, 1, shadow, prefix,
2852 "\f\n`local-map' Property Bindings",
2853 nomenu, 0, 0);
2855 shadow = Fcons (start1, shadow);
2859 describe_map_tree (current_global_map, 1, shadow, prefix,
2860 "\f\nGlobal Bindings", nomenu, 0, 1);
2862 /* Print the function-key-map translations under this prefix. */
2863 if (!NILP (Vfunction_key_map))
2864 describe_map_tree (Vfunction_key_map, 0, Qnil, prefix,
2865 "\f\nFunction key map translations", nomenu, 1, 0);
2867 UNGCPRO;
2868 return Qnil;
2871 /* Insert a description of the key bindings in STARTMAP,
2872 followed by those of all maps reachable through STARTMAP.
2873 If PARTIAL is nonzero, omit certain "uninteresting" commands
2874 (such as `undefined').
2875 If SHADOW is non-nil, it is a list of maps;
2876 don't mention keys which would be shadowed by any of them.
2877 PREFIX, if non-nil, says mention only keys that start with PREFIX.
2878 TITLE, if not 0, is a string to insert at the beginning.
2879 TITLE should not end with a colon or a newline; we supply that.
2880 If NOMENU is not 0, then omit menu-bar commands.
2882 If TRANSL is nonzero, the definitions are actually key translations
2883 so print strings and vectors differently.
2885 If ALWAYS_TITLE is nonzero, print the title even if there are no maps
2886 to look through. */
2888 void
2889 describe_map_tree (startmap, partial, shadow, prefix, title, nomenu, transl,
2890 always_title)
2891 Lisp_Object startmap, shadow, prefix;
2892 int partial;
2893 char *title;
2894 int nomenu;
2895 int transl;
2896 int always_title;
2898 Lisp_Object maps, orig_maps, seen, sub_shadows;
2899 struct gcpro gcpro1, gcpro2, gcpro3;
2900 int something = 0;
2901 char *key_heading
2902 = "\
2903 key binding\n\
2904 --- -------\n";
2906 orig_maps = maps = Faccessible_keymaps (startmap, prefix);
2907 seen = Qnil;
2908 sub_shadows = Qnil;
2909 GCPRO3 (maps, seen, sub_shadows);
2911 if (nomenu)
2913 Lisp_Object list;
2915 /* Delete from MAPS each element that is for the menu bar. */
2916 for (list = maps; !NILP (list); list = XCDR (list))
2918 Lisp_Object elt, prefix, tem;
2920 elt = Fcar (list);
2921 prefix = Fcar (elt);
2922 if (XVECTOR (prefix)->size >= 1)
2924 tem = Faref (prefix, make_number (0));
2925 if (EQ (tem, Qmenu_bar))
2926 maps = Fdelq (elt, maps);
2931 if (!NILP (maps) || always_title)
2933 if (title)
2935 insert_string (title);
2936 if (!NILP (prefix))
2938 insert_string (" Starting With ");
2939 insert1 (Fkey_description (prefix));
2941 insert_string (":\n");
2943 insert_string (key_heading);
2944 something = 1;
2947 for (; !NILP (maps); maps = Fcdr (maps))
2949 register Lisp_Object elt, prefix, tail;
2951 elt = Fcar (maps);
2952 prefix = Fcar (elt);
2954 sub_shadows = Qnil;
2956 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
2958 Lisp_Object shmap;
2960 shmap = XCAR (tail);
2962 /* If the sequence by which we reach this keymap is zero-length,
2963 then the shadow map for this keymap is just SHADOW. */
2964 if ((STRINGP (prefix) && SCHARS (prefix) == 0)
2965 || (VECTORP (prefix) && XVECTOR (prefix)->size == 0))
2967 /* If the sequence by which we reach this keymap actually has
2968 some elements, then the sequence's definition in SHADOW is
2969 what we should use. */
2970 else
2972 shmap = Flookup_key (shmap, Fcar (elt), Qt);
2973 if (INTEGERP (shmap))
2974 shmap = Qnil;
2977 /* If shmap is not nil and not a keymap,
2978 it completely shadows this map, so don't
2979 describe this map at all. */
2980 if (!NILP (shmap) && !KEYMAPP (shmap))
2981 goto skip;
2983 if (!NILP (shmap))
2984 sub_shadows = Fcons (shmap, sub_shadows);
2987 /* Maps we have already listed in this loop shadow this map. */
2988 for (tail = orig_maps; !EQ (tail, maps); tail = XCDR (tail))
2990 Lisp_Object tem;
2991 tem = Fequal (Fcar (XCAR (tail)), prefix);
2992 if (!NILP (tem))
2993 sub_shadows = Fcons (XCDR (XCAR (tail)), sub_shadows);
2996 describe_map (Fcdr (elt), prefix,
2997 transl ? describe_translation : describe_command,
2998 partial, sub_shadows, &seen, nomenu);
3000 skip: ;
3003 if (something)
3004 insert_string ("\n");
3006 UNGCPRO;
3009 static int previous_description_column;
3011 static void
3012 describe_command (definition, args)
3013 Lisp_Object definition, args;
3015 register Lisp_Object tem1;
3016 int column = (int) current_column (); /* iftc */
3017 int description_column;
3019 /* If column 16 is no good, go to col 32;
3020 but don't push beyond that--go to next line instead. */
3021 if (column > 30)
3023 insert_char ('\n');
3024 description_column = 32;
3026 else if (column > 14 || (column > 10 && previous_description_column == 32))
3027 description_column = 32;
3028 else
3029 description_column = 16;
3031 Findent_to (make_number (description_column), make_number (1));
3032 previous_description_column = description_column;
3034 if (SYMBOLP (definition))
3036 tem1 = SYMBOL_NAME (definition);
3037 insert1 (tem1);
3038 insert_string ("\n");
3040 else if (STRINGP (definition) || VECTORP (definition))
3041 insert_string ("Keyboard Macro\n");
3042 else if (KEYMAPP (definition))
3043 insert_string ("Prefix Command\n");
3044 else
3045 insert_string ("??\n");
3048 static void
3049 describe_translation (definition, args)
3050 Lisp_Object definition, args;
3052 register Lisp_Object tem1;
3054 Findent_to (make_number (16), make_number (1));
3056 if (SYMBOLP (definition))
3058 tem1 = SYMBOL_NAME (definition);
3059 insert1 (tem1);
3060 insert_string ("\n");
3062 else if (STRINGP (definition) || VECTORP (definition))
3064 insert1 (Fkey_description (definition));
3065 insert_string ("\n");
3067 else if (KEYMAPP (definition))
3068 insert_string ("Prefix Command\n");
3069 else
3070 insert_string ("??\n");
3073 /* Describe the contents of map MAP, assuming that this map itself is
3074 reached by the sequence of prefix keys KEYS (a string or vector).
3075 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
3077 static void
3078 describe_map (map, keys, elt_describer, partial, shadow, seen, nomenu)
3079 register Lisp_Object map;
3080 Lisp_Object keys;
3081 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object));
3082 int partial;
3083 Lisp_Object shadow;
3084 Lisp_Object *seen;
3085 int nomenu;
3087 Lisp_Object elt_prefix;
3088 Lisp_Object tail, definition, event;
3089 Lisp_Object tem;
3090 Lisp_Object suppress;
3091 Lisp_Object kludge;
3092 int first = 1;
3093 struct gcpro gcpro1, gcpro2, gcpro3;
3095 suppress = Qnil;
3097 if (!NILP (keys) && XFASTINT (Flength (keys)) > 0)
3099 /* Call Fkey_description first, to avoid GC bug for the other string. */
3100 tem = Fkey_description (keys);
3101 elt_prefix = concat2 (tem, build_string (" "));
3103 else
3104 elt_prefix = Qnil;
3106 if (partial)
3107 suppress = intern ("suppress-keymap");
3109 /* This vector gets used to present single keys to Flookup_key. Since
3110 that is done once per keymap element, we don't want to cons up a
3111 fresh vector every time. */
3112 kludge = Fmake_vector (make_number (1), Qnil);
3113 definition = Qnil;
3115 GCPRO3 (elt_prefix, definition, kludge);
3117 for (tail = map; CONSP (tail); tail = XCDR (tail))
3119 QUIT;
3121 if (VECTORP (XCAR (tail))
3122 || CHAR_TABLE_P (XCAR (tail)))
3123 describe_vector (XCAR (tail),
3124 elt_prefix, Qnil, elt_describer, partial, shadow, map,
3125 (int *)0, 0);
3126 else if (CONSP (XCAR (tail)))
3128 event = XCAR (XCAR (tail));
3130 /* Ignore bindings whose "keys" are not really valid events.
3131 (We get these in the frames and buffers menu.) */
3132 if (!(SYMBOLP (event) || INTEGERP (event)))
3133 continue;
3135 if (nomenu && EQ (event, Qmenu_bar))
3136 continue;
3138 definition = get_keyelt (XCDR (XCAR (tail)), 0);
3140 /* Don't show undefined commands or suppressed commands. */
3141 if (NILP (definition)) continue;
3142 if (SYMBOLP (definition) && partial)
3144 tem = Fget (definition, suppress);
3145 if (!NILP (tem))
3146 continue;
3149 /* Don't show a command that isn't really visible
3150 because a local definition of the same key shadows it. */
3152 ASET (kludge, 0, event);
3153 if (!NILP (shadow))
3155 tem = shadow_lookup (shadow, kludge, Qt);
3156 if (!NILP (tem)) continue;
3159 tem = Flookup_key (map, kludge, Qt);
3160 if (!EQ (tem, definition)) continue;
3162 if (first)
3164 previous_description_column = 0;
3165 insert ("\n", 1);
3166 first = 0;
3169 if (!NILP (elt_prefix))
3170 insert1 (elt_prefix);
3172 /* THIS gets the string to describe the character EVENT. */
3173 insert1 (Fsingle_key_description (event, Qnil));
3175 /* Print a description of the definition of this character.
3176 elt_describer will take care of spacing out far enough
3177 for alignment purposes. */
3178 (*elt_describer) (definition, Qnil);
3180 else if (EQ (XCAR (tail), Qkeymap))
3182 /* The same keymap might be in the structure twice, if we're
3183 using an inherited keymap. So skip anything we've already
3184 encountered. */
3185 tem = Fassq (tail, *seen);
3186 if (CONSP (tem) && !NILP (Fequal (XCAR (tem), keys)))
3187 break;
3188 *seen = Fcons (Fcons (tail, keys), *seen);
3192 UNGCPRO;
3195 static void
3196 describe_vector_princ (elt, fun)
3197 Lisp_Object elt, fun;
3199 Findent_to (make_number (16), make_number (1));
3200 call1 (fun, elt);
3201 Fterpri (Qnil);
3204 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0,
3205 doc: /* Insert a description of contents of VECTOR.
3206 This is text showing the elements of vector matched against indices. */)
3207 (vector, describer)
3208 Lisp_Object vector, describer;
3210 int count = SPECPDL_INDEX ();
3211 if (NILP (describer))
3212 describer = intern ("princ");
3213 specbind (Qstandard_output, Fcurrent_buffer ());
3214 CHECK_VECTOR_OR_CHAR_TABLE (vector);
3215 describe_vector (vector, Qnil, describer, describe_vector_princ, 0,
3216 Qnil, Qnil, (int *)0, 0);
3218 return unbind_to (count, Qnil);
3221 /* Insert in the current buffer a description of the contents of VECTOR.
3222 We call ELT_DESCRIBER to insert the description of one value found
3223 in VECTOR.
3225 ELT_PREFIX describes what "comes before" the keys or indices defined
3226 by this vector. This is a human-readable string whose size
3227 is not necessarily related to the situation.
3229 If the vector is in a keymap, ELT_PREFIX is a prefix key which
3230 leads to this keymap.
3232 If the vector is a chartable, ELT_PREFIX is the vector
3233 of bytes that lead to the character set or portion of a character
3234 set described by this chartable.
3236 If PARTIAL is nonzero, it means do not mention suppressed commands
3237 (that assumes the vector is in a keymap).
3239 SHADOW is a list of keymaps that shadow this map.
3240 If it is non-nil, then we look up the key in those maps
3241 and we don't mention it now if it is defined by any of them.
3243 ENTIRE_MAP is the keymap in which this vector appears.
3244 If the definition in effect in the whole map does not match
3245 the one in this vector, we ignore this one.
3247 When describing a sub-char-table, INDICES is a list of
3248 indices at higher levels in this char-table,
3249 and CHAR_TABLE_DEPTH says how many levels down we have gone.
3251 ARGS is simply passed as the second argument to ELT_DESCRIBER. */
3253 void
3254 describe_vector (vector, elt_prefix, args, elt_describer,
3255 partial, shadow, entire_map,
3256 indices, char_table_depth)
3257 register Lisp_Object vector;
3258 Lisp_Object elt_prefix, args;
3259 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object));
3260 int partial;
3261 Lisp_Object shadow;
3262 Lisp_Object entire_map;
3263 int *indices;
3264 int char_table_depth;
3266 Lisp_Object definition;
3267 Lisp_Object tem2;
3268 register int i;
3269 Lisp_Object suppress;
3270 Lisp_Object kludge;
3271 int first = 1;
3272 struct gcpro gcpro1, gcpro2, gcpro3;
3273 /* Range of elements to be handled. */
3274 int from, to;
3275 /* A flag to tell if a leaf in this level of char-table is not a
3276 generic character (i.e. a complete multibyte character). */
3277 int complete_char;
3278 int character;
3279 int starting_i;
3281 suppress = Qnil;
3283 if (indices == 0)
3284 indices = (int *) alloca (3 * sizeof (int));
3286 definition = Qnil;
3288 /* This vector gets used to present single keys to Flookup_key. Since
3289 that is done once per vector element, we don't want to cons up a
3290 fresh vector every time. */
3291 kludge = Fmake_vector (make_number (1), Qnil);
3292 GCPRO3 (elt_prefix, definition, kludge);
3294 if (partial)
3295 suppress = intern ("suppress-keymap");
3297 if (CHAR_TABLE_P (vector))
3299 if (char_table_depth == 0)
3301 /* VECTOR is a top level char-table. */
3302 complete_char = 1;
3303 from = 0;
3304 to = CHAR_TABLE_ORDINARY_SLOTS;
3306 else
3308 /* VECTOR is a sub char-table. */
3309 if (char_table_depth >= 3)
3310 /* A char-table is never that deep. */
3311 error ("Too deep char table");
3313 complete_char
3314 = (CHARSET_VALID_P (indices[0])
3315 && ((CHARSET_DIMENSION (indices[0]) == 1
3316 && char_table_depth == 1)
3317 || char_table_depth == 2));
3319 /* Meaningful elements are from 32th to 127th. */
3320 from = 32;
3321 to = SUB_CHAR_TABLE_ORDINARY_SLOTS;
3324 else
3326 /* This does the right thing for ordinary vectors. */
3328 complete_char = 1;
3329 from = 0;
3330 to = XVECTOR (vector)->size;
3333 for (i = from; i < to; i++)
3335 QUIT;
3337 if (CHAR_TABLE_P (vector))
3339 if (char_table_depth == 0 && i >= CHAR_TABLE_SINGLE_BYTE_SLOTS)
3340 complete_char = 0;
3342 if (i >= CHAR_TABLE_SINGLE_BYTE_SLOTS
3343 && !CHARSET_DEFINED_P (i - 128))
3344 continue;
3346 definition
3347 = get_keyelt (XCHAR_TABLE (vector)->contents[i], 0);
3349 else
3350 definition = get_keyelt (AREF (vector, i), 0);
3352 if (NILP (definition)) continue;
3354 /* Don't mention suppressed commands. */
3355 if (SYMBOLP (definition) && partial)
3357 Lisp_Object tem;
3359 tem = Fget (definition, suppress);
3361 if (!NILP (tem)) continue;
3364 /* Set CHARACTER to the character this entry describes, if any.
3365 Also update *INDICES. */
3366 if (CHAR_TABLE_P (vector))
3368 indices[char_table_depth] = i;
3370 if (char_table_depth == 0)
3372 character = i;
3373 indices[0] = i - 128;
3375 else if (complete_char)
3377 character = MAKE_CHAR (indices[0], indices[1], indices[2]);
3379 else
3380 character = 0;
3382 else
3383 character = i;
3385 /* If this binding is shadowed by some other map, ignore it. */
3386 if (!NILP (shadow) && complete_char)
3388 Lisp_Object tem;
3390 ASET (kludge, 0, make_number (character));
3391 tem = shadow_lookup (shadow, kludge, Qt);
3393 if (!NILP (tem)) continue;
3396 /* Ignore this definition if it is shadowed by an earlier
3397 one in the same keymap. */
3398 if (!NILP (entire_map) && complete_char)
3400 Lisp_Object tem;
3402 ASET (kludge, 0, make_number (character));
3403 tem = Flookup_key (entire_map, kludge, Qt);
3405 if (!EQ (tem, definition))
3406 continue;
3409 if (first)
3411 if (char_table_depth == 0)
3412 insert ("\n", 1);
3413 first = 0;
3416 /* For a sub char-table, show the depth by indentation.
3417 CHAR_TABLE_DEPTH can be greater than 0 only for a char-table. */
3418 if (char_table_depth > 0)
3419 insert (" ", char_table_depth * 2); /* depth is 1 or 2. */
3421 /* Output the prefix that applies to every entry in this map. */
3422 if (!NILP (elt_prefix))
3423 insert1 (elt_prefix);
3425 /* Insert or describe the character this slot is for,
3426 or a description of what it is for. */
3427 if (SUB_CHAR_TABLE_P (vector))
3429 if (complete_char)
3430 insert_char (character);
3431 else
3433 /* We need an octal representation for this block of
3434 characters. */
3435 char work[16];
3436 sprintf (work, "(row %d)", i);
3437 insert (work, strlen (work));
3440 else if (CHAR_TABLE_P (vector))
3442 if (complete_char)
3443 insert1 (Fsingle_key_description (make_number (character), Qnil));
3444 else
3446 /* Print the information for this character set. */
3447 insert_string ("<");
3448 tem2 = CHARSET_TABLE_INFO (i - 128, CHARSET_SHORT_NAME_IDX);
3449 if (STRINGP (tem2))
3450 insert_from_string (tem2, 0, 0, SCHARS (tem2),
3451 SBYTES (tem2), 0);
3452 else
3453 insert ("?", 1);
3454 insert (">", 1);
3457 else
3459 insert1 (Fsingle_key_description (make_number (character), Qnil));
3462 /* If we find a sub char-table within a char-table,
3463 scan it recursively; it defines the details for
3464 a character set or a portion of a character set. */
3465 if (CHAR_TABLE_P (vector) && SUB_CHAR_TABLE_P (definition))
3467 insert ("\n", 1);
3468 describe_vector (definition, elt_prefix, args, elt_describer,
3469 partial, shadow, entire_map,
3470 indices, char_table_depth + 1);
3471 continue;
3474 starting_i = i;
3476 /* Find all consecutive characters or rows that have the same
3477 definition. But, for elements of a top level char table, if
3478 they are for charsets, we had better describe one by one even
3479 if they have the same definition. */
3480 if (CHAR_TABLE_P (vector))
3482 int limit = to;
3484 if (char_table_depth == 0)
3485 limit = CHAR_TABLE_SINGLE_BYTE_SLOTS;
3487 while (i + 1 < limit
3488 && (tem2 = get_keyelt (XCHAR_TABLE (vector)->contents[i + 1], 0),
3489 !NILP (tem2))
3490 && !NILP (Fequal (tem2, definition)))
3491 i++;
3493 else
3494 while (i + 1 < to
3495 && (tem2 = get_keyelt (AREF (vector, i + 1), 0),
3496 !NILP (tem2))
3497 && !NILP (Fequal (tem2, definition)))
3498 i++;
3501 /* If we have a range of more than one character,
3502 print where the range reaches to. */
3504 if (i != starting_i)
3506 insert (" .. ", 4);
3508 if (!NILP (elt_prefix))
3509 insert1 (elt_prefix);
3511 if (CHAR_TABLE_P (vector))
3513 if (char_table_depth == 0)
3515 insert1 (Fsingle_key_description (make_number (i), Qnil));
3517 else if (complete_char)
3519 indices[char_table_depth] = i;
3520 character = MAKE_CHAR (indices[0], indices[1], indices[2]);
3521 insert_char (character);
3523 else
3525 /* We need an octal representation for this block of
3526 characters. */
3527 char work[16];
3528 sprintf (work, "(row %d)", i);
3529 insert (work, strlen (work));
3532 else
3534 insert1 (Fsingle_key_description (make_number (i), Qnil));
3538 /* Print a description of the definition of this character.
3539 elt_describer will take care of spacing out far enough
3540 for alignment purposes. */
3541 (*elt_describer) (definition, args);
3544 /* For (sub) char-table, print `defalt' slot at last. */
3545 if (CHAR_TABLE_P (vector) && !NILP (XCHAR_TABLE (vector)->defalt))
3547 insert (" ", char_table_depth * 2);
3548 insert_string ("<<default>>");
3549 (*elt_describer) (XCHAR_TABLE (vector)->defalt, args);
3552 UNGCPRO;
3555 /* Apropos - finding all symbols whose names match a regexp. */
3556 static Lisp_Object apropos_predicate;
3557 static Lisp_Object apropos_accumulate;
3559 static void
3560 apropos_accum (symbol, string)
3561 Lisp_Object symbol, string;
3563 register Lisp_Object tem;
3565 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
3566 if (!NILP (tem) && !NILP (apropos_predicate))
3567 tem = call1 (apropos_predicate, symbol);
3568 if (!NILP (tem))
3569 apropos_accumulate = Fcons (symbol, apropos_accumulate);
3572 DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
3573 doc: /* Show all symbols whose names contain match for REGEXP.
3574 If optional 2nd arg PREDICATE is non-nil, (funcall PREDICATE SYMBOL) is done
3575 for each symbol and a symbol is mentioned only if that returns non-nil.
3576 Return list of symbols found. */)
3577 (regexp, predicate)
3578 Lisp_Object regexp, predicate;
3580 Lisp_Object tem;
3581 CHECK_STRING (regexp);
3582 apropos_predicate = predicate;
3583 apropos_accumulate = Qnil;
3584 map_obarray (Vobarray, apropos_accum, regexp);
3585 tem = Fsort (apropos_accumulate, Qstring_lessp);
3586 apropos_accumulate = Qnil;
3587 apropos_predicate = Qnil;
3588 return tem;
3591 void
3592 syms_of_keymap ()
3594 Qkeymap = intern ("keymap");
3595 staticpro (&Qkeymap);
3596 staticpro (&apropos_predicate);
3597 staticpro (&apropos_accumulate);
3598 apropos_predicate = Qnil;
3599 apropos_accumulate = Qnil;
3601 /* Now we are ready to set up this property, so we can
3602 create char tables. */
3603 Fput (Qkeymap, Qchar_table_extra_slots, make_number (0));
3605 /* Initialize the keymaps standardly used.
3606 Each one is the value of a Lisp variable, and is also
3607 pointed to by a C variable */
3609 global_map = Fmake_keymap (Qnil);
3610 Fset (intern ("global-map"), global_map);
3612 current_global_map = global_map;
3613 staticpro (&global_map);
3614 staticpro (&current_global_map);
3616 meta_map = Fmake_keymap (Qnil);
3617 Fset (intern ("esc-map"), meta_map);
3618 Ffset (intern ("ESC-prefix"), meta_map);
3620 control_x_map = Fmake_keymap (Qnil);
3621 Fset (intern ("ctl-x-map"), control_x_map);
3622 Ffset (intern ("Control-X-prefix"), control_x_map);
3624 exclude_keys
3625 = Fcons (Fcons (build_string ("DEL"), build_string ("\\d")),
3626 Fcons (Fcons (build_string ("TAB"), build_string ("\\t")),
3627 Fcons (Fcons (build_string ("RET"), build_string ("\\r")),
3628 Fcons (Fcons (build_string ("ESC"), build_string ("\\e")),
3629 Fcons (Fcons (build_string ("SPC"), build_string (" ")),
3630 Qnil)))));
3631 staticpro (&exclude_keys);
3633 DEFVAR_LISP ("define-key-rebound-commands", &Vdefine_key_rebound_commands,
3634 doc: /* List of commands given new key bindings recently.
3635 This is used for internal purposes during Emacs startup;
3636 don't alter it yourself. */);
3637 Vdefine_key_rebound_commands = Qt;
3639 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map,
3640 doc: /* Default keymap to use when reading from the minibuffer. */);
3641 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
3643 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
3644 doc: /* Local keymap for the minibuffer when spaces are not allowed. */);
3645 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
3646 Fset_keymap_parent (Vminibuffer_local_ns_map, Vminibuffer_local_map);
3648 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
3649 doc: /* Local keymap for minibuffer input with completion. */);
3650 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
3651 Fset_keymap_parent (Vminibuffer_local_completion_map, Vminibuffer_local_map);
3653 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map,
3654 doc: /* Local keymap for minibuffer input with completion, for exact match. */);
3655 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
3656 Fset_keymap_parent (Vminibuffer_local_must_match_map,
3657 Vminibuffer_local_completion_map);
3659 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
3660 doc: /* Alist of keymaps to use for minor modes.
3661 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read
3662 key sequences and look up bindings iff VARIABLE's value is non-nil.
3663 If two active keymaps bind the same key, the keymap appearing earlier
3664 in the list takes precedence. */);
3665 Vminor_mode_map_alist = Qnil;
3667 DEFVAR_LISP ("minor-mode-overriding-map-alist", &Vminor_mode_overriding_map_alist,
3668 doc: /* Alist of keymaps to use for minor modes, in current major mode.
3669 This variable is an alist just like `minor-mode-map-alist', and it is
3670 used the same way (and before `minor-mode-map-alist'); however,
3671 it is provided for major modes to bind locally. */);
3672 Vminor_mode_overriding_map_alist = Qnil;
3674 DEFVAR_LISP ("emulation-mode-map-alists", &Vemulation_mode_map_alists,
3675 doc: /* List of keymap alists to use for emulations modes.
3676 It is intended for modes or packages using multiple minor-mode keymaps.
3677 Each element is a keymap alist just like `minor-mode-map-alist', or a
3678 symbol with a variable binding which is a keymap alist, and it is used
3679 the same way. The "active" keymaps in each alist are used before
3680 `minor-mode-map-alist' and `minor-mode-overriding-map-alist'. */);
3681 Vemulation_mode_map_alists = Qnil;
3684 DEFVAR_LISP ("function-key-map", &Vfunction_key_map,
3685 doc: /* Keymap mapping ASCII function key sequences onto their preferred forms.
3686 This allows Emacs to recognize function keys sent from ASCII
3687 terminals at any point in a key sequence.
3689 The `read-key-sequence' function replaces any subsequence bound by
3690 `function-key-map' with its binding. More precisely, when the active
3691 keymaps have no binding for the current key sequence but
3692 `function-key-map' binds a suffix of the sequence to a vector or string,
3693 `read-key-sequence' replaces the matching suffix with its binding, and
3694 continues with the new sequence.
3696 The events that come from bindings in `function-key-map' are not
3697 themselves looked up in `function-key-map'.
3699 For example, suppose `function-key-map' binds `ESC O P' to [f1].
3700 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing
3701 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix
3702 key, typing `ESC O P x' would return [f1 x]. */);
3703 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
3705 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
3706 doc: /* Keymap of key translations that can override keymaps.
3707 This keymap works like `function-key-map', but comes after that,
3708 and applies even for keys that have ordinary bindings. */);
3709 Vkey_translation_map = Qnil;
3711 staticpro (&Vmenu_events);
3712 Vmenu_events = Fcons (intern ("menu-bar"),
3713 Fcons (intern ("tool-bar"),
3714 Fcons (intern ("mouse-1"),
3715 Fcons (intern ("mouse-2"),
3716 Fcons (intern ("mouse-3"),
3717 Qnil)))));
3720 Qsingle_key_description = intern ("single-key-description");
3721 staticpro (&Qsingle_key_description);
3723 Qkey_description = intern ("key-description");
3724 staticpro (&Qkey_description);
3726 Qkeymapp = intern ("keymapp");
3727 staticpro (&Qkeymapp);
3729 Qnon_ascii = intern ("non-ascii");
3730 staticpro (&Qnon_ascii);
3732 Qmenu_item = intern ("menu-item");
3733 staticpro (&Qmenu_item);
3735 Qremap = intern ("remap");
3736 staticpro (&Qremap);
3738 command_remapping_vector = Fmake_vector (make_number (2), Qremap);
3739 staticpro (&command_remapping_vector);
3741 where_is_cache_keymaps = Qt;
3742 where_is_cache = Qnil;
3743 staticpro (&where_is_cache);
3744 staticpro (&where_is_cache_keymaps);
3746 defsubr (&Skeymapp);
3747 defsubr (&Skeymap_parent);
3748 defsubr (&Skeymap_prompt);
3749 defsubr (&Sset_keymap_parent);
3750 defsubr (&Smake_keymap);
3751 defsubr (&Smake_sparse_keymap);
3752 defsubr (&Smap_keymap);
3753 defsubr (&Scopy_keymap);
3754 defsubr (&Scommand_remapping);
3755 defsubr (&Skey_binding);
3756 defsubr (&Slocal_key_binding);
3757 defsubr (&Sglobal_key_binding);
3758 defsubr (&Sminor_mode_key_binding);
3759 defsubr (&Sdefine_key);
3760 defsubr (&Slookup_key);
3761 defsubr (&Sdefine_prefix_command);
3762 defsubr (&Suse_global_map);
3763 defsubr (&Suse_local_map);
3764 defsubr (&Scurrent_local_map);
3765 defsubr (&Scurrent_global_map);
3766 defsubr (&Scurrent_minor_mode_maps);
3767 defsubr (&Scurrent_active_maps);
3768 defsubr (&Saccessible_keymaps);
3769 defsubr (&Skey_description);
3770 defsubr (&Sdescribe_vector);
3771 defsubr (&Ssingle_key_description);
3772 defsubr (&Stext_char_description);
3773 defsubr (&Swhere_is_internal);
3774 defsubr (&Sdescribe_buffer_bindings);
3775 defsubr (&Sapropos_internal);
3778 void
3779 keys_of_keymap ()
3781 initial_define_key (global_map, 033, "ESC-prefix");
3782 initial_define_key (global_map, Ctl('X'), "Control-X-prefix");