Doc fix.
[bpt/emacs.git] / src / keymap.c
1 /* Manipulation of keymaps
2 Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
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.
10
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.
15
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, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 #include "config.h"
22 #include <stdio.h>
23 #undef NULL
24 #include "lisp.h"
25 #include "commands.h"
26 #include "buffer.h"
27 #include "keyboard.h"
28 #include "termhooks.h"
29 #include "blockinput.h"
30
31 #define min(a, b) ((a) < (b) ? (a) : (b))
32
33 /* The number of elements in keymap vectors. */
34 #define DENSE_TABLE_SIZE (0200)
35
36 /* Actually allocate storage for these variables */
37
38 Lisp_Object current_global_map; /* Current global keymap */
39
40 Lisp_Object global_map; /* default global key bindings */
41
42 Lisp_Object meta_map; /* The keymap used for globally bound
43 ESC-prefixed default commands */
44
45 Lisp_Object control_x_map; /* The keymap used for globally bound
46 C-x-prefixed default commands */
47
48 /* was MinibufLocalMap */
49 Lisp_Object Vminibuffer_local_map;
50 /* The keymap used by the minibuf for local
51 bindings when spaces are allowed in the
52 minibuf */
53
54 /* was MinibufLocalNSMap */
55 Lisp_Object Vminibuffer_local_ns_map;
56 /* The keymap used by the minibuf for local
57 bindings when spaces are not encouraged
58 in the minibuf */
59
60 /* keymap used for minibuffers when doing completion */
61 /* was MinibufLocalCompletionMap */
62 Lisp_Object Vminibuffer_local_completion_map;
63
64 /* keymap used for minibuffers when doing completion and require a match */
65 /* was MinibufLocalMustMatchMap */
66 Lisp_Object Vminibuffer_local_must_match_map;
67
68 /* Alist of minor mode variables and keymaps. */
69 Lisp_Object Vminor_mode_map_alist;
70
71 /* Keymap mapping ASCII function key sequences onto their preferred forms.
72 Initialized by the terminal-specific lisp files. See DEFVAR for more
73 documentation. */
74 Lisp_Object Vfunction_key_map;
75
76 Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii;
77
78 /* A char with the CHAR_META bit set in a vector or the 0200 bit set
79 in a string key sequence is equivalent to prefixing with this
80 character. */
81 extern Lisp_Object meta_prefix_char;
82
83 void describe_map_tree ();
84 static Lisp_Object describe_buffer_bindings ();
85 static void describe_command ();
86 static void describe_map ();
87 static void describe_map_2 ();
88 \f
89 /* Keymap object support - constructors and predicates. */
90
91 DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0,
92 "Construct and return a new keymap, of the form (keymap VECTOR . ALIST).\n\
93 VECTOR is a vector which holds the bindings for the ASCII\n\
94 characters. ALIST is an assoc-list which holds bindings for function keys,\n\
95 mouse events, and any other things that appear in the input stream.\n\
96 All entries in it are initially nil, meaning \"command undefined\".\n\n\
97 The optional arg STRING supplies a menu name for the keymap\n\
98 in case you use it as a menu with `x-popup-menu'.")
99 (string)
100 Lisp_Object string;
101 {
102 Lisp_Object tail;
103 if (!NILP (string))
104 tail = Fcons (string, Qnil);
105 else
106 tail = Qnil;
107 return Fcons (Qkeymap,
108 Fcons (Fmake_vector (make_number (DENSE_TABLE_SIZE), Qnil),
109 tail));
110 }
111
112 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0,
113 "Construct and return a new sparse-keymap list.\n\
114 Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),\n\
115 which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),\n\
116 which binds the function key or mouse event SYMBOL to DEFINITION.\n\
117 Initially the alist is nil.\n\n\
118 The optional arg STRING supplies a menu name for the keymap\n\
119 in case you use it as a menu with `x-popup-menu'.")
120 (string)
121 Lisp_Object string;
122 {
123 if (!NILP (string))
124 return Fcons (Qkeymap, Fcons (string, Qnil));
125 return Fcons (Qkeymap, Qnil);
126 }
127
128 /* This function is used for installing the standard key bindings
129 at initialization time.
130
131 For example:
132
133 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
134
135 void
136 initial_define_key (keymap, key, defname)
137 Lisp_Object keymap;
138 int key;
139 char *defname;
140 {
141 store_in_keymap (keymap, make_number (key), intern (defname));
142 }
143
144 void
145 initial_define_lispy_key (keymap, keyname, defname)
146 Lisp_Object keymap;
147 char *keyname;
148 char *defname;
149 {
150 store_in_keymap (keymap, intern (keyname), intern (defname));
151 }
152
153 /* Define character fromchar in map frommap as an alias for character
154 tochar in map tomap. Subsequent redefinitions of the latter WILL
155 affect the former. */
156
157 #if 0
158 void
159 synkey (frommap, fromchar, tomap, tochar)
160 struct Lisp_Vector *frommap, *tomap;
161 int fromchar, tochar;
162 {
163 Lisp_Object v, c;
164 XSET (v, Lisp_Vector, tomap);
165 XFASTINT (c) = tochar;
166 frommap->contents[fromchar] = Fcons (v, c);
167 }
168 #endif /* 0 */
169
170 DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0,
171 "Return t if ARG is a keymap.\n\
172 \n\
173 A keymap is a list (keymap . ALIST),\n\
174 or a symbol whose function definition is a keymap is itself a keymap.\n\
175 ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);\n\
176 a vector of densely packed bindings for small character codes\n\
177 is also allowed as an element.")
178 (object)
179 Lisp_Object object;
180 {
181 return (NILP (get_keymap_1 (object, 0, 0)) ? Qnil : Qt);
182 }
183
184 /* Check that OBJECT is a keymap (after dereferencing through any
185 symbols). If it is, return it.
186
187 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
188 is an autoload form, do the autoload and try again.
189
190 ERROR controls how we respond if OBJECT isn't a keymap.
191 If ERROR is non-zero, signal an error; otherwise, just return Qnil.
192
193 Note that most of the time, we don't want to pursue autoloads.
194 Functions like Faccessible_keymaps which scan entire keymap trees
195 shouldn't load every autoloaded keymap. I'm not sure about this,
196 but it seems to me that only read_key_sequence, Flookup_key, and
197 Fdefine_key should cause keymaps to be autoloaded. */
198
199 Lisp_Object
200 get_keymap_1 (object, error, autoload)
201 Lisp_Object object;
202 int error, autoload;
203 {
204 Lisp_Object tem;
205
206 autoload_retry:
207 tem = indirect_function (object);
208 if (CONSP (tem) && EQ (XCONS (tem)->car, Qkeymap))
209 return tem;
210
211 /* Should we do an autoload? Autoload forms for keymaps have
212 Qkeymap as their fifth element. */
213 if (autoload
214 && XTYPE (object) == Lisp_Symbol
215 && CONSP (tem)
216 && EQ (XCONS (tem)->car, Qautoload))
217 {
218 Lisp_Object tail;
219
220 tail = Fnth (make_number (4), tem);
221 if (EQ (tail, Qkeymap))
222 {
223 struct gcpro gcpro1, gcpro2;
224
225 GCPRO2 (tem, object)
226 do_autoload (tem, object);
227 UNGCPRO;
228
229 goto autoload_retry;
230 }
231 }
232
233 if (error)
234 wrong_type_argument (Qkeymapp, object);
235 else
236 return Qnil;
237 }
238
239
240 /* Follow any symbol chaining, and return the keymap denoted by OBJECT.
241 If OBJECT doesn't denote a keymap at all, signal an error. */
242 Lisp_Object
243 get_keymap (object)
244 Lisp_Object object;
245 {
246 return get_keymap_1 (object, 0, 0);
247 }
248
249
250 /* Look up IDX in MAP. IDX may be any sort of event.
251 Note that this does only one level of lookup; IDX must be a single
252 event, not a sequence.
253
254 If T_OK is non-zero, bindings for Qt are treated as default
255 bindings; any key left unmentioned by other tables and bindings is
256 given the binding of Qt.
257
258 If T_OK is zero, bindings for Qt are not treated specially. */
259
260 Lisp_Object
261 access_keymap (map, idx, t_ok)
262 Lisp_Object map;
263 Lisp_Object idx;
264 int t_ok;
265 {
266 /* If idx is a list (some sort of mouse click, perhaps?),
267 the index we want to use is the car of the list, which
268 ought to be a symbol. */
269 idx = EVENT_HEAD (idx);
270
271 /* If idx is a symbol, it might have modifiers, which need to
272 be put in the canonical order. */
273 if (XTYPE (idx) == Lisp_Symbol)
274 idx = reorder_modifiers (idx);
275
276 {
277 Lisp_Object tail;
278 Lisp_Object t_binding = Qnil;
279
280 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr)
281 {
282 Lisp_Object binding = XCONS (tail)->car;
283
284 switch (XTYPE (binding))
285 {
286 case Lisp_Cons:
287 if (EQ (XCONS (binding)->car, idx))
288 return XCONS (binding)->cdr;
289 if (t_ok && EQ (XCONS (binding)->car, Qt))
290 t_binding = XCONS (binding)->cdr;
291 break;
292
293 case Lisp_Vector:
294 if (XTYPE (idx) == Lisp_Int
295 && XINT (idx) >= 0
296 && XINT (idx) < XVECTOR (binding)->size)
297 return XVECTOR (binding)->contents[XINT (idx)];
298 break;
299 }
300
301 QUIT;
302 }
303
304 return t_binding;
305 }
306 }
307
308 /* Given OBJECT which was found in a slot in a keymap,
309 trace indirect definitions to get the actual definition of that slot.
310 An indirect definition is a list of the form
311 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
312 and INDEX is the object to look up in KEYMAP to yield the definition.
313
314 Also if OBJECT has a menu string as the first element,
315 remove that. Also remove a menu help string as second element. */
316
317 Lisp_Object
318 get_keyelt (object)
319 register Lisp_Object object;
320 {
321 while (1)
322 {
323 register Lisp_Object map, tem;
324
325 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
326 map = get_keymap_1 (Fcar_safe (object), 0, 0);
327 tem = Fkeymapp (map);
328 if (!NILP (tem))
329 object = access_keymap (map, Fcdr (object), 0);
330
331 /* If the keymap contents looks like (STRING . DEFN),
332 use DEFN.
333 Keymap alist elements like (CHAR MENUSTRING . DEFN)
334 will be used by HierarKey menus. */
335 else if (XTYPE (object) == Lisp_Cons
336 && XTYPE (XCONS (object)->car) == Lisp_String)
337 {
338 object = XCONS (object)->cdr;
339 /* Also remove a menu help string, if any,
340 following the menu item name. */
341 if (XTYPE (object) == Lisp_Cons
342 && XTYPE (XCONS (object)->car) == Lisp_String)
343 object = XCONS (object)->cdr;
344 }
345
346 else
347 /* Anything else is really the value. */
348 return object;
349 }
350 }
351
352 Lisp_Object
353 store_in_keymap (keymap, idx, def)
354 Lisp_Object keymap;
355 register Lisp_Object idx;
356 register Lisp_Object def;
357 {
358 if (XTYPE (keymap) != Lisp_Cons
359 || ! EQ (XCONS (keymap)->car, Qkeymap))
360 error ("attempt to define a key in a non-keymap");
361
362 /* If idx is a list (some sort of mouse click, perhaps?),
363 the index we want to use is the car of the list, which
364 ought to be a symbol. */
365 idx = EVENT_HEAD (idx);
366
367 /* If idx is a symbol, it might have modifiers, which need to
368 be put in the canonical order. */
369 if (XTYPE (idx) == Lisp_Symbol)
370 idx = reorder_modifiers (idx);
371
372
373 /* Scan the keymap for a binding of idx. */
374 {
375 Lisp_Object tail;
376
377 /* The cons after which we should insert new bindings. If the
378 keymap has a table element, we record its position here, so new
379 bindings will go after it; this way, the table will stay
380 towards the front of the alist and character lookups in dense
381 keymaps will remain fast. Otherwise, this just points at the
382 front of the keymap. */
383 Lisp_Object insertion_point = keymap;
384
385 for (tail = XCONS (keymap)->cdr; CONSP (tail); tail = XCONS (tail)->cdr)
386 {
387 Lisp_Object elt = XCONS (tail)->car;
388
389 switch (XTYPE (elt))
390 {
391 case Lisp_Vector:
392 if (XTYPE (idx) == Lisp_Int
393 && XINT (idx) >= 0 && XINT (idx) < XVECTOR (elt)->size)
394 {
395 XVECTOR (elt)->contents[XFASTINT (idx)] = def;
396 return def;
397 }
398 insertion_point = tail;
399 break;
400
401 case Lisp_Cons:
402 if (EQ (idx, XCONS (elt)->car))
403 {
404 XCONS (elt)->cdr = def;
405 return def;
406 }
407 break;
408
409 case Lisp_Symbol:
410 /* If we find a 'keymap' symbol in the spine of KEYMAP,
411 then we must have found the start of a second keymap
412 being used as the tail of KEYMAP, and a binding for IDX
413 should be inserted before it. */
414 if (EQ (elt, Qkeymap))
415 goto keymap_end;
416 break;
417 }
418
419 QUIT;
420 }
421
422 keymap_end:
423 /* We have scanned the entire keymap, and not found a binding for
424 IDX. Let's add one. */
425 XCONS (insertion_point)->cdr =
426 Fcons (Fcons (idx, def), XCONS (insertion_point)->cdr);
427 }
428
429 return def;
430 }
431
432
433 DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
434 "Return a copy of the keymap KEYMAP.\n\
435 The copy starts out with the same definitions of KEYMAP,\n\
436 but changing either the copy or KEYMAP does not affect the other.\n\
437 Any key definitions that are subkeymaps are recursively copied.\n\
438 However, a key definition which is a symbol whose definition is a keymap\n\
439 is not copied.")
440 (keymap)
441 Lisp_Object keymap;
442 {
443 register Lisp_Object copy, tail;
444
445 copy = Fcopy_alist (get_keymap (keymap));
446
447 for (tail = copy; CONSP (tail); tail = XCONS (tail)->cdr)
448 {
449 Lisp_Object elt = XCONS (tail)->car;
450
451 if (XTYPE (elt) == Lisp_Vector)
452 {
453 int i;
454
455 elt = Fcopy_sequence (elt);
456 XCONS (tail)->car = elt;
457
458 for (i = 0; i < XVECTOR (elt)->size; i++)
459 if (XTYPE (XVECTOR (elt)->contents[i]) != Lisp_Symbol
460 && Fkeymapp (XVECTOR (elt)->contents[i]))
461 XVECTOR (elt)->contents[i] =
462 Fcopy_keymap (XVECTOR (elt)->contents[i]);
463 }
464 else if (CONSP (elt)
465 && XTYPE (XCONS (elt)->cdr) != Lisp_Symbol
466 && ! NILP (Fkeymapp (XCONS (elt)->cdr)))
467 XCONS (elt)->cdr = Fcopy_keymap (XCONS (elt)->cdr);
468 }
469
470 return copy;
471 }
472 \f
473 /* Simple Keymap mutators and accessors. */
474
475 DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
476 "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\
477 KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\
478 meaning a sequence of keystrokes and events.\n\
479 DEF is anything that can be a key's definition:\n\
480 nil (means key is undefined in this keymap),\n\
481 a command (a Lisp function suitable for interactive calling)\n\
482 a string (treated as a keyboard macro),\n\
483 a keymap (to define a prefix key),\n\
484 a symbol. When the key is looked up, the symbol will stand for its\n\
485 function definition, which should at that time be one of the above,\n\
486 or another symbol whose function definition is used, etc.\n\
487 a cons (STRING . DEFN), meaning that DEFN is the definition\n\
488 (DEFN should be a valid definition in its own right),\n\
489 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.\n\
490 \n\
491 If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at\n\
492 the front of KEYMAP.")
493 (keymap, key, def)
494 Lisp_Object keymap;
495 Lisp_Object key;
496 Lisp_Object def;
497 {
498 register int idx;
499 register Lisp_Object c;
500 register Lisp_Object tem;
501 register Lisp_Object cmd;
502 int metized = 0;
503 int meta_bit;
504 int length;
505 struct gcpro gcpro1, gcpro2, gcpro3;
506
507 keymap = get_keymap (keymap);
508
509 if (XTYPE (key) != Lisp_Vector
510 && XTYPE (key) != Lisp_String)
511 key = wrong_type_argument (Qarrayp, key);
512
513 length = XFASTINT (Flength (key));
514 if (length == 0)
515 return Qnil;
516
517 GCPRO3 (keymap, key, def);
518
519 if (XTYPE (key) == Lisp_Vector)
520 meta_bit = meta_modifier;
521 else
522 meta_bit = 0x80;
523
524 idx = 0;
525 while (1)
526 {
527 c = Faref (key, make_number (idx));
528
529 if (XTYPE (c) == Lisp_Int
530 && (XINT (c) & meta_bit)
531 && !metized)
532 {
533 c = meta_prefix_char;
534 metized = 1;
535 }
536 else
537 {
538 if (XTYPE (c) == Lisp_Int)
539 XSETINT (c, XINT (c) & ~meta_bit);
540
541 metized = 0;
542 idx++;
543 }
544
545 if (idx == length)
546 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
547
548 cmd = get_keyelt (access_keymap (keymap, c, 0));
549
550 if (NILP (cmd))
551 {
552 cmd = Fmake_sparse_keymap (Qnil);
553 store_in_keymap (keymap, c, cmd);
554 }
555
556 keymap = get_keymap_1 (cmd, 0, 1);
557 if (NILP (keymap))
558 {
559 /* We must use Fkey_description rather than just passing key to
560 error; key might be a vector, not a string. */
561 Lisp_Object description = Fkey_description (key);
562
563 error ("Key sequence %s uses invalid prefix characters",
564 XSTRING (description)->data);
565 }
566 }
567 }
568
569 /* Value is number if KEY is too long; NIL if valid but has no definition. */
570
571 DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
572 "In keymap KEYMAP, look up key sequence KEY. Return the definition.\n\
573 nil means undefined. See doc of `define-key' for kinds of definitions.\n\
574 \n\
575 A number as value means KEY is \"too long\";\n\
576 that is, characters or symbols in it except for the last one\n\
577 fail to be a valid sequence of prefix characters in KEYMAP.\n\
578 The number is how many characters at the front of KEY\n\
579 it takes to reach a non-prefix command.\n\
580 \n\
581 Normally, `lookup-key' ignores bindings for t, which act as default\n\
582 bindings, used when nothing else in the keymap applies; this makes it\n\
583 useable as a general function for probing keymaps. However, if the\n\
584 third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will\n\
585 recognize the default bindings, just as `read-key-sequence' does.")
586 (keymap, key, accept_default)
587 register Lisp_Object keymap;
588 Lisp_Object key;
589 Lisp_Object accept_default;
590 {
591 register int idx;
592 register Lisp_Object tem;
593 register Lisp_Object cmd;
594 register Lisp_Object c;
595 int metized = 0;
596 int length;
597 int t_ok = ! NILP (accept_default);
598 int meta_bit;
599
600 keymap = get_keymap (keymap);
601
602 if (XTYPE (key) != Lisp_Vector
603 && XTYPE (key) != Lisp_String)
604 key = wrong_type_argument (Qarrayp, key);
605
606 length = XFASTINT (Flength (key));
607 if (length == 0)
608 return keymap;
609
610 if (XTYPE (key) == Lisp_Vector)
611 meta_bit = meta_modifier;
612 else
613 meta_bit = 0x80;
614
615 idx = 0;
616 while (1)
617 {
618 c = Faref (key, make_number (idx));
619
620 if (XTYPE (c) == Lisp_Int
621 && (XINT (c) & meta_bit)
622 && !metized)
623 {
624 c = meta_prefix_char;
625 metized = 1;
626 }
627 else
628 {
629 if (XTYPE (c) == Lisp_Int)
630 XSETINT (c, XINT (c) & ~meta_bit);
631
632 metized = 0;
633 idx++;
634 }
635
636 cmd = get_keyelt (access_keymap (keymap, c, t_ok));
637 if (idx == length)
638 return cmd;
639
640 keymap = get_keymap_1 (cmd, 0, 0);
641 if (NILP (keymap))
642 return make_number (idx);
643
644 QUIT;
645 }
646 }
647
648 /* Append a key to the end of a key sequence. We always make a vector. */
649
650 Lisp_Object
651 append_key (key_sequence, key)
652 Lisp_Object key_sequence, key;
653 {
654 Lisp_Object args[2];
655
656 args[0] = key_sequence;
657
658 args[1] = Fcons (key, Qnil);
659 return Fvconcat (2, args);
660 }
661
662 \f
663 /* Global, local, and minor mode keymap stuff. */
664
665 /* We can't put these variables inside current_minor_maps, since under
666 some systems, static gets macro-defined to be the empty string.
667 Ickypoo. */
668 static Lisp_Object *cmm_modes, *cmm_maps;
669 static int cmm_size;
670
671 /* Store a pointer to an array of the keymaps of the currently active
672 minor modes in *buf, and return the number of maps it contains.
673
674 This function always returns a pointer to the same buffer, and may
675 free or reallocate it, so if you want to keep it for a long time or
676 hand it out to lisp code, copy it. This procedure will be called
677 for every key sequence read, so the nice lispy approach (return a
678 new assoclist, list, what have you) for each invocation would
679 result in a lot of consing over time.
680
681 If we used xrealloc/xmalloc and ran out of memory, they would throw
682 back to the command loop, which would try to read a key sequence,
683 which would call this function again, resulting in an infinite
684 loop. Instead, we'll use realloc/malloc and silently truncate the
685 list, let the key sequence be read, and hope some other piece of
686 code signals the error. */
687 int
688 current_minor_maps (modeptr, mapptr)
689 Lisp_Object **modeptr, **mapptr;
690 {
691 int i = 0;
692 Lisp_Object alist, assoc, var, val;
693
694 for (alist = Vminor_mode_map_alist;
695 CONSP (alist);
696 alist = XCONS (alist)->cdr)
697 if (CONSP (assoc = XCONS (alist)->car)
698 && XTYPE (var = XCONS (assoc)->car) == Lisp_Symbol
699 && ! EQ ((val = find_symbol_value (var)), Qunbound)
700 && ! NILP (val))
701 {
702 if (i >= cmm_size)
703 {
704 Lisp_Object *newmodes, *newmaps;
705
706 if (cmm_maps)
707 {
708 BLOCK_INPUT;
709 newmodes = (Lisp_Object *) realloc (cmm_modes, cmm_size *= 2);
710 newmaps = (Lisp_Object *) realloc (cmm_maps, cmm_size);
711 UNBLOCK_INPUT;
712 }
713 else
714 {
715 BLOCK_INPUT;
716 newmodes = (Lisp_Object *) malloc (cmm_size = 30);
717 newmaps = (Lisp_Object *) malloc (cmm_size);
718 UNBLOCK_INPUT;
719 }
720
721 if (newmaps && newmodes)
722 {
723 cmm_modes = newmodes;
724 cmm_maps = newmaps;
725 }
726 else
727 break;
728 }
729 cmm_modes[i] = var;
730 cmm_maps [i] = Findirect_function (XCONS (assoc)->cdr);
731 i++;
732 }
733
734 if (modeptr) *modeptr = cmm_modes;
735 if (mapptr) *mapptr = cmm_maps;
736 return i;
737 }
738
739 DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 2, 0,
740 "Return the binding for command KEY in current keymaps.\n\
741 KEY is a string or vector, a sequence of keystrokes.\n\
742 The binding is probably a symbol with a function definition.\n\
743 \n\
744 Normally, `key-binding' ignores bindings for t, which act as default\n\
745 bindings, used when nothing else in the keymap applies; this makes it\n\
746 useable as a general function for probing keymaps. However, if the\n\
747 third optional argument ACCEPT-DEFAULT is non-nil, `key-binding' will\n\
748 recognize the default bindings, just as `read-key-sequence' does.")
749 (key, accept_default)
750 Lisp_Object key;
751 {
752 Lisp_Object *maps, value;
753 int nmaps, i;
754
755 nmaps = current_minor_maps (0, &maps);
756 for (i = 0; i < nmaps; i++)
757 if (! NILP (maps[i]))
758 {
759 value = Flookup_key (maps[i], key, accept_default);
760 if (! NILP (value) && XTYPE (value) != Lisp_Int)
761 return value;
762 }
763
764 if (! NILP (current_buffer->keymap))
765 {
766 value = Flookup_key (current_buffer->keymap, key, accept_default);
767 if (! NILP (value) && XTYPE (value) != Lisp_Int)
768 return value;
769 }
770
771 value = Flookup_key (current_global_map, key, accept_default);
772 if (! NILP (value) && XTYPE (value) != Lisp_Int)
773 return value;
774
775 return Qnil;
776 }
777
778 DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
779 "Return the binding for command KEYS in current local keymap only.\n\
780 KEYS is a string, a sequence of keystrokes.\n\
781 The binding is probably a symbol with a function definition.\n\
782 \n\
783 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
784 bindings; see the description of `lookup-key' for more details about this.")
785 (keys, accept_default)
786 Lisp_Object keys, accept_default;
787 {
788 register Lisp_Object map;
789 map = current_buffer->keymap;
790 if (NILP (map))
791 return Qnil;
792 return Flookup_key (map, keys, accept_default);
793 }
794
795 DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
796 "Return the binding for command KEYS in current global keymap only.\n\
797 KEYS is a string, a sequence of keystrokes.\n\
798 The binding is probably a symbol with a function definition.\n\
799 This function's return values are the same as those of lookup-key\n\
800 (which see).\n\
801 \n\
802 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
803 bindings; see the description of `lookup-key' for more details about this.")
804 (keys, accept_default)
805 Lisp_Object keys, accept_default;
806 {
807 return Flookup_key (current_global_map, keys, accept_default);
808 }
809
810 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
811 "Find the visible minor mode bindings of KEY.\n\
812 Return an alist of pairs (MODENAME . BINDING), where MODENAME is the\n\
813 the symbol which names the minor mode binding KEY, and BINDING is\n\
814 KEY's definition in that mode. In particular, if KEY has no\n\
815 minor-mode bindings, return nil. If the first binding is a\n\
816 non-prefix, all subsequent bindings will be omitted, since they would\n\
817 be ignored. Similarly, the list doesn't include non-prefix bindings\n\
818 that come after prefix bindings.\n\
819 \n\
820 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
821 bindings; see the description of `lookup-key' for more details about this.")
822 (key, accept_default)
823 Lisp_Object key, accept_default;
824 {
825 Lisp_Object *modes, *maps;
826 int nmaps;
827 Lisp_Object binding;
828 int i, j;
829
830 nmaps = current_minor_maps (&modes, &maps);
831
832 for (i = j = 0; i < nmaps; i++)
833 if (! NILP (maps[i])
834 && ! NILP (binding = Flookup_key (maps[i], key, accept_default))
835 && XTYPE (binding) != Lisp_Int)
836 {
837 if (! NILP (get_keymap (binding)))
838 maps[j++] = Fcons (modes[i], binding);
839 else if (j == 0)
840 return Fcons (Fcons (modes[i], binding), Qnil);
841 }
842
843 return Flist (j, maps);
844 }
845
846 DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2,
847 "kSet key globally: \nCSet key %s to command: ",
848 "Give KEY a global binding as COMMAND.\n\
849 COMMAND is a symbol naming an interactively-callable function.\n\
850 KEY is a string representing a sequence of keystrokes.\n\
851 Note that if KEY has a local binding in the current buffer\n\
852 that local binding will continue to shadow any global binding.")
853 (keys, function)
854 Lisp_Object keys, function;
855 {
856 if (XTYPE (keys) != Lisp_Vector
857 && XTYPE (keys) != Lisp_String)
858 keys = wrong_type_argument (Qarrayp, keys);
859
860 Fdefine_key (current_global_map, keys, function);
861 return Qnil;
862 }
863
864 DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2,
865 "kSet key locally: \nCSet key %s locally to command: ",
866 "Give KEY a local binding as COMMAND.\n\
867 COMMAND is a symbol naming an interactively-callable function.\n\
868 KEY is a string representing a sequence of keystrokes.\n\
869 The binding goes in the current buffer's local map,\n\
870 which is shared with other buffers in the same major mode.")
871 (keys, function)
872 Lisp_Object keys, function;
873 {
874 register Lisp_Object map;
875 map = current_buffer->keymap;
876 if (NILP (map))
877 {
878 map = Fmake_sparse_keymap (Qnil);
879 current_buffer->keymap = map;
880 }
881
882 if (XTYPE (keys) != Lisp_Vector
883 && XTYPE (keys) != Lisp_String)
884 keys = wrong_type_argument (Qarrayp, keys);
885
886 Fdefine_key (map, keys, function);
887 return Qnil;
888 }
889
890 DEFUN ("global-unset-key", Fglobal_unset_key, Sglobal_unset_key,
891 1, 1, "kUnset key globally: ",
892 "Remove global binding of KEY.\n\
893 KEY is a string representing a sequence of keystrokes.")
894 (keys)
895 Lisp_Object keys;
896 {
897 return Fglobal_set_key (keys, Qnil);
898 }
899
900 DEFUN ("local-unset-key", Flocal_unset_key, Slocal_unset_key, 1, 1,
901 "kUnset key locally: ",
902 "Remove local binding of KEY.\n\
903 KEY is a string representing a sequence of keystrokes.")
904 (keys)
905 Lisp_Object keys;
906 {
907 if (!NILP (current_buffer->keymap))
908 Flocal_set_key (keys, Qnil);
909 return Qnil;
910 }
911
912 DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 2, 0,
913 "Define COMMAND as a prefix command. COMMAND should be a symbol.\n\
914 A new sparse keymap is stored as COMMAND's function definition and its value.\n\
915 If a second optional argument MAPVAR is given, the map is stored as\n\
916 its value instead of as COMMAND's value; but COMMAND is still defined\n\
917 as a function.")
918 (name, mapvar)
919 Lisp_Object name, mapvar;
920 {
921 Lisp_Object map;
922 map = Fmake_sparse_keymap (Qnil);
923 Ffset (name, map);
924 if (!NILP (mapvar))
925 Fset (mapvar, map);
926 else
927 Fset (name, map);
928 return name;
929 }
930
931 DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0,
932 "Select KEYMAP as the global keymap.")
933 (keymap)
934 Lisp_Object keymap;
935 {
936 keymap = get_keymap (keymap);
937 current_global_map = keymap;
938 return Qnil;
939 }
940
941 DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
942 "Select KEYMAP as the local keymap.\n\
943 If KEYMAP is nil, that means no local keymap.")
944 (keymap)
945 Lisp_Object keymap;
946 {
947 if (!NILP (keymap))
948 keymap = get_keymap (keymap);
949
950 current_buffer->keymap = keymap;
951
952 return Qnil;
953 }
954
955 DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
956 "Return current buffer's local keymap, or nil if it has none.")
957 ()
958 {
959 return current_buffer->keymap;
960 }
961
962 DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0,
963 "Return the current global keymap.")
964 ()
965 {
966 return current_global_map;
967 }
968
969 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0,
970 "Return a list of keymaps for the minor modes of the current buffer.")
971 ()
972 {
973 Lisp_Object *maps;
974 int nmaps = current_minor_maps (0, &maps);
975
976 return Flist (nmaps, maps);
977 }
978 \f
979 /* Help functions for describing and documenting keymaps. */
980
981 DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
982 1, 1, 0,
983 "Find all keymaps accessible via prefix characters from KEYMAP.\n\
984 Returns a list of elements of the form (KEYS . MAP), where the sequence\n\
985 KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\
986 so that the KEYS increase in length. The first element is (\"\" . KEYMAP).")
987 (startmap)
988 Lisp_Object startmap;
989 {
990 Lisp_Object maps, tail;
991
992 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
993 get_keymap (startmap)),
994 Qnil);
995
996 /* For each map in the list maps,
997 look at any other maps it points to,
998 and stick them at the end if they are not already in the list.
999
1000 This is a breadth-first traversal, where tail is the queue of
1001 nodes, and maps accumulates a list of all nodes visited. */
1002
1003 for (tail = maps; CONSP (tail); tail = XCONS (tail)->cdr)
1004 {
1005 register Lisp_Object thisseq = Fcar (Fcar (tail));
1006 register Lisp_Object thismap = Fcdr (Fcar (tail));
1007 Lisp_Object last = make_number (XINT (Flength (thisseq)) - 1);
1008
1009 /* Does the current sequence end in the meta-prefix-char? */
1010 int is_metized = (XINT (last) >= 0
1011 && EQ (Faref (thisseq, last), meta_prefix_char));
1012
1013 for (; CONSP (thismap); thismap = XCONS (thismap)->cdr)
1014 {
1015 Lisp_Object elt = XCONS (thismap)->car;
1016
1017 QUIT;
1018
1019 if (XTYPE (elt) == Lisp_Vector)
1020 {
1021 register int i;
1022
1023 /* Vector keymap. Scan all the elements. */
1024 for (i = 0; i < XVECTOR (elt)->size; i++)
1025 {
1026 register Lisp_Object tem;
1027 register Lisp_Object cmd;
1028
1029 cmd = get_keyelt (XVECTOR (elt)->contents[i]);
1030 if (NILP (cmd)) continue;
1031 tem = Fkeymapp (cmd);
1032 if (!NILP (tem))
1033 {
1034 cmd = get_keymap (cmd);
1035 /* Ignore keymaps that are already added to maps. */
1036 tem = Frassq (cmd, maps);
1037 if (NILP (tem))
1038 {
1039 /* If the last key in thisseq is meta-prefix-char,
1040 turn it into a meta-ized keystroke. We know
1041 that the event we're about to append is an
1042 ascii keystroke since we're processing a
1043 keymap table. */
1044 if (is_metized)
1045 {
1046 int meta_bit = meta_modifier;
1047 tem = Fcopy_sequence (thisseq);
1048
1049 Faset (tem, last, make_number (i | meta_bit));
1050
1051 /* This new sequence is the same length as
1052 thisseq, so stick it in the list right
1053 after this one. */
1054 XCONS (tail)->cdr
1055 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
1056 }
1057 else
1058 {
1059 tem = append_key (thisseq, make_number (i));
1060 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
1061 }
1062 }
1063 }
1064 }
1065 }
1066 else if (CONSP (elt))
1067 {
1068 register Lisp_Object cmd = get_keyelt (XCONS (elt)->cdr);
1069 register Lisp_Object tem;
1070
1071 /* Ignore definitions that aren't keymaps themselves. */
1072 tem = Fkeymapp (cmd);
1073 if (!NILP (tem))
1074 {
1075 /* Ignore keymaps that have been seen already. */
1076 cmd = get_keymap (cmd);
1077 tem = Frassq (cmd, maps);
1078 if (NILP (tem))
1079 {
1080 /* let elt be the event defined by this map entry. */
1081 elt = XCONS (elt)->car;
1082
1083 /* If the last key in thisseq is meta-prefix-char, and
1084 this entry is a binding for an ascii keystroke,
1085 turn it into a meta-ized keystroke. */
1086 if (is_metized && XTYPE (elt) == Lisp_Int)
1087 {
1088 tem = Fcopy_sequence (thisseq);
1089 Faset (tem, last,
1090 make_number (XINT (elt) | meta_modifier));
1091
1092 /* This new sequence is the same length as
1093 thisseq, so stick it in the list right
1094 after this one. */
1095 XCONS (tail)->cdr =
1096 Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
1097 }
1098 else
1099 nconc2 (tail,
1100 Fcons (Fcons (append_key (thisseq, elt), cmd),
1101 Qnil));
1102 }
1103 }
1104 }
1105 }
1106 }
1107
1108 return maps;
1109 }
1110
1111 Lisp_Object Qsingle_key_description, Qkey_description;
1112
1113 DEFUN ("key-description", Fkey_description, Skey_description, 1, 1, 0,
1114 "Return a pretty description of key-sequence KEYS.\n\
1115 Control characters turn into \"C-foo\" sequences, meta into \"M-foo\"\n\
1116 spaces are put between sequence elements, etc.")
1117 (keys)
1118 Lisp_Object keys;
1119 {
1120 if (XTYPE (keys) == Lisp_String)
1121 {
1122 Lisp_Object vector;
1123 int i;
1124 vector = Fmake_vector (Flength (keys), Qnil);
1125 for (i = 0; i < XSTRING (keys)->size; i++)
1126 {
1127 if (XSTRING (keys)->data[i] & 0x80)
1128 XFASTINT (XVECTOR (vector)->contents[i])
1129 = meta_modifier | (XSTRING (keys)->data[i] & ~0x80);
1130 else
1131 XFASTINT (XVECTOR (vector)->contents[i])
1132 = XSTRING (keys)->data[i];
1133 }
1134 keys = vector;
1135 }
1136 return Fmapconcat (Qsingle_key_description, keys, build_string (" "));
1137 }
1138
1139 char *
1140 push_key_description (c, p)
1141 register unsigned int c;
1142 register char *p;
1143 {
1144 /* Clear all the meaningless bits above the meta bit. */
1145 c &= meta_modifier | ~ - meta_modifier;
1146
1147 if (c & alt_modifier)
1148 {
1149 *p++ = 'A';
1150 *p++ = '-';
1151 c -= alt_modifier;
1152 }
1153 if (c & ctrl_modifier)
1154 {
1155 *p++ = 'C';
1156 *p++ = '-';
1157 c -= ctrl_modifier;
1158 }
1159 if (c & hyper_modifier)
1160 {
1161 *p++ = 'H';
1162 *p++ = '-';
1163 c -= hyper_modifier;
1164 }
1165 if (c & meta_modifier)
1166 {
1167 *p++ = 'M';
1168 *p++ = '-';
1169 c -= meta_modifier;
1170 }
1171 if (c & shift_modifier)
1172 {
1173 *p++ = 'S';
1174 *p++ = '-';
1175 c -= shift_modifier;
1176 }
1177 if (c & super_modifier)
1178 {
1179 *p++ = 's';
1180 *p++ = '-';
1181 c -= super_modifier;
1182 }
1183 if (c < 040)
1184 {
1185 if (c == 033)
1186 {
1187 *p++ = 'E';
1188 *p++ = 'S';
1189 *p++ = 'C';
1190 }
1191 else if (c == '\t')
1192 {
1193 *p++ = 'T';
1194 *p++ = 'A';
1195 *p++ = 'B';
1196 }
1197 else if (c == Ctl('J'))
1198 {
1199 *p++ = 'L';
1200 *p++ = 'F';
1201 *p++ = 'D';
1202 }
1203 else if (c == Ctl('M'))
1204 {
1205 *p++ = 'R';
1206 *p++ = 'E';
1207 *p++ = 'T';
1208 }
1209 else
1210 {
1211 *p++ = 'C';
1212 *p++ = '-';
1213 if (c > 0 && c <= Ctl ('Z'))
1214 *p++ = c + 0140;
1215 else
1216 *p++ = c + 0100;
1217 }
1218 }
1219 else if (c == 0177)
1220 {
1221 *p++ = 'D';
1222 *p++ = 'E';
1223 *p++ = 'L';
1224 }
1225 else if (c == ' ')
1226 {
1227 *p++ = 'S';
1228 *p++ = 'P';
1229 *p++ = 'C';
1230 }
1231 else if (c < 256)
1232 *p++ = c;
1233 else
1234 {
1235 *p++ = '\\';
1236 *p++ = (7 & (c >> 15)) + '0';
1237 *p++ = (7 & (c >> 12)) + '0';
1238 *p++ = (7 & (c >> 9)) + '0';
1239 *p++ = (7 & (c >> 6)) + '0';
1240 *p++ = (7 & (c >> 3)) + '0';
1241 *p++ = (7 & (c >> 0)) + '0';
1242 }
1243
1244 return p;
1245 }
1246
1247 DEFUN ("single-key-description", Fsingle_key_description, Ssingle_key_description, 1, 1, 0,
1248 "Return a pretty description of command character KEY.\n\
1249 Control characters turn into C-whatever, etc.")
1250 (key)
1251 Lisp_Object key;
1252 {
1253 char tem[20];
1254
1255 key = EVENT_HEAD (key);
1256
1257 switch (XTYPE (key))
1258 {
1259 case Lisp_Int: /* Normal character */
1260 *push_key_description (XUINT (key), tem) = 0;
1261 return build_string (tem);
1262
1263 case Lisp_Symbol: /* Function key or event-symbol */
1264 return Fsymbol_name (key);
1265
1266 default:
1267 error ("KEY must be an integer, cons, or symbol.");
1268 }
1269 }
1270
1271 char *
1272 push_text_char_description (c, p)
1273 register unsigned int c;
1274 register char *p;
1275 {
1276 if (c >= 0200)
1277 {
1278 *p++ = 'M';
1279 *p++ = '-';
1280 c -= 0200;
1281 }
1282 if (c < 040)
1283 {
1284 *p++ = '^';
1285 *p++ = c + 64; /* 'A' - 1 */
1286 }
1287 else if (c == 0177)
1288 {
1289 *p++ = '^';
1290 *p++ = '?';
1291 }
1292 else
1293 *p++ = c;
1294 return p;
1295 }
1296
1297 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
1298 "Return a pretty description of file-character CHAR.\n\
1299 Control characters turn into \"^char\", etc.")
1300 (chr)
1301 Lisp_Object chr;
1302 {
1303 char tem[6];
1304
1305 CHECK_NUMBER (chr, 0);
1306
1307 *push_text_char_description (XINT (chr) & 0377, tem) = 0;
1308
1309 return build_string (tem);
1310 }
1311
1312 /* Return non-zero if SEQ contains only ASCII characters, perhaps with
1313 a meta bit. */
1314 static int
1315 ascii_sequence_p (seq)
1316 Lisp_Object seq;
1317 {
1318 Lisp_Object i;
1319 int len = XINT (Flength (seq));
1320
1321 for (XFASTINT (i) = 0; XFASTINT (i) < len; XFASTINT (i)++)
1322 {
1323 Lisp_Object elt = Faref (seq, i);
1324
1325 if (XTYPE (elt) != Lisp_Int
1326 || (XUINT (elt) & ~CHAR_META) >= 0x80)
1327 return 0;
1328 }
1329
1330 return 1;
1331 }
1332
1333 \f
1334 /* where-is - finding a command in a set of keymaps. */
1335
1336 DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 5, 0,
1337 "Return list of keys that invoke DEFINITION in KEYMAP or KEYMAP1.\n\
1338 If KEYMAP is nil, search only KEYMAP1.\n\
1339 If KEYMAP1 is nil, use the current global map.\n\
1340 \n\
1341 If optional 4th arg FIRSTONLY is non-nil, return a string representing\n\
1342 the first key sequence found, rather than a list of all possible key\n\
1343 sequences. If FIRSTONLY is t, avoid key sequences which use non-ASCII\n\
1344 keys and therefore may not be usable on ASCII terminals. If FIRSTONLY\n\
1345 is the symbol `non-ascii', return the first binding found, no matter\n\
1346 what its components.\n\
1347 \n\
1348 If optional 5th arg NOINDIRECT is non-nil, don't follow indirections\n\
1349 to other keymaps or slots. This makes it possible to search for an\n\
1350 indirect definition itself.")
1351 (definition, local_keymap, global_keymap, firstonly, noindirect)
1352 Lisp_Object definition, local_keymap, global_keymap;
1353 Lisp_Object firstonly, noindirect;
1354 {
1355 register Lisp_Object maps;
1356 Lisp_Object found;
1357
1358 if (NILP (global_keymap))
1359 global_keymap = current_global_map;
1360
1361 if (!NILP (local_keymap))
1362 maps = nconc2 (Faccessible_keymaps (get_keymap (local_keymap)),
1363 Faccessible_keymaps (get_keymap (global_keymap)));
1364 else
1365 maps = Faccessible_keymaps (get_keymap (global_keymap));
1366
1367 found = Qnil;
1368
1369 for (; !NILP (maps); maps = Fcdr (maps))
1370 {
1371 /* Key sequence to reach map */
1372 register Lisp_Object this = Fcar (Fcar (maps));
1373
1374 /* The map that it reaches */
1375 register Lisp_Object map = Fcdr (Fcar (maps));
1376
1377 /* If Fcar (map) is a VECTOR, the current element within that vector. */
1378 int i = 0;
1379
1380 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
1381 [M-CHAR] sequences, check if last character of the sequence
1382 is the meta-prefix char. */
1383 Lisp_Object last = make_number (XINT (Flength (this)) - 1);
1384 int last_is_meta = (XINT (last) >= 0
1385 && EQ (Faref (this, last), meta_prefix_char));
1386
1387 QUIT;
1388
1389 while (CONSP (map))
1390 {
1391 /* Because the code we want to run on each binding is rather
1392 large, we don't want to have two separate loop bodies for
1393 sparse keymap bindings and tables; we want to iterate one
1394 loop body over both keymap and vector bindings.
1395
1396 For this reason, if Fcar (map) is a vector, we don't
1397 advance map to the next element until i indicates that we
1398 have finished off the vector. */
1399
1400 Lisp_Object elt = XCONS (map)->car;
1401 Lisp_Object key, binding, sequence;
1402
1403 QUIT;
1404
1405 /* Set key and binding to the current key and binding, and
1406 advance map and i to the next binding. */
1407 if (XTYPE (elt) == Lisp_Vector)
1408 {
1409 /* In a vector, look at each element. */
1410 binding = XVECTOR (elt)->contents[i];
1411 XFASTINT (key) = i;
1412 i++;
1413
1414 /* If we've just finished scanning a vector, advance map
1415 to the next element, and reset i in anticipation of the
1416 next vector we may find. */
1417 if (i >= XVECTOR (elt)->size)
1418 {
1419 map = XCONS (map)->cdr;
1420 i = 0;
1421 }
1422 }
1423 else if (CONSP (elt))
1424 {
1425 key = Fcar (Fcar (map));
1426 binding = Fcdr (Fcar (map));
1427
1428 map = XCONS (map)->cdr;
1429 }
1430 else
1431 /* We want to ignore keymap elements that are neither
1432 vectors nor conses. */
1433 {
1434 map = XCONS (map)->cdr;
1435 continue;
1436 }
1437
1438 /* Search through indirections unless that's not wanted. */
1439 if (NILP (noindirect))
1440 binding = get_keyelt (binding);
1441
1442 /* End this iteration if this element does not match
1443 the target. */
1444
1445 if (XTYPE (definition) == Lisp_Cons)
1446 {
1447 Lisp_Object tem;
1448 tem = Fequal (binding, definition);
1449 if (NILP (tem))
1450 continue;
1451 }
1452 else
1453 if (!EQ (binding, definition))
1454 continue;
1455
1456 /* We have found a match.
1457 Construct the key sequence where we found it. */
1458 if (XTYPE (key) == Lisp_Int && last_is_meta)
1459 {
1460 sequence = Fcopy_sequence (this);
1461 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
1462 }
1463 else
1464 sequence = append_key (this, key);
1465
1466 /* Verify that this key binding is not shadowed by another
1467 binding for the same key, before we say it exists.
1468
1469 Mechanism: look for local definition of this key and if
1470 it is defined and does not match what we found then
1471 ignore this key.
1472
1473 Either nil or number as value from Flookup_key
1474 means undefined. */
1475 if (!NILP (local_keymap))
1476 {
1477 binding = Flookup_key (local_keymap, sequence, Qnil);
1478 if (!NILP (binding) && XTYPE (binding) != Lisp_Int)
1479 {
1480 if (XTYPE (definition) == Lisp_Cons)
1481 {
1482 Lisp_Object tem;
1483 tem = Fequal (binding, definition);
1484 if (NILP (tem))
1485 continue;
1486 }
1487 else
1488 if (!EQ (binding, definition))
1489 continue;
1490 }
1491 }
1492
1493 /* It is a true unshadowed match. Record it. */
1494 found = Fcons (sequence, found);
1495
1496 /* If firstonly is Qnon_ascii, then we can return the first
1497 binding we find. If firstonly is not Qnon_ascii but not
1498 nil, then we should return the first ascii-only binding
1499 we find. */
1500 if (EQ (firstonly, Qnon_ascii))
1501 return sequence;
1502 else if (! NILP (firstonly) && ascii_sequence_p (sequence))
1503 return sequence;
1504 }
1505 }
1506
1507 found = Fnreverse (found);
1508
1509 /* firstonly may have been t, but we may have gone all the way through
1510 the keymaps without finding an all-ASCII key sequence. So just
1511 return the best we could find. */
1512 if (! NILP (firstonly))
1513 return Fcar (found);
1514
1515 return found;
1516 }
1517
1518 /* Return a string listing the keys and buttons that run DEFINITION. */
1519
1520 static Lisp_Object
1521 where_is_string (definition)
1522 Lisp_Object definition;
1523 {
1524 register Lisp_Object keys, keys1;
1525
1526 keys = Fwhere_is_internal (definition,
1527 current_buffer->keymap, Qnil, Qnil, Qnil);
1528 keys1 = Fmapconcat (Qkey_description, keys, build_string (", "));
1529
1530 return keys1;
1531 }
1532
1533 DEFUN ("where-is", Fwhere_is, Swhere_is, 1, 1, "CWhere is command: ",
1534 "Print message listing key sequences that invoke specified command.\n\
1535 Argument is a command definition, usually a symbol with a function definition.")
1536 (definition)
1537 Lisp_Object definition;
1538 {
1539 register Lisp_Object string;
1540
1541 CHECK_SYMBOL (definition, 0);
1542 string = where_is_string (definition);
1543
1544 if (XSTRING (string)->size)
1545 message ("%s is on %s", XSYMBOL (definition)->name->data,
1546 XSTRING (string)->data);
1547 else
1548 message ("%s is not on any key", XSYMBOL (definition)->name->data);
1549 return Qnil;
1550 }
1551 \f
1552 /* describe-bindings - summarizing all the bindings in a set of keymaps. */
1553
1554 DEFUN ("describe-bindings", Fdescribe_bindings, Sdescribe_bindings, 0, 0, "",
1555 "Show a list of all defined keys, and their definitions.\n\
1556 The list is put in a buffer, which is displayed.")
1557 ()
1558 {
1559 register Lisp_Object thisbuf;
1560 XSET (thisbuf, Lisp_Buffer, current_buffer);
1561 internal_with_output_to_temp_buffer ("*Help*",
1562 describe_buffer_bindings,
1563 thisbuf);
1564 return Qnil;
1565 }
1566
1567 static Lisp_Object
1568 describe_buffer_bindings (descbuf)
1569 Lisp_Object descbuf;
1570 {
1571 register Lisp_Object start1, start2;
1572
1573 char *key_heading
1574 = "\
1575 key binding\n\
1576 --- -------\n";
1577 char *alternate_heading
1578 = "\
1579 Alternate Characters (use anywhere the nominal character is listed):\n\
1580 nominal alternate\n\
1581 ------- ---------\n";
1582
1583 Fset_buffer (Vstandard_output);
1584
1585 /* Report on alternates for keys. */
1586 if (XTYPE (Vkeyboard_translate_table) == Lisp_String)
1587 {
1588 int c;
1589 unsigned char *translate = XSTRING (Vkeyboard_translate_table)->data;
1590 int translate_len = XSTRING (Vkeyboard_translate_table)->size;
1591
1592 for (c = 0; c < translate_len; c++)
1593 if (translate[c] != c)
1594 {
1595 char buf[20];
1596 char *bufend;
1597
1598 if (alternate_heading)
1599 {
1600 insert_string (alternate_heading);
1601 alternate_heading = 0;
1602 }
1603
1604 bufend = push_key_description (translate[c], buf);
1605 insert (buf, bufend - buf);
1606 Findent_to (make_number (16), make_number (1));
1607 bufend = push_key_description (c, buf);
1608 insert (buf, bufend - buf);
1609
1610 insert ("\n", 1);
1611 }
1612
1613 insert ("\n", 1);
1614 }
1615
1616 {
1617 int i, nmaps;
1618 Lisp_Object *modes, *maps;
1619
1620 /* Temporarily switch to descbuf, so that we can get that buffer's
1621 minor modes correctly. */
1622 Fset_buffer (descbuf);
1623 nmaps = current_minor_maps (&modes, &maps);
1624 Fset_buffer (Vstandard_output);
1625
1626 for (i = 0; i < nmaps; i++)
1627 {
1628 if (XTYPE (modes[i]) == Lisp_Symbol)
1629 {
1630 insert_char ('`');
1631 insert_string (XSYMBOL (modes[i])->name->data);
1632 insert_char ('\'');
1633 }
1634 else
1635 insert_string ("Strangely Named");
1636 insert_string (" Minor Mode Bindings:\n");
1637 insert_string (key_heading);
1638 describe_map_tree (maps[i], 0, Qnil);
1639 insert_char ('\n');
1640 }
1641 }
1642
1643 start1 = XBUFFER (descbuf)->keymap;
1644 if (!NILP (start1))
1645 {
1646 insert_string ("Local Bindings:\n");
1647 insert_string (key_heading);
1648 describe_map_tree (start1, 0, Qnil);
1649 insert_string ("\n");
1650 }
1651
1652 insert_string ("Global Bindings:\n");
1653 if (NILP (start1))
1654 insert_string (key_heading);
1655
1656 describe_map_tree (current_global_map, 0, XBUFFER (descbuf)->keymap);
1657
1658 Fset_buffer (descbuf);
1659 return Qnil;
1660 }
1661
1662 /* Insert a desription of the key bindings in STARTMAP,
1663 followed by those of all maps reachable through STARTMAP.
1664 If PARTIAL is nonzero, omit certain "uninteresting" commands
1665 (such as `undefined').
1666 If SHADOW is non-nil, it is another map;
1667 don't mention keys which would be shadowed by it. */
1668
1669 void
1670 describe_map_tree (startmap, partial, shadow)
1671 Lisp_Object startmap, shadow;
1672 int partial;
1673 {
1674 register Lisp_Object elt, sh;
1675 Lisp_Object maps;
1676 struct gcpro gcpro1;
1677
1678 maps = Faccessible_keymaps (startmap);
1679 GCPRO1 (maps);
1680
1681 for (; !NILP (maps); maps = Fcdr (maps))
1682 {
1683 elt = Fcar (maps);
1684 sh = Fcar (elt);
1685
1686 /* If there is no shadow keymap given, don't shadow. */
1687 if (NILP (shadow))
1688 sh = Qnil;
1689
1690 /* If the sequence by which we reach this keymap is zero-length,
1691 then the shadow map for this keymap is just SHADOW. */
1692 else if ((XTYPE (sh) == Lisp_String
1693 && XSTRING (sh)->size == 0)
1694 || (XTYPE (sh) == Lisp_Vector
1695 && XVECTOR (sh)->size == 0))
1696 sh = shadow;
1697
1698 /* If the sequence by which we reach this keymap actually has
1699 some elements, then the sequence's definition in SHADOW is
1700 what we should use. */
1701 else
1702 {
1703 sh = Flookup_key (shadow, Fcar (elt), Qt);
1704 if (XTYPE (sh) == Lisp_Int)
1705 sh = Qnil;
1706 }
1707
1708 /* If sh is null (meaning that the current map is not shadowed),
1709 or a keymap (meaning that bindings from the current map might
1710 show through), describe the map. Otherwise, sh is a command
1711 that completely shadows the current map, and we shouldn't
1712 bother. */
1713 if (NILP (sh) || !NILP (Fkeymapp (sh)))
1714 describe_map (Fcdr (elt), Fcar (elt), partial, sh);
1715 }
1716
1717 UNGCPRO;
1718 }
1719
1720 static void
1721 describe_command (definition)
1722 Lisp_Object definition;
1723 {
1724 register Lisp_Object tem1;
1725
1726 Findent_to (make_number (16), make_number (1));
1727
1728 if (XTYPE (definition) == Lisp_Symbol)
1729 {
1730 XSET (tem1, Lisp_String, XSYMBOL (definition)->name);
1731 insert1 (tem1);
1732 insert_string ("\n");
1733 }
1734 else
1735 {
1736 tem1 = Fkeymapp (definition);
1737 if (!NILP (tem1))
1738 insert_string ("Prefix Command\n");
1739 else
1740 insert_string ("??\n");
1741 }
1742 }
1743
1744 /* Describe the contents of map MAP, assuming that this map itself is
1745 reached by the sequence of prefix keys KEYS (a string or vector).
1746 PARTIAL, SHADOW is as in `describe_map_tree' above. */
1747
1748 static void
1749 describe_map (map, keys, partial, shadow)
1750 Lisp_Object map, keys;
1751 int partial;
1752 Lisp_Object shadow;
1753 {
1754 register Lisp_Object keysdesc;
1755
1756 if (!NILP (keys) && XFASTINT (Flength (keys)) > 0)
1757 {
1758 Lisp_Object tem;
1759 /* Call Fkey_description first, to avoid GC bug for the other string. */
1760 tem = Fkey_description (keys);
1761 keysdesc = concat2 (tem, build_string (" "));
1762 }
1763 else
1764 keysdesc = Qnil;
1765
1766 describe_map_2 (map, keysdesc, describe_command, partial, shadow);
1767 }
1768
1769 /* Insert a description of KEYMAP into the current buffer. */
1770
1771 static void
1772 describe_map_2 (keymap, elt_prefix, elt_describer, partial, shadow)
1773 register Lisp_Object keymap;
1774 Lisp_Object elt_prefix;
1775 int (*elt_describer) ();
1776 int partial;
1777 Lisp_Object shadow;
1778 {
1779 Lisp_Object this;
1780 Lisp_Object tem1, tem2 = Qnil;
1781 Lisp_Object suppress;
1782 Lisp_Object kludge;
1783 int first = 1;
1784 struct gcpro gcpro1, gcpro2, gcpro3;
1785
1786 if (partial)
1787 suppress = intern ("suppress-keymap");
1788
1789 /* This vector gets used to present single keys to Flookup_key. Since
1790 that is done once per keymap element, we don't want to cons up a
1791 fresh vector every time. */
1792 kludge = Fmake_vector (make_number (1), Qnil);
1793
1794 GCPRO3 (elt_prefix, tem2, kludge);
1795
1796 for (; CONSP (keymap); keymap = Fcdr (keymap))
1797 {
1798 QUIT;
1799
1800 if (XTYPE (XCONS (keymap)->car) == Lisp_Vector)
1801 describe_vector (XCONS (keymap)->car,
1802 elt_prefix, elt_describer, partial, shadow);
1803 else
1804 {
1805 tem1 = Fcar_safe (Fcar (keymap));
1806 tem2 = get_keyelt (Fcdr_safe (Fcar (keymap)));
1807
1808 /* Don't show undefined commands or suppressed commands. */
1809 if (NILP (tem2)) continue;
1810 if (XTYPE (tem2) == Lisp_Symbol && partial)
1811 {
1812 this = Fget (tem2, suppress);
1813 if (!NILP (this))
1814 continue;
1815 }
1816
1817 /* Don't show a command that isn't really visible
1818 because a local definition of the same key shadows it. */
1819
1820 if (!NILP (shadow))
1821 {
1822 Lisp_Object tem;
1823
1824 XVECTOR (kludge)->contents[0] = tem1;
1825 tem = Flookup_key (shadow, kludge, Qt);
1826 if (!NILP (tem)) continue;
1827 }
1828
1829 if (first)
1830 {
1831 insert ("\n", 1);
1832 first = 0;
1833 }
1834
1835 if (!NILP (elt_prefix))
1836 insert1 (elt_prefix);
1837
1838 /* THIS gets the string to describe the character TEM1. */
1839 this = Fsingle_key_description (tem1);
1840 insert1 (this);
1841
1842 /* Print a description of the definition of this character.
1843 elt_describer will take care of spacing out far enough
1844 for alignment purposes. */
1845 (*elt_describer) (tem2);
1846 }
1847 }
1848
1849 UNGCPRO;
1850 }
1851
1852 static int
1853 describe_vector_princ (elt)
1854 Lisp_Object elt;
1855 {
1856 Fprinc (elt, Qnil);
1857 }
1858
1859 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 1, 0,
1860 "Print on `standard-output' a description of contents of VECTOR.\n\
1861 This is text showing the elements of vector matched against indices.")
1862 (vector)
1863 Lisp_Object vector;
1864 {
1865 CHECK_VECTOR (vector, 0);
1866 describe_vector (vector, Qnil, describe_vector_princ, 0, Qnil);
1867 }
1868
1869 describe_vector (vector, elt_prefix, elt_describer, partial, shadow)
1870 register Lisp_Object vector;
1871 Lisp_Object elt_prefix;
1872 int (*elt_describer) ();
1873 int partial;
1874 Lisp_Object shadow;
1875 {
1876 Lisp_Object this;
1877 Lisp_Object dummy;
1878 Lisp_Object tem1, tem2;
1879 register int i;
1880 Lisp_Object suppress;
1881 Lisp_Object kludge;
1882 int first = 1;
1883 struct gcpro gcpro1, gcpro2, gcpro3;
1884
1885 tem1 = Qnil;
1886
1887 /* This vector gets used to present single keys to Flookup_key. Since
1888 that is done once per vector element, we don't want to cons up a
1889 fresh vector every time. */
1890 kludge = Fmake_vector (make_number (1), Qnil);
1891 GCPRO3 (elt_prefix, tem1, kludge);
1892
1893 if (partial)
1894 suppress = intern ("suppress-keymap");
1895
1896 for (i = 0; i < XVECTOR (vector)->size; i++)
1897 {
1898 QUIT;
1899 tem1 = get_keyelt (XVECTOR (vector)->contents[i]);
1900
1901 if (NILP (tem1)) continue;
1902
1903 /* Don't mention suppressed commands. */
1904 if (XTYPE (tem1) == Lisp_Symbol && partial)
1905 {
1906 this = Fget (tem1, suppress);
1907 if (!NILP (this))
1908 continue;
1909 }
1910
1911 /* If this command in this map is shadowed by some other map,
1912 ignore it. */
1913 if (!NILP (shadow))
1914 {
1915 Lisp_Object tem;
1916
1917 XVECTOR (kludge)->contents[0] = make_number (i);
1918 tem = Flookup_key (shadow, kludge, Qt);
1919
1920 if (!NILP (tem)) continue;
1921 }
1922
1923 if (first)
1924 {
1925 insert ("\n", 1);
1926 first = 0;
1927 }
1928
1929 /* Output the prefix that applies to every entry in this map. */
1930 if (!NILP (elt_prefix))
1931 insert1 (elt_prefix);
1932
1933 /* Get the string to describe the character I, and print it. */
1934 XFASTINT (dummy) = i;
1935
1936 /* THIS gets the string to describe the character DUMMY. */
1937 this = Fsingle_key_description (dummy);
1938 insert1 (this);
1939
1940 /* Find all consecutive characters that have the same definition. */
1941 while (i + 1 < XVECTOR (vector)->size
1942 && (tem2 = get_keyelt (XVECTOR (vector)->contents[i+1]),
1943 EQ (tem2, tem1)))
1944 i++;
1945
1946 /* If we have a range of more than one character,
1947 print where the range reaches to. */
1948
1949 if (i != XINT (dummy))
1950 {
1951 insert (" .. ", 4);
1952 if (!NILP (elt_prefix))
1953 insert1 (elt_prefix);
1954
1955 XFASTINT (dummy) = i;
1956 insert1 (Fsingle_key_description (dummy));
1957 }
1958
1959 /* Print a description of the definition of this character.
1960 elt_describer will take care of spacing out far enough
1961 for alignment purposes. */
1962 (*elt_describer) (tem1);
1963 }
1964
1965 UNGCPRO;
1966 }
1967 \f
1968 /* Apropos - finding all symbols whose names match a regexp. */
1969 Lisp_Object apropos_predicate;
1970 Lisp_Object apropos_accumulate;
1971
1972 static void
1973 apropos_accum (symbol, string)
1974 Lisp_Object symbol, string;
1975 {
1976 register Lisp_Object tem;
1977
1978 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
1979 if (!NILP (tem) && !NILP (apropos_predicate))
1980 tem = call1 (apropos_predicate, symbol);
1981 if (!NILP (tem))
1982 apropos_accumulate = Fcons (symbol, apropos_accumulate);
1983 }
1984
1985 DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
1986 "Show all symbols whose names contain match for REGEXP.\n\
1987 If optional 2nd arg PRED is non-nil, (funcall PRED SYM) is done\n\
1988 for each symbol and a symbol is mentioned only if that returns non-nil.\n\
1989 Return list of symbols found.")
1990 (string, pred)
1991 Lisp_Object string, pred;
1992 {
1993 struct gcpro gcpro1, gcpro2;
1994 CHECK_STRING (string, 0);
1995 apropos_predicate = pred;
1996 GCPRO2 (apropos_predicate, apropos_accumulate);
1997 apropos_accumulate = Qnil;
1998 map_obarray (Vobarray, apropos_accum, string);
1999 apropos_accumulate = Fsort (apropos_accumulate, Qstring_lessp);
2000 UNGCPRO;
2001 return apropos_accumulate;
2002 }
2003 \f
2004 syms_of_keymap ()
2005 {
2006 Lisp_Object tem;
2007
2008 Qkeymap = intern ("keymap");
2009 staticpro (&Qkeymap);
2010
2011 /* Initialize the keymaps standardly used.
2012 Each one is the value of a Lisp variable, and is also
2013 pointed to by a C variable */
2014
2015 global_map = Fmake_keymap (Qnil);
2016 Fset (intern ("global-map"), global_map);
2017
2018 meta_map = Fmake_keymap (Qnil);
2019 Fset (intern ("esc-map"), meta_map);
2020 Ffset (intern ("ESC-prefix"), meta_map);
2021
2022 control_x_map = Fmake_keymap (Qnil);
2023 Fset (intern ("ctl-x-map"), control_x_map);
2024 Ffset (intern ("Control-X-prefix"), control_x_map);
2025
2026 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map,
2027 "Default keymap to use when reading from the minibuffer.");
2028 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
2029
2030 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
2031 "Local keymap for the minibuffer when spaces are not allowed.");
2032 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
2033
2034 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
2035 "Local keymap for minibuffer input with completion.");
2036 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
2037
2038 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map,
2039 "Local keymap for minibuffer input with completion, for exact match.");
2040 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
2041
2042 current_global_map = global_map;
2043
2044 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
2045 "Alist of keymaps to use for minor modes.\n\
2046 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read\n\
2047 key sequences and look up bindings iff VARIABLE's value is non-nil.\n\
2048 If two active keymaps bind the same key, the keymap appearing earlier\n\
2049 in the list takes precedence.");
2050 Vminor_mode_map_alist = Qnil;
2051
2052 DEFVAR_LISP ("function-key-map", &Vfunction_key_map,
2053 "Keymap mapping ASCII function key sequences onto their preferred forms.\n\
2054 This allows Emacs to recognize function keys sent from ASCII\n\
2055 terminals at any point in a key sequence.\n\
2056 \n\
2057 The read-key-sequence function replaces subsequences bound by\n\
2058 function-key-map with their bindings. When the current local and global\n\
2059 keymaps have no binding for the current key sequence but\n\
2060 function-key-map binds a suffix of the sequence to a vector,\n\
2061 read-key-sequence replaces the matching suffix with its binding, and\n\
2062 continues with the new sequence.\n\
2063 \n\
2064 For example, suppose function-key-map binds `ESC O P' to [pf1].\n\
2065 Typing `ESC O P' to read-key-sequence would return [pf1]. Typing\n\
2066 `C-x ESC O P' would return [?\C-x pf1]. If [pf1] were a prefix\n\
2067 key, typing `ESC O P x' would return [pf1 x].");
2068 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
2069
2070 Qsingle_key_description = intern ("single-key-description");
2071 staticpro (&Qsingle_key_description);
2072
2073 Qkey_description = intern ("key-description");
2074 staticpro (&Qkey_description);
2075
2076 Qkeymapp = intern ("keymapp");
2077 staticpro (&Qkeymapp);
2078
2079 Qnon_ascii = intern ("non-ascii");
2080 staticpro (&Qnon_ascii);
2081
2082 defsubr (&Skeymapp);
2083 defsubr (&Smake_keymap);
2084 defsubr (&Smake_sparse_keymap);
2085 defsubr (&Scopy_keymap);
2086 defsubr (&Skey_binding);
2087 defsubr (&Slocal_key_binding);
2088 defsubr (&Sglobal_key_binding);
2089 defsubr (&Sminor_mode_key_binding);
2090 defsubr (&Sglobal_set_key);
2091 defsubr (&Slocal_set_key);
2092 defsubr (&Sdefine_key);
2093 defsubr (&Slookup_key);
2094 defsubr (&Sglobal_unset_key);
2095 defsubr (&Slocal_unset_key);
2096 defsubr (&Sdefine_prefix_command);
2097 defsubr (&Suse_global_map);
2098 defsubr (&Suse_local_map);
2099 defsubr (&Scurrent_local_map);
2100 defsubr (&Scurrent_global_map);
2101 defsubr (&Scurrent_minor_mode_maps);
2102 defsubr (&Saccessible_keymaps);
2103 defsubr (&Skey_description);
2104 defsubr (&Sdescribe_vector);
2105 defsubr (&Ssingle_key_description);
2106 defsubr (&Stext_char_description);
2107 defsubr (&Swhere_is_internal);
2108 defsubr (&Swhere_is);
2109 defsubr (&Sdescribe_bindings);
2110 defsubr (&Sapropos_internal);
2111 }
2112
2113 keys_of_keymap ()
2114 {
2115 Lisp_Object tem;
2116
2117 initial_define_key (global_map, 033, "ESC-prefix");
2118 initial_define_key (global_map, Ctl('X'), "Control-X-prefix");
2119 }