(re_search_2): Optimize regexp that starts with ^.
[emacs.git] / src / keymap.c
blob88f89cdf72bc1b1018ca375fbddcbb5ab9e20386
1 /* Manipulation of keymaps
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 #include <config.h>
23 #include <stdio.h>
24 #undef NULL
25 #include "lisp.h"
26 #include "commands.h"
27 #include "buffer.h"
28 #include "keyboard.h"
29 #include "termhooks.h"
30 #include "blockinput.h"
31 #include "puresize.h"
33 #define min(a, b) ((a) < (b) ? (a) : (b))
35 /* The number of elements in keymap vectors. */
36 #define DENSE_TABLE_SIZE (0200)
38 /* Actually allocate storage for these variables */
40 Lisp_Object current_global_map; /* Current global keymap */
42 Lisp_Object global_map; /* default global key bindings */
44 Lisp_Object meta_map; /* The keymap used for globally bound
45 ESC-prefixed default commands */
47 Lisp_Object control_x_map; /* The keymap used for globally bound
48 C-x-prefixed default commands */
50 /* was MinibufLocalMap */
51 Lisp_Object Vminibuffer_local_map;
52 /* The keymap used by the minibuf for local
53 bindings when spaces are allowed in the
54 minibuf */
56 /* was MinibufLocalNSMap */
57 Lisp_Object Vminibuffer_local_ns_map;
58 /* The keymap used by the minibuf for local
59 bindings when spaces are not encouraged
60 in the minibuf */
62 /* keymap used for minibuffers when doing completion */
63 /* was MinibufLocalCompletionMap */
64 Lisp_Object Vminibuffer_local_completion_map;
66 /* keymap used for minibuffers when doing completion and require a match */
67 /* was MinibufLocalMustMatchMap */
68 Lisp_Object Vminibuffer_local_must_match_map;
70 /* Alist of minor mode variables and keymaps. */
71 Lisp_Object Vminor_mode_map_alist;
73 /* Keymap mapping ASCII function key sequences onto their preferred forms.
74 Initialized by the terminal-specific lisp files. See DEFVAR for more
75 documentation. */
76 Lisp_Object Vfunction_key_map;
78 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
79 Lisp_Object Vkey_translation_map;
81 /* A list of all commands given new bindings since a certain time
82 when nil was stored here.
83 This is used to speed up recomputation of menu key equivalents
84 when Emacs starts up. t means don't record anything here. */
85 Lisp_Object Vdefine_key_rebound_commands;
87 Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii;
89 /* A char with the CHAR_META bit set in a vector or the 0200 bit set
90 in a string key sequence is equivalent to prefixing with this
91 character. */
92 extern Lisp_Object meta_prefix_char;
94 extern Lisp_Object Voverriding_local_map;
96 static Lisp_Object define_as_prefix ();
97 static Lisp_Object describe_buffer_bindings ();
98 static void describe_command (), describe_translation ();
99 static void describe_map ();
101 /* Keymap object support - constructors and predicates. */
103 DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0,
104 "Construct and return a new keymap, of the form (keymap VECTOR . ALIST).\n\
105 VECTOR is a vector which holds the bindings for the ASCII\n\
106 characters. ALIST is an assoc-list which holds bindings for function keys,\n\
107 mouse events, and any other things that appear in the input stream.\n\
108 All entries in it are initially nil, meaning \"command undefined\".\n\n\
109 The optional arg STRING supplies a menu name for the keymap\n\
110 in case you use it as a menu with `x-popup-menu'.")
111 (string)
112 Lisp_Object string;
114 Lisp_Object tail;
115 if (!NILP (string))
116 tail = Fcons (string, Qnil);
117 else
118 tail = Qnil;
119 return Fcons (Qkeymap,
120 Fcons (Fmake_vector (make_number (DENSE_TABLE_SIZE), Qnil),
121 tail));
124 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0,
125 "Construct and return a new sparse-keymap list.\n\
126 Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),\n\
127 which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),\n\
128 which binds the function key or mouse event SYMBOL to DEFINITION.\n\
129 Initially the alist is nil.\n\n\
130 The optional arg STRING supplies a menu name for the keymap\n\
131 in case you use it as a menu with `x-popup-menu'.")
132 (string)
133 Lisp_Object string;
135 if (!NILP (string))
136 return Fcons (Qkeymap, Fcons (string, Qnil));
137 return Fcons (Qkeymap, Qnil);
140 /* This function is used for installing the standard key bindings
141 at initialization time.
143 For example:
145 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
147 void
148 initial_define_key (keymap, key, defname)
149 Lisp_Object keymap;
150 int key;
151 char *defname;
153 store_in_keymap (keymap, make_number (key), intern (defname));
156 void
157 initial_define_lispy_key (keymap, keyname, defname)
158 Lisp_Object keymap;
159 char *keyname;
160 char *defname;
162 store_in_keymap (keymap, intern (keyname), intern (defname));
165 /* Define character fromchar in map frommap as an alias for character
166 tochar in map tomap. Subsequent redefinitions of the latter WILL
167 affect the former. */
169 #if 0
170 void
171 synkey (frommap, fromchar, tomap, tochar)
172 struct Lisp_Vector *frommap, *tomap;
173 int fromchar, tochar;
175 Lisp_Object v, c;
176 XSETVECTOR (v, tomap);
177 XSETFASTINT (c, tochar);
178 frommap->contents[fromchar] = Fcons (v, c);
180 #endif /* 0 */
182 DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0,
183 "Return t if OBJECT is a keymap.\n\
185 A keymap is a list (keymap . ALIST),\n\
186 or a symbol whose function definition is itself a keymap.\n\
187 ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);\n\
188 a vector of densely packed bindings for small character codes\n\
189 is also allowed as an element.")
190 (object)
191 Lisp_Object object;
193 return (NILP (get_keymap_1 (object, 0, 0)) ? Qnil : Qt);
196 /* Check that OBJECT is a keymap (after dereferencing through any
197 symbols). If it is, return it.
199 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
200 is an autoload form, do the autoload and try again.
201 If AUTOLOAD is nonzero, callers must assume GC is possible.
203 ERROR controls how we respond if OBJECT isn't a keymap.
204 If ERROR is non-zero, signal an error; otherwise, just return Qnil.
206 Note that most of the time, we don't want to pursue autoloads.
207 Functions like Faccessible_keymaps which scan entire keymap trees
208 shouldn't load every autoloaded keymap. I'm not sure about this,
209 but it seems to me that only read_key_sequence, Flookup_key, and
210 Fdefine_key should cause keymaps to be autoloaded. */
212 Lisp_Object
213 get_keymap_1 (object, error, autoload)
214 Lisp_Object object;
215 int error, autoload;
217 Lisp_Object tem;
219 autoload_retry:
220 tem = indirect_function (object);
221 if (CONSP (tem) && EQ (XCONS (tem)->car, Qkeymap))
222 return tem;
224 /* Should we do an autoload? Autoload forms for keymaps have
225 Qkeymap as their fifth element. */
226 if (autoload
227 && SYMBOLP (object)
228 && CONSP (tem)
229 && EQ (XCONS (tem)->car, Qautoload))
231 Lisp_Object tail;
233 tail = Fnth (make_number (4), tem);
234 if (EQ (tail, Qkeymap))
236 struct gcpro gcpro1, gcpro2;
238 GCPRO2 (tem, object);
239 do_autoload (tem, object);
240 UNGCPRO;
242 goto autoload_retry;
246 if (error)
247 wrong_type_argument (Qkeymapp, object);
248 else
249 return Qnil;
253 /* Follow any symbol chaining, and return the keymap denoted by OBJECT.
254 If OBJECT doesn't denote a keymap at all, signal an error. */
255 Lisp_Object
256 get_keymap (object)
257 Lisp_Object object;
259 return get_keymap_1 (object, 1, 0);
262 /* Return the parent map of the keymap MAP, or nil if it has none.
263 We assume that MAP is a valid keymap. */
265 DEFUN ("keymap-parent", Fkeymap_parent, Skeymap_parent, 1, 1, 0,
266 "Return the parent keymap of KEYMAP.")
267 (keymap)
268 Lisp_Object keymap;
270 Lisp_Object list;
272 keymap = get_keymap_1 (keymap, 1, 1);
274 /* Skip past the initial element `keymap'. */
275 list = XCONS (keymap)->cdr;
276 for (; CONSP (list); list = XCONS (list)->cdr)
278 /* See if there is another `keymap'. */
279 if (EQ (Qkeymap, XCONS (list)->car))
280 return list;
283 return Qnil;
286 /* Set the parent keymap of MAP to PARENT. */
288 DEFUN ("set-keymap-parent", Fset_keymap_parent, Sset_keymap_parent, 2, 2, 0,
289 "Modify KEYMAP to set its parent map to PARENT.\n\
290 PARENT should be nil or another keymap.")
291 (keymap, parent)
292 Lisp_Object keymap, parent;
294 Lisp_Object list, prev;
295 int i;
297 keymap = get_keymap_1 (keymap, 1, 1);
298 if (!NILP (parent))
299 parent = get_keymap_1 (parent, 1, 1);
301 /* Skip past the initial element `keymap'. */
302 prev = keymap;
303 while (1)
305 list = XCONS (prev)->cdr;
306 /* If there is a parent keymap here, replace it.
307 If we came to the end, add the parent in PREV. */
308 if (! CONSP (list) || EQ (Qkeymap, XCONS (list)->car))
310 /* If we already have the right parent, return now
311 so that we avoid the loops below. */
312 if (EQ (XCONS (prev)->cdr, parent))
313 return parent;
315 XCONS (prev)->cdr = parent;
316 break;
318 prev = list;
321 /* Scan through for submaps, and set their parents too. */
323 for (list = XCONS (keymap)->cdr; CONSP (list); list = XCONS (list)->cdr)
325 /* Stop the scan when we come to the parent. */
326 if (EQ (XCONS (list)->car, Qkeymap))
327 break;
329 /* If this element holds a prefix map, deal with it. */
330 if (CONSP (XCONS (list)->car)
331 && CONSP (XCONS (XCONS (list)->car)->cdr))
332 fix_submap_inheritance (keymap, XCONS (XCONS (list)->car)->car,
333 XCONS (XCONS (list)->car)->cdr);
335 if (VECTORP (XCONS (list)->car))
336 for (i = 0; i < XVECTOR (XCONS (list)->car)->size; i++)
337 if (CONSP (XVECTOR (XCONS (list)->car)->contents[i]))
338 fix_submap_inheritance (keymap, make_number (i),
339 XVECTOR (XCONS (list)->car)->contents[i]);
342 return parent;
345 /* EVENT is defined in MAP as a prefix, and SUBMAP is its definition.
346 if EVENT is also a prefix in MAP's parent,
347 make sure that SUBMAP inherits that definition as its own parent. */
349 fix_submap_inheritance (map, event, submap)
350 Lisp_Object map, event, submap;
352 Lisp_Object map_parent, parent_entry;
354 /* SUBMAP is a cons that we found as a key binding.
355 Discard the other things found in a menu key binding. */
357 if (CONSP (submap)
358 && STRINGP (XCONS (submap)->car))
360 submap = XCONS (submap)->cdr;
361 /* Also remove a menu help string, if any,
362 following the menu item name. */
363 if (CONSP (submap) && STRINGP (XCONS (submap)->car))
364 submap = XCONS (submap)->cdr;
365 /* Also remove the sublist that caches key equivalences, if any. */
366 if (CONSP (submap)
367 && CONSP (XCONS (submap)->car))
369 Lisp_Object carcar;
370 carcar = XCONS (XCONS (submap)->car)->car;
371 if (NILP (carcar) || VECTORP (carcar))
372 submap = XCONS (submap)->cdr;
376 /* If it isn't a keymap now, there's no work to do. */
377 if (! CONSP (submap)
378 || ! EQ (XCONS (submap)->car, Qkeymap))
379 return;
381 map_parent = Fkeymap_parent (map);
382 if (! NILP (map_parent))
383 parent_entry = access_keymap (map_parent, event, 0, 0);
384 else
385 parent_entry = Qnil;
387 /* If MAP's parent has something other than a keymap,
388 our own submap shadows it completely, so use nil as SUBMAP's parent. */
389 if (! (CONSP (parent_entry) && EQ (XCONS (parent_entry)->car, Qkeymap)))
390 parent_entry = Qnil;
392 if (! EQ (parent_entry, submap))
393 Fset_keymap_parent (submap, parent_entry);
396 /* Look up IDX in MAP. IDX may be any sort of event.
397 Note that this does only one level of lookup; IDX must be a single
398 event, not a sequence.
400 If T_OK is non-zero, bindings for Qt are treated as default
401 bindings; any key left unmentioned by other tables and bindings is
402 given the binding of Qt.
404 If T_OK is zero, bindings for Qt are not treated specially.
406 If NOINHERIT, don't accept a subkeymap found in an inherited keymap. */
408 Lisp_Object
409 access_keymap (map, idx, t_ok, noinherit)
410 Lisp_Object map;
411 Lisp_Object idx;
412 int t_ok;
413 int noinherit;
415 int noprefix = 0;
416 Lisp_Object val;
418 /* If idx is a list (some sort of mouse click, perhaps?),
419 the index we want to use is the car of the list, which
420 ought to be a symbol. */
421 idx = EVENT_HEAD (idx);
423 /* If idx is a symbol, it might have modifiers, which need to
424 be put in the canonical order. */
425 if (SYMBOLP (idx))
426 idx = reorder_modifiers (idx);
427 else if (INTEGERP (idx))
428 /* Clobber the high bits that can be present on a machine
429 with more than 24 bits of integer. */
430 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
433 Lisp_Object tail;
434 Lisp_Object t_binding;
436 t_binding = Qnil;
437 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr)
439 Lisp_Object binding;
441 binding = XCONS (tail)->car;
442 if (SYMBOLP (binding))
444 /* If NOINHERIT, stop finding prefix definitions
445 after we pass a second occurrence of the `keymap' symbol. */
446 if (noinherit && EQ (binding, Qkeymap) && ! EQ (tail, map))
447 noprefix = 1;
449 else if (CONSP (binding))
451 if (EQ (XCONS (binding)->car, idx))
453 val = XCONS (binding)->cdr;
454 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap))
455 return Qnil;
456 if (CONSP (val))
457 fix_submap_inheritance (map, idx, val);
458 return val;
460 if (t_ok && EQ (XCONS (binding)->car, Qt))
461 t_binding = XCONS (binding)->cdr;
463 else if (VECTORP (binding))
465 if (NATNUMP (idx) && XFASTINT (idx) < XVECTOR (binding)->size)
467 val = XVECTOR (binding)->contents[XFASTINT (idx)];
468 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap))
469 return Qnil;
470 if (CONSP (val))
471 fix_submap_inheritance (map, idx, val);
472 return val;
476 QUIT;
479 return t_binding;
483 /* Given OBJECT which was found in a slot in a keymap,
484 trace indirect definitions to get the actual definition of that slot.
485 An indirect definition is a list of the form
486 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
487 and INDEX is the object to look up in KEYMAP to yield the definition.
489 Also if OBJECT has a menu string as the first element,
490 remove that. Also remove a menu help string as second element.
492 If AUTOLOAD is nonzero, load autoloadable keymaps
493 that are referred to with indirection. */
495 Lisp_Object
496 get_keyelt (object, autoload)
497 register Lisp_Object object;
498 int autoload;
500 while (1)
502 register Lisp_Object map, tem;
504 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
505 map = get_keymap_1 (Fcar_safe (object), 0, autoload);
506 tem = Fkeymapp (map);
507 if (!NILP (tem))
508 object = access_keymap (map, Fcdr (object), 0, 0);
510 /* If the keymap contents looks like (STRING . DEFN),
511 use DEFN.
512 Keymap alist elements like (CHAR MENUSTRING . DEFN)
513 will be used by HierarKey menus. */
514 else if (CONSP (object)
515 && STRINGP (XCONS (object)->car))
517 object = XCONS (object)->cdr;
518 /* Also remove a menu help string, if any,
519 following the menu item name. */
520 if (CONSP (object) && STRINGP (XCONS (object)->car))
521 object = XCONS (object)->cdr;
522 /* Also remove the sublist that caches key equivalences, if any. */
523 if (CONSP (object)
524 && CONSP (XCONS (object)->car))
526 Lisp_Object carcar;
527 carcar = XCONS (XCONS (object)->car)->car;
528 if (NILP (carcar) || VECTORP (carcar))
529 object = XCONS (object)->cdr;
533 else
534 /* Anything else is really the value. */
535 return object;
539 Lisp_Object
540 store_in_keymap (keymap, idx, def)
541 Lisp_Object keymap;
542 register Lisp_Object idx;
543 register Lisp_Object def;
545 /* If we are preparing to dump, and DEF is a menu element
546 with a menu item string, copy it to ensure it is not pure. */
547 if (CONSP (def) && PURE_P (def) && STRINGP (XCONS (def)->car))
548 def = Fcons (XCONS (def)->car, XCONS (def)->cdr);
550 if (!CONSP (keymap) || ! EQ (XCONS (keymap)->car, Qkeymap))
551 error ("attempt to define a key in a non-keymap");
553 /* If idx is a list (some sort of mouse click, perhaps?),
554 the index we want to use is the car of the list, which
555 ought to be a symbol. */
556 idx = EVENT_HEAD (idx);
558 /* If idx is a symbol, it might have modifiers, which need to
559 be put in the canonical order. */
560 if (SYMBOLP (idx))
561 idx = reorder_modifiers (idx);
562 else if (INTEGERP (idx))
563 /* Clobber the high bits that can be present on a machine
564 with more than 24 bits of integer. */
565 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
567 /* Scan the keymap for a binding of idx. */
569 Lisp_Object tail;
571 /* The cons after which we should insert new bindings. If the
572 keymap has a table element, we record its position here, so new
573 bindings will go after it; this way, the table will stay
574 towards the front of the alist and character lookups in dense
575 keymaps will remain fast. Otherwise, this just points at the
576 front of the keymap. */
577 Lisp_Object insertion_point;
579 insertion_point = keymap;
580 for (tail = XCONS (keymap)->cdr; CONSP (tail); tail = XCONS (tail)->cdr)
582 Lisp_Object elt;
584 elt = XCONS (tail)->car;
585 if (VECTORP (elt))
587 if (NATNUMP (idx) && XFASTINT (idx) < XVECTOR (elt)->size)
589 XVECTOR (elt)->contents[XFASTINT (idx)] = def;
590 return def;
592 insertion_point = tail;
594 else if (CONSP (elt))
596 if (EQ (idx, XCONS (elt)->car))
598 XCONS (elt)->cdr = def;
599 return def;
602 else if (SYMBOLP (elt))
604 /* If we find a 'keymap' symbol in the spine of KEYMAP,
605 then we must have found the start of a second keymap
606 being used as the tail of KEYMAP, and a binding for IDX
607 should be inserted before it. */
608 if (EQ (elt, Qkeymap))
609 goto keymap_end;
612 QUIT;
615 keymap_end:
616 /* We have scanned the entire keymap, and not found a binding for
617 IDX. Let's add one. */
618 XCONS (insertion_point)->cdr
619 = Fcons (Fcons (idx, def), XCONS (insertion_point)->cdr);
622 return def;
626 DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
627 "Return a copy of the keymap KEYMAP.\n\
628 The copy starts out with the same definitions of KEYMAP,\n\
629 but changing either the copy or KEYMAP does not affect the other.\n\
630 Any key definitions that are subkeymaps are recursively copied.\n\
631 However, a key definition which is a symbol whose definition is a keymap\n\
632 is not copied.")
633 (keymap)
634 Lisp_Object keymap;
636 register Lisp_Object copy, tail;
638 copy = Fcopy_alist (get_keymap (keymap));
640 for (tail = copy; CONSP (tail); tail = XCONS (tail)->cdr)
642 Lisp_Object elt;
644 elt = XCONS (tail)->car;
645 if (VECTORP (elt))
647 int i;
649 elt = Fcopy_sequence (elt);
650 XCONS (tail)->car = elt;
652 for (i = 0; i < XVECTOR (elt)->size; i++)
653 if (!SYMBOLP (XVECTOR (elt)->contents[i])
654 && ! NILP (Fkeymapp (XVECTOR (elt)->contents[i])))
655 XVECTOR (elt)->contents[i] =
656 Fcopy_keymap (XVECTOR (elt)->contents[i]);
658 else if (CONSP (elt))
660 /* Skip the optional menu string. */
661 if (CONSP (XCONS (elt)->cdr)
662 && STRINGP (XCONS (XCONS (elt)->cdr)->car))
664 Lisp_Object tem;
666 /* Copy the cell, since copy-alist didn't go this deep. */
667 XCONS (elt)->cdr = Fcons (XCONS (XCONS (elt)->cdr)->car,
668 XCONS (XCONS (elt)->cdr)->cdr);
669 elt = XCONS (elt)->cdr;
671 /* Also skip the optional menu help string. */
672 if (CONSP (XCONS (elt)->cdr)
673 && STRINGP (XCONS (XCONS (elt)->cdr)->car))
675 XCONS (elt)->cdr = Fcons (XCONS (XCONS (elt)->cdr)->car,
676 XCONS (XCONS (elt)->cdr)->cdr);
677 elt = XCONS (elt)->cdr;
679 /* There may also be a list that caches key equivalences.
680 Just delete it for the new keymap. */
681 if (CONSP (XCONS (elt)->cdr)
682 && CONSP (XCONS (XCONS (elt)->cdr)->car)
683 && (NILP (tem = XCONS (XCONS (XCONS (elt)->cdr)->car)->car)
684 || VECTORP (tem)))
685 XCONS (elt)->cdr = XCONS (XCONS (elt)->cdr)->cdr;
687 if (CONSP (elt)
688 && ! SYMBOLP (XCONS (elt)->cdr)
689 && ! NILP (Fkeymapp (XCONS (elt)->cdr)))
690 XCONS (elt)->cdr = Fcopy_keymap (XCONS (elt)->cdr);
694 return copy;
697 /* Simple Keymap mutators and accessors. */
699 /* GC is possible in this function if it autoloads a keymap. */
701 DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
702 "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\
703 KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\
704 meaning a sequence of keystrokes and events.\n\
705 Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
706 can be included if you use a vector.\n\
707 DEF is anything that can be a key's definition:\n\
708 nil (means key is undefined in this keymap),\n\
709 a command (a Lisp function suitable for interactive calling)\n\
710 a string (treated as a keyboard macro),\n\
711 a keymap (to define a prefix key),\n\
712 a symbol. When the key is looked up, the symbol will stand for its\n\
713 function definition, which should at that time be one of the above,\n\
714 or another symbol whose function definition is used, etc.\n\
715 a cons (STRING . DEFN), meaning that DEFN is the definition\n\
716 (DEFN should be a valid definition in its own right),\n\
717 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.\n\
719 If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at\n\
720 the front of KEYMAP.")
721 (keymap, key, def)
722 Lisp_Object keymap;
723 Lisp_Object key;
724 Lisp_Object def;
726 register int idx;
727 register Lisp_Object c;
728 register Lisp_Object tem;
729 register Lisp_Object cmd;
730 int metized = 0;
731 int meta_bit;
732 int length;
733 struct gcpro gcpro1, gcpro2, gcpro3;
735 keymap = get_keymap_1 (keymap, 1, 1);
737 if (!VECTORP (key) && !STRINGP (key))
738 key = wrong_type_argument (Qarrayp, key);
740 length = XFASTINT (Flength (key));
741 if (length == 0)
742 return Qnil;
744 if (SYMBOLP (def) && !EQ (Vdefine_key_rebound_commands, Qt))
745 Vdefine_key_rebound_commands = Fcons (def, Vdefine_key_rebound_commands);
747 GCPRO3 (keymap, key, def);
749 if (VECTORP (key))
750 meta_bit = meta_modifier;
751 else
752 meta_bit = 0x80;
754 idx = 0;
755 while (1)
757 c = Faref (key, make_number (idx));
759 if (CONSP (c) && lucid_event_type_list_p (c))
760 c = Fevent_convert_list (c);
762 if (INTEGERP (c)
763 && (XINT (c) & meta_bit)
764 && !metized)
766 c = meta_prefix_char;
767 metized = 1;
769 else
771 if (INTEGERP (c))
772 XSETINT (c, XINT (c) & ~meta_bit);
774 metized = 0;
775 idx++;
778 if (! INTEGERP (c) && ! SYMBOLP (c) && ! CONSP (c))
779 error ("Key sequence contains invalid events");
781 if (idx == length)
782 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
784 cmd = get_keyelt (access_keymap (keymap, c, 0, 1), 1);
786 /* If this key is undefined, make it a prefix. */
787 if (NILP (cmd))
788 cmd = define_as_prefix (keymap, c);
790 keymap = get_keymap_1 (cmd, 0, 1);
791 if (NILP (keymap))
792 /* We must use Fkey_description rather than just passing key to
793 error; key might be a vector, not a string. */
794 error ("Key sequence %s uses invalid prefix characters",
795 XSTRING (Fkey_description (key))->data);
799 /* Value is number if KEY is too long; NIL if valid but has no definition. */
800 /* GC is possible in this function if it autoloads a keymap. */
802 DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
803 "In keymap KEYMAP, look up key sequence KEY. Return the definition.\n\
804 nil means undefined. See doc of `define-key' for kinds of definitions.\n\
806 A number as value means KEY is \"too long\";\n\
807 that is, characters or symbols in it except for the last one\n\
808 fail to be a valid sequence of prefix characters in KEYMAP.\n\
809 The number is how many characters at the front of KEY\n\
810 it takes to reach a non-prefix command.\n\
812 Normally, `lookup-key' ignores bindings for t, which act as default\n\
813 bindings, used when nothing else in the keymap applies; this makes it\n\
814 usable as a general function for probing keymaps. However, if the\n\
815 third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will\n\
816 recognize the default bindings, just as `read-key-sequence' does.")
817 (keymap, key, accept_default)
818 register Lisp_Object keymap;
819 Lisp_Object key;
820 Lisp_Object accept_default;
822 register int idx;
823 register Lisp_Object tem;
824 register Lisp_Object cmd;
825 register Lisp_Object c;
826 int metized = 0;
827 int length;
828 int t_ok = ! NILP (accept_default);
829 int meta_bit;
830 struct gcpro gcpro1;
832 keymap = get_keymap_1 (keymap, 1, 1);
834 if (!VECTORP (key) && !STRINGP (key))
835 key = wrong_type_argument (Qarrayp, key);
837 length = XFASTINT (Flength (key));
838 if (length == 0)
839 return keymap;
841 if (VECTORP (key))
842 meta_bit = meta_modifier;
843 else
844 meta_bit = 0x80;
846 GCPRO1 (key);
848 idx = 0;
849 while (1)
851 c = Faref (key, make_number (idx));
853 if (CONSP (c) && lucid_event_type_list_p (c))
854 c = Fevent_convert_list (c);
856 if (INTEGERP (c)
857 && (XINT (c) & meta_bit)
858 && !metized)
860 c = meta_prefix_char;
861 metized = 1;
863 else
865 if (INTEGERP (c))
866 XSETINT (c, XINT (c) & ~meta_bit);
868 metized = 0;
869 idx++;
872 cmd = get_keyelt (access_keymap (keymap, c, t_ok, 0), 1);
873 if (idx == length)
874 RETURN_UNGCPRO (cmd);
876 keymap = get_keymap_1 (cmd, 0, 1);
877 if (NILP (keymap))
878 RETURN_UNGCPRO (make_number (idx));
880 QUIT;
884 /* Make KEYMAP define event C as a keymap (i.e., as a prefix).
885 Assume that currently it does not define C at all.
886 Return the keymap. */
888 static Lisp_Object
889 define_as_prefix (keymap, c)
890 Lisp_Object keymap, c;
892 Lisp_Object inherit, cmd;
894 cmd = Fmake_sparse_keymap (Qnil);
895 /* If this key is defined as a prefix in an inherited keymap,
896 make it a prefix in this map, and make its definition
897 inherit the other prefix definition. */
898 inherit = access_keymap (keymap, c, 0, 0);
899 #if 0
900 /* This code is needed to do the right thing in the following case:
901 keymap A inherits from B,
902 you define KEY as a prefix in A,
903 then later you define KEY as a prefix in B.
904 We want the old prefix definition in A to inherit from that in B.
905 It is hard to do that retroactively, so this code
906 creates the prefix in B right away.
908 But it turns out that this code causes problems immediately
909 when the prefix in A is defined: it causes B to define KEY
910 as a prefix with no subcommands.
912 So I took out this code. */
913 if (NILP (inherit))
915 /* If there's an inherited keymap
916 and it doesn't define this key,
917 make it define this key. */
918 Lisp_Object tail;
920 for (tail = Fcdr (keymap); CONSP (tail); tail = XCONS (tail)->cdr)
921 if (EQ (XCONS (tail)->car, Qkeymap))
922 break;
924 if (!NILP (tail))
925 inherit = define_as_prefix (tail, c);
927 #endif
929 cmd = nconc2 (cmd, inherit);
930 store_in_keymap (keymap, c, cmd);
932 return cmd;
935 /* Append a key to the end of a key sequence. We always make a vector. */
937 Lisp_Object
938 append_key (key_sequence, key)
939 Lisp_Object key_sequence, key;
941 Lisp_Object args[2];
943 args[0] = key_sequence;
945 args[1] = Fcons (key, Qnil);
946 return Fvconcat (2, args);
950 /* Global, local, and minor mode keymap stuff. */
952 /* We can't put these variables inside current_minor_maps, since under
953 some systems, static gets macro-defined to be the empty string.
954 Ickypoo. */
955 static Lisp_Object *cmm_modes, *cmm_maps;
956 static int cmm_size;
958 /* Error handler used in current_minor_maps. */
959 static Lisp_Object
960 current_minor_maps_error ()
962 return Qnil;
965 /* Store a pointer to an array of the keymaps of the currently active
966 minor modes in *buf, and return the number of maps it contains.
968 This function always returns a pointer to the same buffer, and may
969 free or reallocate it, so if you want to keep it for a long time or
970 hand it out to lisp code, copy it. This procedure will be called
971 for every key sequence read, so the nice lispy approach (return a
972 new assoclist, list, what have you) for each invocation would
973 result in a lot of consing over time.
975 If we used xrealloc/xmalloc and ran out of memory, they would throw
976 back to the command loop, which would try to read a key sequence,
977 which would call this function again, resulting in an infinite
978 loop. Instead, we'll use realloc/malloc and silently truncate the
979 list, let the key sequence be read, and hope some other piece of
980 code signals the error. */
982 current_minor_maps (modeptr, mapptr)
983 Lisp_Object **modeptr, **mapptr;
985 int i = 0;
986 Lisp_Object alist, assoc, var, val;
988 for (alist = Vminor_mode_map_alist;
989 CONSP (alist);
990 alist = XCONS (alist)->cdr)
991 if ((assoc = XCONS (alist)->car, CONSP (assoc))
992 && (var = XCONS (assoc)->car, SYMBOLP (var))
993 && (val = find_symbol_value (var), ! EQ (val, Qunbound))
994 && ! NILP (val))
996 Lisp_Object temp;
998 if (i >= cmm_size)
1000 Lisp_Object *newmodes, *newmaps;
1002 if (cmm_maps)
1004 BLOCK_INPUT;
1005 cmm_size *= 2;
1006 newmodes
1007 = (Lisp_Object *) realloc (cmm_modes,
1008 cmm_size * sizeof (Lisp_Object));
1009 newmaps
1010 = (Lisp_Object *) realloc (cmm_maps,
1011 cmm_size * sizeof (Lisp_Object));
1012 UNBLOCK_INPUT;
1014 else
1016 BLOCK_INPUT;
1017 cmm_size = 30;
1018 newmodes
1019 = (Lisp_Object *) malloc (cmm_size * sizeof (Lisp_Object));
1020 newmaps
1021 = (Lisp_Object *) malloc (cmm_size * sizeof (Lisp_Object));
1022 UNBLOCK_INPUT;
1025 if (newmaps && newmodes)
1027 cmm_modes = newmodes;
1028 cmm_maps = newmaps;
1030 else
1031 break;
1034 /* Get the keymap definition--or nil if it is not defined. */
1035 temp = internal_condition_case_1 (Findirect_function,
1036 XCONS (assoc)->cdr,
1037 Qerror, current_minor_maps_error);
1038 if (!NILP (temp))
1040 cmm_modes[i] = var;
1041 cmm_maps [i] = temp;
1042 i++;
1046 if (modeptr) *modeptr = cmm_modes;
1047 if (mapptr) *mapptr = cmm_maps;
1048 return i;
1051 /* GC is possible in this function if it autoloads a keymap. */
1053 DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 2, 0,
1054 "Return the binding for command KEY in current keymaps.\n\
1055 KEY is a string or vector, a sequence of keystrokes.\n\
1056 The binding is probably a symbol with a function definition.\n\
1058 Normally, `key-binding' ignores bindings for t, which act as default\n\
1059 bindings, used when nothing else in the keymap applies; this makes it\n\
1060 usable as a general function for probing keymaps. However, if the\n\
1061 optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does\n\
1062 recognize the default bindings, just as `read-key-sequence' does.")
1063 (key, accept_default)
1064 Lisp_Object key, accept_default;
1066 Lisp_Object *maps, value;
1067 int nmaps, i;
1068 struct gcpro gcpro1;
1070 GCPRO1 (key);
1072 if (!NILP (current_kboard->Voverriding_terminal_local_map))
1074 value = Flookup_key (current_kboard->Voverriding_terminal_local_map,
1075 key, accept_default);
1076 if (! NILP (value) && !INTEGERP (value))
1077 RETURN_UNGCPRO (value);
1079 else if (!NILP (Voverriding_local_map))
1081 value = Flookup_key (Voverriding_local_map, key, accept_default);
1082 if (! NILP (value) && !INTEGERP (value))
1083 RETURN_UNGCPRO (value);
1085 else
1087 Lisp_Object local;
1089 nmaps = current_minor_maps (0, &maps);
1090 /* Note that all these maps are GCPRO'd
1091 in the places where we found them. */
1093 for (i = 0; i < nmaps; i++)
1094 if (! NILP (maps[i]))
1096 value = Flookup_key (maps[i], key, accept_default);
1097 if (! NILP (value) && !INTEGERP (value))
1098 RETURN_UNGCPRO (value);
1101 local = get_local_map (PT, current_buffer);
1103 if (! NILP (local))
1105 value = Flookup_key (local, key, accept_default);
1106 if (! NILP (value) && !INTEGERP (value))
1107 RETURN_UNGCPRO (value);
1111 value = Flookup_key (current_global_map, key, accept_default);
1112 UNGCPRO;
1113 if (! NILP (value) && !INTEGERP (value))
1114 return value;
1116 return Qnil;
1119 /* GC is possible in this function if it autoloads a keymap. */
1121 DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
1122 "Return the binding for command KEYS in current local keymap only.\n\
1123 KEYS is a string, a sequence of keystrokes.\n\
1124 The binding is probably a symbol with a function definition.\n\
1126 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1127 bindings; see the description of `lookup-key' for more details about this.")
1128 (keys, accept_default)
1129 Lisp_Object keys, accept_default;
1131 register Lisp_Object map;
1132 map = current_buffer->keymap;
1133 if (NILP (map))
1134 return Qnil;
1135 return Flookup_key (map, keys, accept_default);
1138 /* GC is possible in this function if it autoloads a keymap. */
1140 DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
1141 "Return the binding for command KEYS in current global keymap only.\n\
1142 KEYS is a string, a sequence of keystrokes.\n\
1143 The binding is probably a symbol with a function definition.\n\
1144 This function's return values are the same as those of lookup-key\n\
1145 \(which see).\n\
1147 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1148 bindings; see the description of `lookup-key' for more details about this.")
1149 (keys, accept_default)
1150 Lisp_Object keys, accept_default;
1152 return Flookup_key (current_global_map, keys, accept_default);
1155 /* GC is possible in this function if it autoloads a keymap. */
1157 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
1158 "Find the visible minor mode bindings of KEY.\n\
1159 Return an alist of pairs (MODENAME . BINDING), where MODENAME is the\n\
1160 the symbol which names the minor mode binding KEY, and BINDING is\n\
1161 KEY's definition in that mode. In particular, if KEY has no\n\
1162 minor-mode bindings, return nil. If the first binding is a\n\
1163 non-prefix, all subsequent bindings will be omitted, since they would\n\
1164 be ignored. Similarly, the list doesn't include non-prefix bindings\n\
1165 that come after prefix bindings.\n\
1167 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1168 bindings; see the description of `lookup-key' for more details about this.")
1169 (key, accept_default)
1170 Lisp_Object key, accept_default;
1172 Lisp_Object *modes, *maps;
1173 int nmaps;
1174 Lisp_Object binding;
1175 int i, j;
1176 struct gcpro gcpro1, gcpro2;
1178 nmaps = current_minor_maps (&modes, &maps);
1179 /* Note that all these maps are GCPRO'd
1180 in the places where we found them. */
1182 binding = Qnil;
1183 GCPRO2 (key, binding);
1185 for (i = j = 0; i < nmaps; i++)
1186 if (! NILP (maps[i])
1187 && ! NILP (binding = Flookup_key (maps[i], key, accept_default))
1188 && !INTEGERP (binding))
1190 if (! NILP (get_keymap (binding)))
1191 maps[j++] = Fcons (modes[i], binding);
1192 else if (j == 0)
1193 RETURN_UNGCPRO (Fcons (Fcons (modes[i], binding), Qnil));
1196 UNGCPRO;
1197 return Flist (j, maps);
1200 DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 2, 0,
1201 "Define COMMAND as a prefix command. COMMAND should be a symbol.\n\
1202 A new sparse keymap is stored as COMMAND's function definition and its value.\n\
1203 If a second optional argument MAPVAR is given, the map is stored as\n\
1204 its value instead of as COMMAND's value; but COMMAND is still defined\n\
1205 as a function.")
1206 (command, mapvar)
1207 Lisp_Object command, mapvar;
1209 Lisp_Object map;
1210 map = Fmake_sparse_keymap (Qnil);
1211 Ffset (command, map);
1212 if (!NILP (mapvar))
1213 Fset (mapvar, map);
1214 else
1215 Fset (command, map);
1216 return command;
1219 DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0,
1220 "Select KEYMAP as the global keymap.")
1221 (keymap)
1222 Lisp_Object keymap;
1224 keymap = get_keymap (keymap);
1225 current_global_map = keymap;
1227 return Qnil;
1230 DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
1231 "Select KEYMAP as the local keymap.\n\
1232 If KEYMAP is nil, that means no local keymap.")
1233 (keymap)
1234 Lisp_Object keymap;
1236 if (!NILP (keymap))
1237 keymap = get_keymap (keymap);
1239 current_buffer->keymap = keymap;
1241 return Qnil;
1244 DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
1245 "Return current buffer's local keymap, or nil if it has none.")
1248 return current_buffer->keymap;
1251 DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0,
1252 "Return the current global keymap.")
1255 return current_global_map;
1258 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0,
1259 "Return a list of keymaps for the minor modes of the current buffer.")
1262 Lisp_Object *maps;
1263 int nmaps = current_minor_maps (0, &maps);
1265 return Flist (nmaps, maps);
1268 /* Help functions for describing and documenting keymaps. */
1270 /* This function cannot GC. */
1272 DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
1273 1, 2, 0,
1274 "Find all keymaps accessible via prefix characters from KEYMAP.\n\
1275 Returns a list of elements of the form (KEYS . MAP), where the sequence\n\
1276 KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\
1277 so that the KEYS increase in length. The first element is ([] . KEYMAP).\n\
1278 An optional argument PREFIX, if non-nil, should be a key sequence;\n\
1279 then the value includes only maps for prefixes that start with PREFIX.")
1280 (keymap, prefix)
1281 Lisp_Object keymap, prefix;
1283 Lisp_Object maps, good_maps, tail;
1284 int prefixlen = 0;
1286 /* no need for gcpro because we don't autoload any keymaps. */
1288 if (!NILP (prefix))
1289 prefixlen = XINT (Flength (prefix));
1291 if (!NILP (prefix))
1293 /* If a prefix was specified, start with the keymap (if any) for
1294 that prefix, so we don't waste time considering other prefixes. */
1295 Lisp_Object tem;
1296 tem = Flookup_key (keymap, prefix, Qt);
1297 /* Flookup_key may give us nil, or a number,
1298 if the prefix is not defined in this particular map.
1299 It might even give us a list that isn't a keymap. */
1300 tem = get_keymap_1 (tem, 0, 0);
1301 if (!NILP (tem))
1302 maps = Fcons (Fcons (prefix, tem), Qnil);
1303 else
1304 return Qnil;
1306 else
1307 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
1308 get_keymap (keymap)),
1309 Qnil);
1311 /* For each map in the list maps,
1312 look at any other maps it points to,
1313 and stick them at the end if they are not already in the list.
1315 This is a breadth-first traversal, where tail is the queue of
1316 nodes, and maps accumulates a list of all nodes visited. */
1318 for (tail = maps; CONSP (tail); tail = XCONS (tail)->cdr)
1320 register Lisp_Object thisseq, thismap;
1321 Lisp_Object last;
1322 /* Does the current sequence end in the meta-prefix-char? */
1323 int is_metized;
1325 thisseq = Fcar (Fcar (tail));
1326 thismap = Fcdr (Fcar (tail));
1327 last = make_number (XINT (Flength (thisseq)) - 1);
1328 is_metized = (XINT (last) >= 0
1329 && EQ (Faref (thisseq, last), meta_prefix_char));
1331 for (; CONSP (thismap); thismap = XCONS (thismap)->cdr)
1333 Lisp_Object elt;
1335 elt = XCONS (thismap)->car;
1337 QUIT;
1339 if (VECTORP (elt))
1341 register int i;
1343 /* Vector keymap. Scan all the elements. */
1344 for (i = 0; i < XVECTOR (elt)->size; i++)
1346 register Lisp_Object tem;
1347 register Lisp_Object cmd;
1349 cmd = get_keyelt (XVECTOR (elt)->contents[i], 0);
1350 if (NILP (cmd)) continue;
1351 tem = Fkeymapp (cmd);
1352 if (!NILP (tem))
1354 cmd = get_keymap (cmd);
1355 /* Ignore keymaps that are already added to maps. */
1356 tem = Frassq (cmd, maps);
1357 if (NILP (tem))
1359 /* If the last key in thisseq is meta-prefix-char,
1360 turn it into a meta-ized keystroke. We know
1361 that the event we're about to append is an
1362 ascii keystroke since we're processing a
1363 keymap table. */
1364 if (is_metized)
1366 int meta_bit = meta_modifier;
1367 tem = Fcopy_sequence (thisseq);
1369 Faset (tem, last, make_number (i | meta_bit));
1371 /* This new sequence is the same length as
1372 thisseq, so stick it in the list right
1373 after this one. */
1374 XCONS (tail)->cdr
1375 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
1377 else
1379 tem = append_key (thisseq, make_number (i));
1380 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
1386 else if (CONSP (elt))
1388 register Lisp_Object cmd, tem, filter;
1390 cmd = get_keyelt (XCONS (elt)->cdr, 0);
1391 /* Ignore definitions that aren't keymaps themselves. */
1392 tem = Fkeymapp (cmd);
1393 if (!NILP (tem))
1395 /* Ignore keymaps that have been seen already. */
1396 cmd = get_keymap (cmd);
1397 tem = Frassq (cmd, maps);
1398 if (NILP (tem))
1400 /* Let elt be the event defined by this map entry. */
1401 elt = XCONS (elt)->car;
1403 /* If the last key in thisseq is meta-prefix-char, and
1404 this entry is a binding for an ascii keystroke,
1405 turn it into a meta-ized keystroke. */
1406 if (is_metized && INTEGERP (elt))
1408 tem = Fcopy_sequence (thisseq);
1409 Faset (tem, last,
1410 make_number (XINT (elt) | meta_modifier));
1412 /* This new sequence is the same length as
1413 thisseq, so stick it in the list right
1414 after this one. */
1415 XCONS (tail)->cdr
1416 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
1418 else
1419 nconc2 (tail,
1420 Fcons (Fcons (append_key (thisseq, elt), cmd),
1421 Qnil));
1428 if (NILP (prefix))
1429 return maps;
1431 /* Now find just the maps whose access prefixes start with PREFIX. */
1433 good_maps = Qnil;
1434 for (; CONSP (maps); maps = XCONS (maps)->cdr)
1436 Lisp_Object elt, thisseq;
1437 elt = XCONS (maps)->car;
1438 thisseq = XCONS (elt)->car;
1439 /* The access prefix must be at least as long as PREFIX,
1440 and the first elements must match those of PREFIX. */
1441 if (XINT (Flength (thisseq)) >= prefixlen)
1443 int i;
1444 for (i = 0; i < prefixlen; i++)
1446 Lisp_Object i1;
1447 XSETFASTINT (i1, i);
1448 if (!EQ (Faref (thisseq, i1), Faref (prefix, i1)))
1449 break;
1451 if (i == prefixlen)
1452 good_maps = Fcons (elt, good_maps);
1456 return Fnreverse (good_maps);
1459 Lisp_Object Qsingle_key_description, Qkey_description;
1461 /* This function cannot GC. */
1463 DEFUN ("key-description", Fkey_description, Skey_description, 1, 1, 0,
1464 "Return a pretty description of key-sequence KEYS.\n\
1465 Control characters turn into \"C-foo\" sequences, meta into \"M-foo\"\n\
1466 spaces are put between sequence elements, etc.")
1467 (keys)
1468 Lisp_Object keys;
1470 int len;
1471 int i;
1472 Lisp_Object sep;
1473 Lisp_Object *args;
1475 if (STRINGP (keys))
1477 Lisp_Object vector;
1478 vector = Fmake_vector (Flength (keys), Qnil);
1479 for (i = 0; i < XSTRING (keys)->size; i++)
1481 if (XSTRING (keys)->data[i] & 0x80)
1482 XSETFASTINT (XVECTOR (vector)->contents[i],
1483 meta_modifier | (XSTRING (keys)->data[i] & ~0x80));
1484 else
1485 XSETFASTINT (XVECTOR (vector)->contents[i],
1486 XSTRING (keys)->data[i]);
1488 keys = vector;
1490 else if (!VECTORP (keys))
1491 keys = wrong_type_argument (Qarrayp, keys);
1493 /* In effect, this computes
1494 (mapconcat 'single-key-description keys " ")
1495 but we shouldn't use mapconcat because it can do GC. */
1497 len = XVECTOR (keys)->size;
1498 sep = build_string (" ");
1499 /* This has one extra element at the end that we don't pass to Fconcat. */
1500 args = (Lisp_Object *) alloca (len * 2 * sizeof (Lisp_Object));
1502 for (i = 0; i < len; i++)
1504 args[i * 2] = Fsingle_key_description (XVECTOR (keys)->contents[i]);
1505 args[i * 2 + 1] = sep;
1508 return Fconcat (len * 2 - 1, args);
1511 char *
1512 push_key_description (c, p)
1513 register unsigned int c;
1514 register char *p;
1516 /* Clear all the meaningless bits above the meta bit. */
1517 c &= meta_modifier | ~ - meta_modifier;
1519 if (c & alt_modifier)
1521 *p++ = 'A';
1522 *p++ = '-';
1523 c -= alt_modifier;
1525 if (c & ctrl_modifier)
1527 *p++ = 'C';
1528 *p++ = '-';
1529 c -= ctrl_modifier;
1531 if (c & hyper_modifier)
1533 *p++ = 'H';
1534 *p++ = '-';
1535 c -= hyper_modifier;
1537 if (c & meta_modifier)
1539 *p++ = 'M';
1540 *p++ = '-';
1541 c -= meta_modifier;
1543 if (c & shift_modifier)
1545 *p++ = 'S';
1546 *p++ = '-';
1547 c -= shift_modifier;
1549 if (c & super_modifier)
1551 *p++ = 's';
1552 *p++ = '-';
1553 c -= super_modifier;
1555 if (c < 040)
1557 if (c == 033)
1559 *p++ = 'E';
1560 *p++ = 'S';
1561 *p++ = 'C';
1563 else if (c == '\t')
1565 *p++ = 'T';
1566 *p++ = 'A';
1567 *p++ = 'B';
1569 else if (c == Ctl('J'))
1571 *p++ = 'L';
1572 *p++ = 'F';
1573 *p++ = 'D';
1575 else if (c == Ctl('M'))
1577 *p++ = 'R';
1578 *p++ = 'E';
1579 *p++ = 'T';
1581 else
1583 *p++ = 'C';
1584 *p++ = '-';
1585 if (c > 0 && c <= Ctl ('Z'))
1586 *p++ = c + 0140;
1587 else
1588 *p++ = c + 0100;
1591 else if (c == 0177)
1593 *p++ = 'D';
1594 *p++ = 'E';
1595 *p++ = 'L';
1597 else if (c == ' ')
1599 *p++ = 'S';
1600 *p++ = 'P';
1601 *p++ = 'C';
1603 else if (c < 256)
1604 *p++ = c;
1605 else
1607 *p++ = '\\';
1608 *p++ = (7 & (c >> 15)) + '0';
1609 *p++ = (7 & (c >> 12)) + '0';
1610 *p++ = (7 & (c >> 9)) + '0';
1611 *p++ = (7 & (c >> 6)) + '0';
1612 *p++ = (7 & (c >> 3)) + '0';
1613 *p++ = (7 & (c >> 0)) + '0';
1616 return p;
1619 /* This function cannot GC. */
1621 DEFUN ("single-key-description", Fsingle_key_description, Ssingle_key_description, 1, 1, 0,
1622 "Return a pretty description of command character KEY.\n\
1623 Control characters turn into C-whatever, etc.")
1624 (key)
1625 Lisp_Object key;
1627 char tem[20];
1629 key = EVENT_HEAD (key);
1631 if (INTEGERP (key)) /* Normal character */
1633 *push_key_description (XUINT (key), tem) = 0;
1634 return build_string (tem);
1636 else if (SYMBOLP (key)) /* Function key or event-symbol */
1637 return Fsymbol_name (key);
1638 else if (STRINGP (key)) /* Buffer names in the menubar. */
1639 return Fcopy_sequence (key);
1640 else
1641 error ("KEY must be an integer, cons, symbol, or string");
1644 char *
1645 push_text_char_description (c, p)
1646 register unsigned int c;
1647 register char *p;
1649 if (c >= 0200)
1651 *p++ = 'M';
1652 *p++ = '-';
1653 c -= 0200;
1655 if (c < 040)
1657 *p++ = '^';
1658 *p++ = c + 64; /* 'A' - 1 */
1660 else if (c == 0177)
1662 *p++ = '^';
1663 *p++ = '?';
1665 else
1666 *p++ = c;
1667 return p;
1670 /* This function cannot GC. */
1672 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
1673 "Return a pretty description of file-character CHARACTER.\n\
1674 Control characters turn into \"^char\", etc.")
1675 (character)
1676 Lisp_Object character;
1678 char tem[6];
1680 CHECK_NUMBER (character, 0);
1682 *push_text_char_description (XINT (character) & 0377, tem) = 0;
1684 return build_string (tem);
1687 /* Return non-zero if SEQ contains only ASCII characters, perhaps with
1688 a meta bit. */
1689 static int
1690 ascii_sequence_p (seq)
1691 Lisp_Object seq;
1693 int i;
1694 int len = XINT (Flength (seq));
1696 for (i = 0; i < len; i++)
1698 Lisp_Object ii, elt;
1700 XSETFASTINT (ii, i);
1701 elt = Faref (seq, ii);
1703 if (!INTEGERP (elt)
1704 || (XUINT (elt) & ~CHAR_META) >= 0x80)
1705 return 0;
1708 return 1;
1712 /* where-is - finding a command in a set of keymaps. */
1714 /* This function can GC if Flookup_key autoloads any keymaps. */
1716 DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 4, 0,
1717 "Return list of keys that invoke DEFINITION.\n\
1718 If KEYMAP is non-nil, search only KEYMAP and the global keymap.\n\
1719 If KEYMAP is nil, search all the currently active keymaps.\n\
1721 If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,\n\
1722 rather than a list of all possible key sequences.\n\
1723 If FIRSTONLY is the symbol `non-ascii', return the first binding found,\n\
1724 no matter what it is.\n\
1725 If FIRSTONLY has another non-nil value, prefer sequences of ASCII characters,\n\
1726 and entirely reject menu bindings.\n\
1728 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections\n\
1729 to other keymaps or slots. This makes it possible to search for an\n\
1730 indirect definition itself.")
1731 (definition, keymap, firstonly, noindirect)
1732 Lisp_Object definition, keymap;
1733 Lisp_Object firstonly, noindirect;
1735 Lisp_Object maps;
1736 Lisp_Object found, sequence;
1737 int keymap_specified = !NILP (keymap);
1738 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
1739 /* 1 means ignore all menu bindings entirely. */
1740 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
1742 if (! keymap_specified)
1744 #ifdef USE_TEXT_PROPERTIES
1745 keymap = get_local_map (PT, current_buffer);
1746 #else
1747 keymap = current_buffer->keymap;
1748 #endif
1751 if (!NILP (keymap))
1752 maps = nconc2 (Faccessible_keymaps (get_keymap (keymap), Qnil),
1753 Faccessible_keymaps (get_keymap (current_global_map),
1754 Qnil));
1755 else
1756 maps = Faccessible_keymaps (get_keymap (current_global_map), Qnil);
1758 /* Put the minor mode keymaps on the front. */
1759 if (! keymap_specified)
1761 Lisp_Object minors;
1762 minors = Fnreverse (Fcurrent_minor_mode_maps ());
1763 while (!NILP (minors))
1765 maps = nconc2 (Faccessible_keymaps (get_keymap (XCONS (minors)->car),
1766 Qnil),
1767 maps);
1768 minors = XCONS (minors)->cdr;
1772 GCPRO5 (definition, keymap, maps, found, sequence);
1773 found = Qnil;
1774 sequence = Qnil;
1776 for (; !NILP (maps); maps = Fcdr (maps))
1778 /* Key sequence to reach map, and the map that it reaches */
1779 register Lisp_Object this, map;
1781 /* If Fcar (map) is a VECTOR, the current element within that vector. */
1782 int i = 0;
1784 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
1785 [M-CHAR] sequences, check if last character of the sequence
1786 is the meta-prefix char. */
1787 Lisp_Object last;
1788 int last_is_meta;
1790 this = Fcar (Fcar (maps));
1791 map = Fcdr (Fcar (maps));
1792 last = make_number (XINT (Flength (this)) - 1);
1793 last_is_meta = (XINT (last) >= 0
1794 && EQ (Faref (this, last), meta_prefix_char));
1796 QUIT;
1798 while (CONSP (map))
1800 /* Because the code we want to run on each binding is rather
1801 large, we don't want to have two separate loop bodies for
1802 sparse keymap bindings and tables; we want to iterate one
1803 loop body over both keymap and vector bindings.
1805 For this reason, if Fcar (map) is a vector, we don't
1806 advance map to the next element until i indicates that we
1807 have finished off the vector. */
1809 Lisp_Object elt, key, binding;
1810 elt = XCONS (map)->car;
1812 QUIT;
1814 /* Set key and binding to the current key and binding, and
1815 advance map and i to the next binding. */
1816 if (VECTORP (elt))
1818 /* In a vector, look at each element. */
1819 binding = XVECTOR (elt)->contents[i];
1820 XSETFASTINT (key, i);
1821 i++;
1823 /* If we've just finished scanning a vector, advance map
1824 to the next element, and reset i in anticipation of the
1825 next vector we may find. */
1826 if (i >= XVECTOR (elt)->size)
1828 map = XCONS (map)->cdr;
1829 i = 0;
1832 else if (CONSP (elt))
1834 key = Fcar (Fcar (map));
1835 binding = Fcdr (Fcar (map));
1837 map = XCONS (map)->cdr;
1839 else
1840 /* We want to ignore keymap elements that are neither
1841 vectors nor conses. */
1843 map = XCONS (map)->cdr;
1844 continue;
1847 /* Search through indirections unless that's not wanted. */
1848 if (NILP (noindirect))
1850 if (nomenus)
1852 while (1)
1854 Lisp_Object map, tem;
1855 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
1856 map = get_keymap_1 (Fcar_safe (definition), 0, 0);
1857 tem = Fkeymapp (map);
1858 if (!NILP (tem))
1859 definition = access_keymap (map, Fcdr (definition), 0, 0);
1860 else
1861 break;
1863 /* If the contents are (STRING ...), reject. */
1864 if (CONSP (definition)
1865 && STRINGP (XCONS (definition)->car))
1866 continue;
1868 else
1869 binding = get_keyelt (binding, 0);
1872 /* End this iteration if this element does not match
1873 the target. */
1875 if (CONSP (definition))
1877 Lisp_Object tem;
1878 tem = Fequal (binding, definition);
1879 if (NILP (tem))
1880 continue;
1882 else
1883 if (!EQ (binding, definition))
1884 continue;
1886 /* We have found a match.
1887 Construct the key sequence where we found it. */
1888 if (INTEGERP (key) && last_is_meta)
1890 sequence = Fcopy_sequence (this);
1891 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
1893 else
1894 sequence = append_key (this, key);
1896 /* Verify that this key binding is not shadowed by another
1897 binding for the same key, before we say it exists.
1899 Mechanism: look for local definition of this key and if
1900 it is defined and does not match what we found then
1901 ignore this key.
1903 Either nil or number as value from Flookup_key
1904 means undefined. */
1905 if (keymap_specified)
1907 binding = Flookup_key (keymap, sequence, Qnil);
1908 if (!NILP (binding) && !INTEGERP (binding))
1910 if (CONSP (definition))
1912 Lisp_Object tem;
1913 tem = Fequal (binding, definition);
1914 if (NILP (tem))
1915 continue;
1917 else
1918 if (!EQ (binding, definition))
1919 continue;
1922 else
1924 binding = Fkey_binding (sequence, Qnil);
1925 if (!EQ (binding, definition))
1926 continue;
1929 /* It is a true unshadowed match. Record it, unless it's already
1930 been seen (as could happen when inheriting keymaps). */
1931 if (NILP (Fmember (sequence, found)))
1932 found = Fcons (sequence, found);
1934 /* If firstonly is Qnon_ascii, then we can return the first
1935 binding we find. If firstonly is not Qnon_ascii but not
1936 nil, then we should return the first ascii-only binding
1937 we find. */
1938 if (EQ (firstonly, Qnon_ascii))
1939 RETURN_UNGCPRO (sequence);
1940 else if (! NILP (firstonly) && ascii_sequence_p (sequence))
1941 RETURN_UNGCPRO (sequence);
1945 UNGCPRO;
1947 found = Fnreverse (found);
1949 /* firstonly may have been t, but we may have gone all the way through
1950 the keymaps without finding an all-ASCII key sequence. So just
1951 return the best we could find. */
1952 if (! NILP (firstonly))
1953 return Fcar (found);
1955 return found;
1958 /* describe-bindings - summarizing all the bindings in a set of keymaps. */
1960 DEFUN ("describe-bindings", Fdescribe_bindings, Sdescribe_bindings, 0, 1, "",
1961 "Show a list of all defined keys, and their definitions.\n\
1962 The list is put in a buffer, which is displayed.\n\
1963 An optional argument PREFIX, if non-nil, should be a key sequence;\n\
1964 then we display only bindings that start with that prefix.")
1965 (prefix)
1966 Lisp_Object prefix;
1968 register Lisp_Object thisbuf;
1969 XSETBUFFER (thisbuf, current_buffer);
1970 internal_with_output_to_temp_buffer ("*Help*",
1971 describe_buffer_bindings,
1972 Fcons (thisbuf, prefix));
1973 return Qnil;
1976 /* ARG is (BUFFER . PREFIX). */
1978 static Lisp_Object
1979 describe_buffer_bindings (arg)
1980 Lisp_Object arg;
1982 Lisp_Object descbuf, prefix, shadow;
1983 register Lisp_Object start1;
1984 struct gcpro gcpro1;
1986 char *alternate_heading
1987 = "\
1988 Alternate Characters (use anywhere the nominal character is listed):\n\
1989 nominal alternate\n\
1990 ------- ---------\n";
1992 descbuf = XCONS (arg)->car;
1993 prefix = XCONS (arg)->cdr;
1994 shadow = Qnil;
1995 GCPRO1 (shadow);
1997 Fset_buffer (Vstandard_output);
1999 /* Report on alternates for keys. */
2000 if (STRINGP (Vkeyboard_translate_table) && !NILP (prefix))
2002 int c;
2003 unsigned char *translate = XSTRING (Vkeyboard_translate_table)->data;
2004 int translate_len = XSTRING (Vkeyboard_translate_table)->size;
2006 for (c = 0; c < translate_len; c++)
2007 if (translate[c] != c)
2009 char buf[20];
2010 char *bufend;
2012 if (alternate_heading)
2014 insert_string (alternate_heading);
2015 alternate_heading = 0;
2018 bufend = push_key_description (translate[c], buf);
2019 insert (buf, bufend - buf);
2020 Findent_to (make_number (16), make_number (1));
2021 bufend = push_key_description (c, buf);
2022 insert (buf, bufend - buf);
2024 insert ("\n", 1);
2027 insert ("\n", 1);
2030 if (!NILP (Vkey_translation_map))
2031 describe_map_tree (Vkey_translation_map, 0, Qnil, prefix,
2032 "Key translations", 0, 1, 0);
2035 int i, nmaps;
2036 Lisp_Object *modes, *maps;
2038 /* Temporarily switch to descbuf, so that we can get that buffer's
2039 minor modes correctly. */
2040 Fset_buffer (descbuf);
2042 if (!NILP (current_kboard->Voverriding_terminal_local_map)
2043 || !NILP (Voverriding_local_map))
2044 nmaps = 0;
2045 else
2046 nmaps = current_minor_maps (&modes, &maps);
2047 Fset_buffer (Vstandard_output);
2049 /* Print the minor mode maps. */
2050 for (i = 0; i < nmaps; i++)
2052 /* The title for a minor mode keymap
2053 is constructed at run time.
2054 We let describe_map_tree do the actual insertion
2055 because it takes care of other features when doing so. */
2056 char *title, *p;
2058 if (!SYMBOLP (modes[i]))
2059 abort();
2061 p = title = (char *) alloca (40 + XSYMBOL (modes[i])->name->size);
2062 *p++ = '`';
2063 bcopy (XSYMBOL (modes[i])->name->data, p,
2064 XSYMBOL (modes[i])->name->size);
2065 p += XSYMBOL (modes[i])->name->size;
2066 *p++ = '\'';
2067 bcopy (" Minor Mode Bindings", p, sizeof (" Minor Mode Bindings") - 1);
2068 p += sizeof (" Minor Mode Bindings") - 1;
2069 *p = 0;
2071 describe_map_tree (maps[i], 0, shadow, prefix, title, 0, 0, 0);
2072 shadow = Fcons (maps[i], shadow);
2076 /* Print the (major mode) local map. */
2077 if (!NILP (current_kboard->Voverriding_terminal_local_map))
2078 start1 = current_kboard->Voverriding_terminal_local_map;
2079 else if (!NILP (Voverriding_local_map))
2080 start1 = Voverriding_local_map;
2081 else
2082 start1 = XBUFFER (descbuf)->keymap;
2084 if (!NILP (start1))
2086 describe_map_tree (start1, 0, shadow, prefix,
2087 "Major Mode Bindings", 0, 0, 0);
2088 shadow = Fcons (start1, shadow);
2091 describe_map_tree (current_global_map, 0, shadow, prefix,
2092 "Global Bindings", 0, 0, 1);
2094 /* Print the function-key-map translations under this prefix. */
2095 if (!NILP (Vfunction_key_map))
2096 describe_map_tree (Vfunction_key_map, 0, Qnil, prefix,
2097 "Function key map translations", 0, 1, 0);
2099 call0 (intern ("help-mode"));
2100 Fset_buffer (descbuf);
2101 UNGCPRO;
2102 return Qnil;
2105 /* Insert a description of the key bindings in STARTMAP,
2106 followed by those of all maps reachable through STARTMAP.
2107 If PARTIAL is nonzero, omit certain "uninteresting" commands
2108 (such as `undefined').
2109 If SHADOW is non-nil, it is a list of maps;
2110 don't mention keys which would be shadowed by any of them.
2111 PREFIX, if non-nil, says mention only keys that start with PREFIX.
2112 TITLE, if not 0, is a string to insert at the beginning.
2113 TITLE should not end with a colon or a newline; we supply that.
2114 If NOMENU is not 0, then omit menu-bar commands.
2116 If TRANSL is nonzero, the definitions are actually key translations
2117 so print strings and vectors differently.
2119 If ALWAYS_TITLE is nonzero, print the title even if there are no maps
2120 to look through. */
2122 void
2123 describe_map_tree (startmap, partial, shadow, prefix, title, nomenu, transl,
2124 always_title)
2125 Lisp_Object startmap, shadow, prefix;
2126 int partial;
2127 char *title;
2128 int nomenu;
2129 int transl;
2130 int always_title;
2132 Lisp_Object maps, seen, sub_shadows;
2133 struct gcpro gcpro1, gcpro2, gcpro3;
2134 int something = 0;
2135 char *key_heading
2136 = "\
2137 key binding\n\
2138 --- -------\n";
2140 maps = Faccessible_keymaps (startmap, prefix);
2141 seen = Qnil;
2142 sub_shadows = Qnil;
2143 GCPRO3 (maps, seen, sub_shadows);
2145 if (nomenu)
2147 Lisp_Object list;
2149 /* Delete from MAPS each element that is for the menu bar. */
2150 for (list = maps; !NILP (list); list = XCONS (list)->cdr)
2152 Lisp_Object elt, prefix, tem;
2154 elt = Fcar (list);
2155 prefix = Fcar (elt);
2156 if (XVECTOR (prefix)->size >= 1)
2158 tem = Faref (prefix, make_number (0));
2159 if (EQ (tem, Qmenu_bar))
2160 maps = Fdelq (elt, maps);
2165 if (!NILP (maps) || always_title)
2167 if (title)
2169 insert_string (title);
2170 if (!NILP (prefix))
2172 insert_string (" Starting With ");
2173 insert1 (Fkey_description (prefix));
2175 insert_string (":\n");
2177 insert_string (key_heading);
2178 something = 1;
2181 for (; !NILP (maps); maps = Fcdr (maps))
2183 register Lisp_Object elt, prefix, tail;
2185 elt = Fcar (maps);
2186 prefix = Fcar (elt);
2188 sub_shadows = Qnil;
2190 for (tail = shadow; CONSP (tail); tail = XCONS (tail)->cdr)
2192 Lisp_Object shmap;
2194 shmap = XCONS (tail)->car;
2196 /* If the sequence by which we reach this keymap is zero-length,
2197 then the shadow map for this keymap is just SHADOW. */
2198 if ((STRINGP (prefix) && XSTRING (prefix)->size == 0)
2199 || (VECTORP (prefix) && XVECTOR (prefix)->size == 0))
2201 /* If the sequence by which we reach this keymap actually has
2202 some elements, then the sequence's definition in SHADOW is
2203 what we should use. */
2204 else
2206 shmap = Flookup_key (shmap, Fcar (elt), Qt);
2207 if (INTEGERP (shmap))
2208 shmap = Qnil;
2211 /* If shmap is not nil and not a keymap,
2212 it completely shadows this map, so don't
2213 describe this map at all. */
2214 if (!NILP (shmap) && NILP (Fkeymapp (shmap)))
2215 goto skip;
2217 if (!NILP (shmap))
2218 sub_shadows = Fcons (shmap, sub_shadows);
2221 describe_map (Fcdr (elt), Fcar (elt),
2222 transl ? describe_translation : describe_command,
2223 partial, sub_shadows, &seen, nomenu);
2225 skip: ;
2228 if (something)
2229 insert_string ("\n");
2231 UNGCPRO;
2234 static int previous_description_column;
2236 static void
2237 describe_command (definition)
2238 Lisp_Object definition;
2240 register Lisp_Object tem1;
2241 int column = current_column ();
2242 int description_column;
2244 /* If column 16 is no good, go to col 32;
2245 but don't push beyond that--go to next line instead. */
2246 if (column > 30)
2248 insert_char ('\n');
2249 description_column = 32;
2251 else if (column > 14 || (column > 10 && previous_description_column == 32))
2252 description_column = 32;
2253 else
2254 description_column = 16;
2256 Findent_to (make_number (description_column), make_number (1));
2257 previous_description_column = description_column;
2259 if (SYMBOLP (definition))
2261 XSETSTRING (tem1, XSYMBOL (definition)->name);
2262 insert1 (tem1);
2263 insert_string ("\n");
2265 else if (STRINGP (definition) || VECTORP (definition))
2266 insert_string ("Keyboard Macro\n");
2267 else
2269 tem1 = Fkeymapp (definition);
2270 if (!NILP (tem1))
2271 insert_string ("Prefix Command\n");
2272 else
2273 insert_string ("??\n");
2277 static void
2278 describe_translation (definition)
2279 Lisp_Object definition;
2281 register Lisp_Object tem1;
2283 Findent_to (make_number (16), make_number (1));
2285 if (SYMBOLP (definition))
2287 XSETSTRING (tem1, XSYMBOL (definition)->name);
2288 insert1 (tem1);
2289 insert_string ("\n");
2291 else if (STRINGP (definition) || VECTORP (definition))
2293 insert1 (Fkey_description (definition));
2294 insert_string ("\n");
2296 else
2298 tem1 = Fkeymapp (definition);
2299 if (!NILP (tem1))
2300 insert_string ("Prefix Command\n");
2301 else
2302 insert_string ("??\n");
2306 /* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2307 Returns the first non-nil binding found in any of those maps. */
2309 static Lisp_Object
2310 shadow_lookup (shadow, key, flag)
2311 Lisp_Object shadow, key, flag;
2313 Lisp_Object tail, value;
2315 for (tail = shadow; CONSP (tail); tail = XCONS (tail)->cdr)
2317 value = Flookup_key (XCONS (tail)->car, key, flag);
2318 if (!NILP (value))
2319 return value;
2321 return Qnil;
2324 /* Describe the contents of map MAP, assuming that this map itself is
2325 reached by the sequence of prefix keys KEYS (a string or vector).
2326 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
2328 static void
2329 describe_map (map, keys, elt_describer, partial, shadow, seen, nomenu)
2330 register Lisp_Object map;
2331 Lisp_Object keys;
2332 int (*elt_describer) ();
2333 int partial;
2334 Lisp_Object shadow;
2335 Lisp_Object *seen;
2336 int nomenu;
2338 Lisp_Object elt_prefix;
2339 Lisp_Object tail, definition, event;
2340 Lisp_Object tem;
2341 Lisp_Object suppress;
2342 Lisp_Object kludge;
2343 int first = 1;
2344 struct gcpro gcpro1, gcpro2, gcpro3;
2346 if (!NILP (keys) && XFASTINT (Flength (keys)) > 0)
2348 /* Call Fkey_description first, to avoid GC bug for the other string. */
2349 tem = Fkey_description (keys);
2350 elt_prefix = concat2 (tem, build_string (" "));
2352 else
2353 elt_prefix = Qnil;
2355 if (partial)
2356 suppress = intern ("suppress-keymap");
2358 /* This vector gets used to present single keys to Flookup_key. Since
2359 that is done once per keymap element, we don't want to cons up a
2360 fresh vector every time. */
2361 kludge = Fmake_vector (make_number (1), Qnil);
2362 definition = Qnil;
2364 GCPRO3 (elt_prefix, definition, kludge);
2366 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr)
2368 QUIT;
2370 if (VECTORP (XCONS (tail)->car))
2371 describe_vector (XCONS (tail)->car,
2372 elt_prefix, elt_describer, partial, shadow, map);
2373 else if (CONSP (XCONS (tail)->car))
2375 event = XCONS (XCONS (tail)->car)->car;
2377 /* Ignore bindings whose "keys" are not really valid events.
2378 (We get these in the frames and buffers menu.) */
2379 if (! (SYMBOLP (event) || INTEGERP (event)))
2380 continue;
2382 if (nomenu && EQ (event, Qmenu_bar))
2383 continue;
2385 definition = get_keyelt (XCONS (XCONS (tail)->car)->cdr, 0);
2387 /* Don't show undefined commands or suppressed commands. */
2388 if (NILP (definition)) continue;
2389 if (SYMBOLP (definition) && partial)
2391 tem = Fget (definition, suppress);
2392 if (!NILP (tem))
2393 continue;
2396 /* Don't show a command that isn't really visible
2397 because a local definition of the same key shadows it. */
2399 XVECTOR (kludge)->contents[0] = event;
2400 if (!NILP (shadow))
2402 tem = shadow_lookup (shadow, kludge, Qt);
2403 if (!NILP (tem)) continue;
2406 tem = Flookup_key (map, kludge, Qt);
2407 if (! EQ (tem, definition)) continue;
2409 if (first)
2411 previous_description_column = 0;
2412 insert ("\n", 1);
2413 first = 0;
2416 if (!NILP (elt_prefix))
2417 insert1 (elt_prefix);
2419 /* THIS gets the string to describe the character EVENT. */
2420 insert1 (Fsingle_key_description (event));
2422 /* Print a description of the definition of this character.
2423 elt_describer will take care of spacing out far enough
2424 for alignment purposes. */
2425 (*elt_describer) (definition);
2427 else if (EQ (XCONS (tail)->car, Qkeymap))
2429 /* The same keymap might be in the structure twice, if we're
2430 using an inherited keymap. So skip anything we've already
2431 encountered. */
2432 tem = Fassq (tail, *seen);
2433 if (CONSP (tem) && !NILP (Fequal (XCONS (tem)->car, keys)))
2434 break;
2435 *seen = Fcons (Fcons (tail, keys), *seen);
2439 UNGCPRO;
2442 static int
2443 describe_vector_princ (elt)
2444 Lisp_Object elt;
2446 Findent_to (make_number (16), make_number (1));
2447 Fprinc (elt, Qnil);
2448 Fterpri (Qnil);
2451 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 1, 0,
2452 "Insert a description of contents of VECTOR.\n\
2453 This is text showing the elements of vector matched against indices.")
2454 (vector)
2455 Lisp_Object vector;
2457 int count = specpdl_ptr - specpdl;
2459 specbind (Qstandard_output, Fcurrent_buffer ());
2460 CHECK_VECTOR_OR_CHAR_TABLE (vector, 0);
2461 describe_vector (vector, Qnil, describe_vector_princ, 0, Qnil, Qnil);
2463 return unbind_to (count, Qnil);
2466 /* Insert in the current buffer a description of the contents of VECTOR.
2467 We call ELT_DESCRIBER to insert the description of one value found
2468 in VECTOR.
2470 ELT_PREFIX describes what "comes before" the keys or indices defined
2471 by this vector.
2473 If the vector is in a keymap, ELT_PREFIX is a prefix key which
2474 leads to this keymap.
2476 If the vector is a chartable, ELT_PREFIX is the vector
2477 of bytes that lead to the character set or portion of a character
2478 set described by this chartable.
2480 If PARTIAL is nonzero, it means do not mention suppressed commands
2481 (that assumes the vector is in a keymap).
2483 SHADOW is a list of keymaps that shadow this map.
2484 If it is non-nil, then we look up the key in those maps
2485 and we don't mention it now if it is defined by any of them.
2487 ENTIRE_MAP is the keymap in which this vector appears.
2488 If the definition in effect in the whole map does not match
2489 the one in this vector, we ignore this one. */
2491 describe_vector (vector, elt_prefix, elt_describer,
2492 partial, shadow, entire_map)
2493 register Lisp_Object vector;
2494 Lisp_Object elt_prefix;
2495 int (*elt_describer) ();
2496 int partial;
2497 Lisp_Object shadow;
2498 Lisp_Object entire_map;
2500 Lisp_Object this;
2501 Lisp_Object dummy;
2502 Lisp_Object definition;
2503 Lisp_Object tem2;
2504 register int i;
2505 Lisp_Object suppress;
2506 Lisp_Object kludge;
2507 Lisp_Object chartable_kludge;
2508 int first = 1;
2509 int size;
2510 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2512 definition = Qnil;
2513 chartable_kludge = Qnil;
2515 /* This vector gets used to present single keys to Flookup_key. Since
2516 that is done once per vector element, we don't want to cons up a
2517 fresh vector every time. */
2518 kludge = Fmake_vector (make_number (1), Qnil);
2519 GCPRO4 (elt_prefix, definition, kludge, chartable_kludge);
2521 if (partial)
2522 suppress = intern ("suppress-keymap");
2524 /* This does the right thing for char-tables as well as ordinary vectors. */
2525 size = XFASTINT (Flength (vector));
2527 for (i = 0; i < size; i++)
2529 QUIT;
2530 definition = get_keyelt (XVECTOR (vector)->contents[i], 0);
2532 if (NILP (definition)) continue;
2534 /* Don't mention suppressed commands. */
2535 if (SYMBOLP (definition) && partial)
2537 this = Fget (definition, suppress);
2538 if (!NILP (this))
2539 continue;
2542 /* If this binding is shadowed by some other map, ignore it. */
2543 if (!NILP (shadow))
2545 Lisp_Object tem;
2547 XVECTOR (kludge)->contents[0] = make_number (i);
2548 tem = shadow_lookup (shadow, kludge, Qt);
2550 if (!NILP (tem)) continue;
2553 /* Ignore this definition if it is shadowed by an earlier
2554 one in the same keymap. */
2555 if (!NILP (entire_map))
2557 Lisp_Object tem;
2559 XVECTOR (kludge)->contents[0] = make_number (i);
2560 tem = Flookup_key (entire_map, kludge, Qt);
2562 if (! EQ (tem, definition))
2563 continue;
2566 /* If we find a char-table within a char-table,
2567 scan it recursively; it defines the details for
2568 a character set or a portion of a character set. */
2569 if (CHAR_TABLE_P (vector) && CHAR_TABLE_P (definition))
2571 int outer_level
2572 = !NILP (elt_prefix) ? XVECTOR (elt_prefix)->size : 0;
2573 if (NILP (chartable_kludge))
2575 chartable_kludge
2576 = Fmake_vector (make_number (outer_level + 1), Qnil);
2577 if (outer_level != 0)
2578 bcopy (XVECTOR (elt_prefix)->contents,
2579 XVECTOR (chartable_kludge)->contents,
2580 outer_level * sizeof (Lisp_Object));
2582 XVECTOR (chartable_kludge)->contents[outer_level]
2583 = make_number (i);
2584 describe_vector (definition, chartable_kludge, elt_describer,
2585 partial, shadow, entire_map);
2586 continue;
2589 if (first)
2591 insert ("\n", 1);
2592 first = 0;
2595 if (CHAR_TABLE_P (vector))
2597 if (!NILP (elt_prefix))
2599 /* Must combine elt_prefix with i to produce a character
2600 code, then insert that character's description. */
2602 else
2604 /* Get the string to describe the character I, and print it. */
2605 XSETFASTINT (dummy, i);
2607 /* THIS gets the string to describe the character DUMMY. */
2608 this = Fsingle_key_description (dummy);
2609 insert1 (this);
2612 else
2614 /* Output the prefix that applies to every entry in this map. */
2615 if (!NILP (elt_prefix))
2616 insert1 (elt_prefix);
2618 /* Get the string to describe the character I, and print it. */
2619 XSETFASTINT (dummy, i);
2621 /* THIS gets the string to describe the character DUMMY. */
2622 this = Fsingle_key_description (dummy);
2623 insert1 (this);
2626 /* Find all consecutive characters that have the same definition. */
2627 while (i + 1 < XVECTOR (vector)->size
2628 && (tem2 = get_keyelt (XVECTOR (vector)->contents[i+1], 0),
2629 EQ (tem2, definition)))
2630 i++;
2632 /* If we have a range of more than one character,
2633 print where the range reaches to. */
2635 if (i != XINT (dummy))
2637 insert (" .. ", 4);
2638 if (CHAR_TABLE_P (vector))
2640 if (!NILP (elt_prefix))
2642 /* Must combine elt_prefix with i to produce a character
2643 code, then insert that character's description. */
2645 else
2647 XSETFASTINT (dummy, i);
2649 this = Fsingle_key_description (dummy);
2650 insert1 (this);
2653 else
2655 if (!NILP (elt_prefix))
2656 insert1 (elt_prefix);
2658 XSETFASTINT (dummy, i);
2659 insert1 (Fsingle_key_description (dummy));
2663 /* Print a description of the definition of this character.
2664 elt_describer will take care of spacing out far enough
2665 for alignment purposes. */
2666 (*elt_describer) (definition);
2669 UNGCPRO;
2672 /* Apropos - finding all symbols whose names match a regexp. */
2673 Lisp_Object apropos_predicate;
2674 Lisp_Object apropos_accumulate;
2676 static void
2677 apropos_accum (symbol, string)
2678 Lisp_Object symbol, string;
2680 register Lisp_Object tem;
2682 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
2683 if (!NILP (tem) && !NILP (apropos_predicate))
2684 tem = call1 (apropos_predicate, symbol);
2685 if (!NILP (tem))
2686 apropos_accumulate = Fcons (symbol, apropos_accumulate);
2689 DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
2690 "Show all symbols whose names contain match for REGEXP.\n\
2691 If optional 2nd arg PREDICATE is non-nil, (funcall PREDICATE SYMBOL) is done\n\
2692 for each symbol and a symbol is mentioned only if that returns non-nil.\n\
2693 Return list of symbols found.")
2694 (regexp, predicate)
2695 Lisp_Object regexp, predicate;
2697 struct gcpro gcpro1, gcpro2;
2698 CHECK_STRING (regexp, 0);
2699 apropos_predicate = predicate;
2700 GCPRO2 (apropos_predicate, apropos_accumulate);
2701 apropos_accumulate = Qnil;
2702 map_obarray (Vobarray, apropos_accum, regexp);
2703 apropos_accumulate = Fsort (apropos_accumulate, Qstring_lessp);
2704 UNGCPRO;
2705 return apropos_accumulate;
2708 syms_of_keymap ()
2710 Lisp_Object tem;
2712 Qkeymap = intern ("keymap");
2713 staticpro (&Qkeymap);
2715 /* Initialize the keymaps standardly used.
2716 Each one is the value of a Lisp variable, and is also
2717 pointed to by a C variable */
2719 global_map = Fcons (Qkeymap,
2720 Fcons (Fmake_vector (make_number (0400), Qnil), Qnil));
2721 Fset (intern ("global-map"), global_map);
2723 meta_map = Fmake_keymap (Qnil);
2724 Fset (intern ("esc-map"), meta_map);
2725 Ffset (intern ("ESC-prefix"), meta_map);
2727 control_x_map = Fmake_keymap (Qnil);
2728 Fset (intern ("ctl-x-map"), control_x_map);
2729 Ffset (intern ("Control-X-prefix"), control_x_map);
2731 DEFVAR_LISP ("define-key-rebound-commands", &Vdefine_key_rebound_commands,
2732 "List of commands given new key bindings recently.\n\
2733 This is used for internal purposes during Emacs startup;\n\
2734 don't alter it yourself.");
2735 Vdefine_key_rebound_commands = Qt;
2737 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map,
2738 "Default keymap to use when reading from the minibuffer.");
2739 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
2741 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
2742 "Local keymap for the minibuffer when spaces are not allowed.");
2743 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
2745 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
2746 "Local keymap for minibuffer input with completion.");
2747 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
2749 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map,
2750 "Local keymap for minibuffer input with completion, for exact match.");
2751 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
2753 current_global_map = global_map;
2755 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
2756 "Alist of keymaps to use for minor modes.\n\
2757 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read\n\
2758 key sequences and look up bindings iff VARIABLE's value is non-nil.\n\
2759 If two active keymaps bind the same key, the keymap appearing earlier\n\
2760 in the list takes precedence.");
2761 Vminor_mode_map_alist = Qnil;
2763 DEFVAR_LISP ("function-key-map", &Vfunction_key_map,
2764 "Keymap mapping ASCII function key sequences onto their preferred forms.\n\
2765 This allows Emacs to recognize function keys sent from ASCII\n\
2766 terminals at any point in a key sequence.\n\
2768 The `read-key-sequence' function replaces any subsequence bound by\n\
2769 `function-key-map' with its binding. More precisely, when the active\n\
2770 keymaps have no binding for the current key sequence but\n\
2771 `function-key-map' binds a suffix of the sequence to a vector or string,\n\
2772 `read-key-sequence' replaces the matching suffix with its binding, and\n\
2773 continues with the new sequence.\n\
2775 The events that come from bindings in `function-key-map' are not\n\
2776 themselves looked up in `function-key-map'.\n\
2778 For example, suppose `function-key-map' binds `ESC O P' to [f1].\n\
2779 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing\n\
2780 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix\n\
2781 key, typing `ESC O P x' would return [f1 x].");
2782 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
2784 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
2785 "Keymap of key translations that can override keymaps.\n\
2786 This keymap works like `function-key-map', but comes after that,\n\
2787 and applies even for keys that have ordinary bindings.");
2788 Vkey_translation_map = Qnil;
2790 Qsingle_key_description = intern ("single-key-description");
2791 staticpro (&Qsingle_key_description);
2793 Qkey_description = intern ("key-description");
2794 staticpro (&Qkey_description);
2796 Qkeymapp = intern ("keymapp");
2797 staticpro (&Qkeymapp);
2799 Qnon_ascii = intern ("non-ascii");
2800 staticpro (&Qnon_ascii);
2802 defsubr (&Skeymapp);
2803 defsubr (&Skeymap_parent);
2804 defsubr (&Sset_keymap_parent);
2805 defsubr (&Smake_keymap);
2806 defsubr (&Smake_sparse_keymap);
2807 defsubr (&Scopy_keymap);
2808 defsubr (&Skey_binding);
2809 defsubr (&Slocal_key_binding);
2810 defsubr (&Sglobal_key_binding);
2811 defsubr (&Sminor_mode_key_binding);
2812 defsubr (&Sdefine_key);
2813 defsubr (&Slookup_key);
2814 defsubr (&Sdefine_prefix_command);
2815 defsubr (&Suse_global_map);
2816 defsubr (&Suse_local_map);
2817 defsubr (&Scurrent_local_map);
2818 defsubr (&Scurrent_global_map);
2819 defsubr (&Scurrent_minor_mode_maps);
2820 defsubr (&Saccessible_keymaps);
2821 defsubr (&Skey_description);
2822 defsubr (&Sdescribe_vector);
2823 defsubr (&Ssingle_key_description);
2824 defsubr (&Stext_char_description);
2825 defsubr (&Swhere_is_internal);
2826 defsubr (&Sdescribe_bindings);
2827 defsubr (&Sapropos_internal);
2830 keys_of_keymap ()
2832 Lisp_Object tem;
2834 initial_define_key (global_map, 033, "ESC-prefix");
2835 initial_define_key (global_map, Ctl('X'), "Control-X-prefix");