(gud-def): Fix inclusion of the define-key.
[bpt/emacs.git] / src / keymap.c
CommitLineData
2c6f1a39 1/* Manipulation of keymaps
502ddf23 2 Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc.
2c6f1a39
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
502ddf23 8the Free Software Foundation; either version 2, or (at your option)
2c6f1a39
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the 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"
6bbbd9b0 27#include "keyboard.h"
6ba6e250 28#include "termhooks.h"
9ac0d9e0 29#include "blockinput.h"
2c6f1a39
JB
30
31#define min(a, b) ((a) < (b) ? (a) : (b))
32
f5b79c1c 33/* The number of elements in keymap vectors. */
2c6f1a39
JB
34#define DENSE_TABLE_SIZE (0200)
35
36/* Actually allocate storage for these variables */
37
38Lisp_Object current_global_map; /* Current global keymap */
39
40Lisp_Object global_map; /* default global key bindings */
41
42Lisp_Object meta_map; /* The keymap used for globally bound
43 ESC-prefixed default commands */
44
45Lisp_Object control_x_map; /* The keymap used for globally bound
46 C-x-prefixed default commands */
47
48/* was MinibufLocalMap */
49Lisp_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 */
55Lisp_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 */
62Lisp_Object Vminibuffer_local_completion_map;
63
64/* keymap used for minibuffers when doing completion and require a match */
65/* was MinibufLocalMustMatchMap */
66Lisp_Object Vminibuffer_local_must_match_map;
67
cc0a8174
JB
68/* Alist of minor mode variables and keymaps. */
69Lisp_Object Vminor_mode_map_alist;
70
6bbbd9b0
JB
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. */
74Lisp_Object Vfunction_key_map;
75
2fc66973 76Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii;
2c6f1a39 77
3d248688
JB
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. */
2c6f1a39
JB
81extern Lisp_Object meta_prefix_char;
82
83void describe_map_tree ();
84static Lisp_Object describe_buffer_bindings ();
85static void describe_command ();
86static void describe_map ();
f5b79c1c 87static void describe_map_2 ();
2c6f1a39 88\f
cc0a8174
JB
89/* Keymap object support - constructors and predicates. */
90
ce6e5d0b 91DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0,
2c6f1a39 92 "Construct and return a new keymap, of the form (keymap VECTOR . ALIST).\n\
926a64aa 93VECTOR is a vector which holds the bindings for the ASCII\n\
2c6f1a39
JB
94characters. ALIST is an assoc-list which holds bindings for function keys,\n\
95mouse events, and any other things that appear in the input stream.\n\
ce6e5d0b
RS
96All entries in it are initially nil, meaning \"command undefined\".\n\n\
97The optional arg STRING supplies a menu name for the keymap\n\
98in case you use it as a menu with `x-popup-menu'.")
99 (string)
100 Lisp_Object string;
2c6f1a39 101{
ce6e5d0b
RS
102 Lisp_Object tail;
103 if (!NILP (string))
104 tail = Fcons (string, Qnil);
105 else
106 tail = Qnil;
2c6f1a39
JB
107 return Fcons (Qkeymap,
108 Fcons (Fmake_vector (make_number (DENSE_TABLE_SIZE), Qnil),
ce6e5d0b 109 tail));
2c6f1a39
JB
110}
111
ce6e5d0b 112DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0,
2c6f1a39
JB
113 "Construct and return a new sparse-keymap list.\n\
114Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),\n\
115which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),\n\
116which binds the function key or mouse event SYMBOL to DEFINITION.\n\
ce6e5d0b
RS
117Initially the alist is nil.\n\n\
118The optional arg STRING supplies a menu name for the keymap\n\
119in case you use it as a menu with `x-popup-menu'.")
120 (string)
121 Lisp_Object string;
2c6f1a39 122{
ce6e5d0b
RS
123 if (!NILP (string))
124 return Fcons (Qkeymap, Fcons (string, Qnil));
2c6f1a39
JB
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
e25c4e44 133 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
2c6f1a39
JB
134
135void
136initial_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
e25c4e44
JB
144void
145initial_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
2c6f1a39
JB
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
158void
159synkey (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
170DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0,
171 "Return t if ARG is a keymap.\n\
1d8d96fa 172\n\
926a64aa 173A keymap is a list (keymap . ALIST),\n\
1d8d96fa
JB
174or a symbol whose function definition is a keymap is itself a keymap.\n\
175ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);\n\
926a64aa
RS
176a vector of densely packed bindings for small character codes\n\
177is also allowed as an element.")
2c6f1a39
JB
178 (object)
179 Lisp_Object object;
180{
d09b2024 181 return (NILP (get_keymap_1 (object, 0, 0)) ? Qnil : Qt);
2c6f1a39
JB
182}
183
184/* Check that OBJECT is a keymap (after dereferencing through any
d09b2024
JB
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
2c6f1a39 199Lisp_Object
d09b2024 200get_keymap_1 (object, error, autoload)
2c6f1a39 201 Lisp_Object object;
d09b2024 202 int error, autoload;
2c6f1a39 203{
d09b2024 204 Lisp_Object tem;
2c6f1a39 205
d09b2024 206 autoload_retry:
502ddf23 207 tem = indirect_function (object);
2c6f1a39
JB
208 if (CONSP (tem) && EQ (XCONS (tem)->car, Qkeymap))
209 return tem;
f5b79c1c 210
8e4dfd54
JB
211 /* Should we do an autoload? Autoload forms for keymaps have
212 Qkeymap as their fifth element. */
d09b2024
JB
213 if (autoload
214 && XTYPE (object) == Lisp_Symbol
215 && CONSP (tem)
216 && EQ (XCONS (tem)->car, Qautoload))
217 {
8e4dfd54 218 Lisp_Object tail;
d09b2024 219
8e4dfd54
JB
220 tail = Fnth (make_number (4), tem);
221 if (EQ (tail, Qkeymap))
222 {
223 struct gcpro gcpro1, gcpro2;
d09b2024 224
8e4dfd54
JB
225 GCPRO2 (tem, object)
226 do_autoload (tem, object);
227 UNGCPRO;
228
229 goto autoload_retry;
230 }
d09b2024
JB
231 }
232
2c6f1a39
JB
233 if (error)
234 wrong_type_argument (Qkeymapp, object);
cc0a8174
JB
235 else
236 return Qnil;
2c6f1a39
JB
237}
238
d09b2024
JB
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. */
2c6f1a39
JB
242Lisp_Object
243get_keymap (object)
244 Lisp_Object object;
245{
d09b2024 246 return get_keymap_1 (object, 0, 0);
2c6f1a39
JB
247}
248
249
2c6f1a39 250/* Look up IDX in MAP. IDX may be any sort of event.
f5b79c1c 251 Note that this does only one level of lookup; IDX must be a single
e25c4e44
JB
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. */
2c6f1a39
JB
259
260Lisp_Object
e25c4e44 261access_keymap (map, idx, t_ok)
2c6f1a39
JB
262 Lisp_Object map;
263 Lisp_Object idx;
e25c4e44 264 int t_ok;
2c6f1a39
JB
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. */
cebd887d 269 idx = EVENT_HEAD (idx);
2c6f1a39 270
f5b79c1c
JB
271 /* If idx is a symbol, it might have modifiers, which need to
272 be put in the canonical order. */
0b8fc2d4 273 if (XTYPE (idx) == Lisp_Symbol)
f5b79c1c 274 idx = reorder_modifiers (idx);
2c6f1a39 275
f5b79c1c
JB
276 {
277 Lisp_Object tail;
e25c4e44 278 Lisp_Object t_binding = Qnil;
2c6f1a39 279
f5b79c1c 280 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 281 {
f5b79c1c
JB
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;
e25c4e44
JB
289 if (t_ok && EQ (XCONS (binding)->car, Qt))
290 t_binding = XCONS (binding)->cdr;
f5b79c1c
JB
291 break;
292
293 case Lisp_Vector:
926a64aa 294 if (XTYPE (idx) == Lisp_Int
0b8fc2d4 295 && XINT (idx) >= 0
926a64aa 296 && XINT (idx) < XVECTOR (binding)->size)
f5b79c1c
JB
297 return XVECTOR (binding)->contents[XINT (idx)];
298 break;
299 }
20218e2f
JB
300
301 QUIT;
2c6f1a39 302 }
fde3a52f 303
e25c4e44
JB
304 return t_binding;
305 }
2c6f1a39
JB
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,
1a8c3f10 315 remove that. Also remove a menu help string as second element. */
2c6f1a39
JB
316
317Lisp_Object
318get_keyelt (object)
319 register Lisp_Object object;
320{
321 while (1)
322 {
323 register Lisp_Object map, tem;
324
fde3a52f 325 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
d09b2024 326 map = get_keymap_1 (Fcar_safe (object), 0, 0);
2c6f1a39 327 tem = Fkeymapp (map);
265a9e55 328 if (!NILP (tem))
e25c4e44 329 object = access_keymap (map, Fcdr (object), 0);
2c6f1a39
JB
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)
1a8c3f10
RS
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 }
2c6f1a39
JB
345
346 else
347 /* Anything else is really the value. */
348 return object;
349 }
350}
351
352Lisp_Object
353store_in_keymap (keymap, idx, def)
354 Lisp_Object keymap;
355 register Lisp_Object idx;
356 register Lisp_Object def;
357{
f5b79c1c
JB
358 if (XTYPE (keymap) != Lisp_Cons
359 || ! EQ (XCONS (keymap)->car, Qkeymap))
360 error ("attempt to define a key in a non-keymap");
361
2c6f1a39
JB
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. */
cebd887d 365 idx = EVENT_HEAD (idx);
2c6f1a39 366
f5b79c1c
JB
367 /* If idx is a symbol, it might have modifiers, which need to
368 be put in the canonical order. */
0b8fc2d4 369 if (XTYPE (idx) == Lisp_Symbol)
f5b79c1c
JB
370 idx = reorder_modifiers (idx);
371
372
373 /* Scan the keymap for a binding of idx. */
2c6f1a39 374 {
f5b79c1c 375 Lisp_Object tail;
2c6f1a39 376
f5b79c1c
JB
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;
2c6f1a39 384
f5b79c1c 385 for (tail = XCONS (keymap)->cdr; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 386 {
f5b79c1c
JB
387 Lisp_Object elt = XCONS (tail)->car;
388
389 switch (XTYPE (elt))
390 {
391 case Lisp_Vector:
0b8fc2d4 392 if (XTYPE (idx) == Lisp_Int
926a64aa 393 && XINT (idx) >= 0 && XINT (idx) < XVECTOR (elt)->size)
f5b79c1c
JB
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 }
0188441d
JB
418
419 QUIT;
2c6f1a39 420 }
2c6f1a39 421
f5b79c1c
JB
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
2c6f1a39
JB
429 return def;
430}
431
f5b79c1c 432
2c6f1a39
JB
433DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
434 "Return a copy of the keymap KEYMAP.\n\
435The copy starts out with the same definitions of KEYMAP,\n\
436but changing either the copy or KEYMAP does not affect the other.\n\
1d8d96fa
JB
437Any key definitions that are subkeymaps are recursively copied.\n\
438However, a key definition which is a symbol whose definition is a keymap\n\
439is not copied.")
2c6f1a39
JB
440 (keymap)
441 Lisp_Object keymap;
442{
443 register Lisp_Object copy, tail;
444
445 copy = Fcopy_alist (get_keymap (keymap));
2c6f1a39 446
f5b79c1c 447 for (tail = copy; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 448 {
f5b79c1c 449 Lisp_Object elt = XCONS (tail)->car;
2c6f1a39 450
926a64aa 451 if (XTYPE (elt) == Lisp_Vector)
2c6f1a39 452 {
f5b79c1c 453 int i;
2c6f1a39 454
f5b79c1c
JB
455 elt = Fcopy_sequence (elt);
456 XCONS (tail)->car = elt;
2c6f1a39 457
926a64aa 458 for (i = 0; i < XVECTOR (elt)->size; i++)
f5b79c1c
JB
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]);
2c6f1a39 463 }
f5b79c1c
JB
464 else if (CONSP (elt)
465 && XTYPE (XCONS (elt)->cdr) != Lisp_Symbol
466 && ! NILP (Fkeymapp (XCONS (elt)->cdr)))
2c6f1a39 467 XCONS (elt)->cdr = Fcopy_keymap (XCONS (elt)->cdr);
2c6f1a39
JB
468 }
469
470 return copy;
471}
472\f
cc0a8174
JB
473/* Simple Keymap mutators and accessors. */
474
2c6f1a39
JB
475DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
476 "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\
477KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\
478meaning a sequence of keystrokes and events.\n\
479DEF 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\
6e8290aa
JB
489 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.\n\
490\n\
491If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at\n\
492the front of KEYMAP.")
2c6f1a39 493 (keymap, key, def)
d09b2024 494 Lisp_Object keymap;
2c6f1a39
JB
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;
6ba6e250 503 int meta_bit;
2c6f1a39 504 int length;
d09b2024 505 struct gcpro gcpro1, gcpro2, gcpro3;
2c6f1a39
JB
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
d09b2024 513 length = XFASTINT (Flength (key));
2c6f1a39
JB
514 if (length == 0)
515 return Qnil;
516
d09b2024
JB
517 GCPRO3 (keymap, key, def);
518
6ba6e250
RS
519 if (XTYPE (key) == Lisp_Vector)
520 meta_bit = meta_modifier;
521 else
522 meta_bit = 0x80;
523
2c6f1a39
JB
524 idx = 0;
525 while (1)
526 {
527 c = Faref (key, make_number (idx));
528
529 if (XTYPE (c) == Lisp_Int
6ba6e250 530 && (XINT (c) & meta_bit)
2c6f1a39
JB
531 && !metized)
532 {
533 c = meta_prefix_char;
534 metized = 1;
535 }
536 else
537 {
538 if (XTYPE (c) == Lisp_Int)
0b8fc2d4 539 XSETINT (c, XINT (c) & ~meta_bit);
2c6f1a39
JB
540
541 metized = 0;
542 idx++;
543 }
544
545 if (idx == length)
d09b2024 546 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
2c6f1a39 547
e25c4e44 548 cmd = get_keyelt (access_keymap (keymap, c, 0));
2c6f1a39 549
265a9e55 550 if (NILP (cmd))
2c6f1a39 551 {
ce6e5d0b 552 cmd = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
553 store_in_keymap (keymap, c, cmd);
554 }
555
d09b2024
JB
556 keymap = get_keymap_1 (cmd, 0, 1);
557 if (NILP (keymap))
dbc4e1c1
JB
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 }
2c6f1a39
JB
566 }
567}
568
569/* Value is number if KEY is too long; NIL if valid but has no definition. */
570
7c140252 571DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
2c6f1a39
JB
572 "In keymap KEYMAP, look up key sequence KEY. Return the definition.\n\
573nil means undefined. See doc of `define-key' for kinds of definitions.\n\
7c140252 574\n\
2c6f1a39
JB
575A number as value means KEY is \"too long\";\n\
576that is, characters or symbols in it except for the last one\n\
577fail to be a valid sequence of prefix characters in KEYMAP.\n\
578The number is how many characters at the front of KEY\n\
7c140252
JB
579it takes to reach a non-prefix command.\n\
580\n\
581Normally, `lookup-key' ignores bindings for t, which act as default\n\
582bindings, used when nothing else in the keymap applies; this makes it\n\
583useable as a general function for probing keymaps. However, if the\n\
584third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will\n\
585recognize the default bindings, just as `read-key-sequence' does.")
586 (keymap, key, accept_default)
2c6f1a39
JB
587 register Lisp_Object keymap;
588 Lisp_Object key;
7c140252 589 Lisp_Object accept_default;
2c6f1a39
JB
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;
7c140252 597 int t_ok = ! NILP (accept_default);
6ba6e250 598 int meta_bit;
2c6f1a39
JB
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
d09b2024 606 length = XFASTINT (Flength (key));
2c6f1a39
JB
607 if (length == 0)
608 return keymap;
609
6ba6e250
RS
610 if (XTYPE (key) == Lisp_Vector)
611 meta_bit = meta_modifier;
612 else
613 meta_bit = 0x80;
614
2c6f1a39
JB
615 idx = 0;
616 while (1)
617 {
618 c = Faref (key, make_number (idx));
619
620 if (XTYPE (c) == Lisp_Int
6ba6e250 621 && (XINT (c) & meta_bit)
2c6f1a39
JB
622 && !metized)
623 {
624 c = meta_prefix_char;
625 metized = 1;
626 }
627 else
628 {
629 if (XTYPE (c) == Lisp_Int)
6ba6e250 630 XSETINT (c, XINT (c) & ~meta_bit);
2c6f1a39
JB
631
632 metized = 0;
633 idx++;
634 }
635
7c140252 636 cmd = get_keyelt (access_keymap (keymap, c, t_ok));
2c6f1a39
JB
637 if (idx == length)
638 return cmd;
639
d09b2024
JB
640 keymap = get_keymap_1 (cmd, 0, 0);
641 if (NILP (keymap))
2c6f1a39
JB
642 return make_number (idx);
643
2c6f1a39
JB
644 QUIT;
645 }
646}
647
0b8fc2d4
RS
648/* Append a key to the end of a key sequence. We always make a vector. */
649
2c6f1a39
JB
650Lisp_Object
651append_key (key_sequence, key)
652 Lisp_Object key_sequence, key;
653{
654 Lisp_Object args[2];
655
656 args[0] = key_sequence;
657
0b8fc2d4
RS
658 args[1] = Fcons (key, Qnil);
659 return Fvconcat (2, args);
2c6f1a39
JB
660}
661
662\f
cc0a8174
JB
663/* Global, local, and minor mode keymap stuff. */
664
265a9e55 665/* We can't put these variables inside current_minor_maps, since under
6bbbd9b0
JB
666 some systems, static gets macro-defined to be the empty string.
667 Ickypoo. */
265a9e55
JB
668static Lisp_Object *cmm_modes, *cmm_maps;
669static int cmm_size;
670
cc0a8174
JB
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. */
687int
688current_minor_maps (modeptr, mapptr)
689 Lisp_Object **modeptr, **mapptr;
690{
cc0a8174 691 int i = 0;
6bbbd9b0 692 Lisp_Object alist, assoc, var, val;
cc0a8174
JB
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
6bbbd9b0
JB
699 && ! EQ ((val = find_symbol_value (var)), Qunbound)
700 && ! NILP (val))
cc0a8174 701 {
265a9e55 702 if (i >= cmm_size)
cc0a8174
JB
703 {
704 Lisp_Object *newmodes, *newmaps;
705
265a9e55 706 if (cmm_maps)
cc0a8174 707 {
9ac0d9e0 708 BLOCK_INPUT;
265a9e55
JB
709 newmodes = (Lisp_Object *) realloc (cmm_modes, cmm_size *= 2);
710 newmaps = (Lisp_Object *) realloc (cmm_maps, cmm_size);
9ac0d9e0 711 UNBLOCK_INPUT;
cc0a8174
JB
712 }
713 else
714 {
9ac0d9e0 715 BLOCK_INPUT;
265a9e55
JB
716 newmodes = (Lisp_Object *) malloc (cmm_size = 30);
717 newmaps = (Lisp_Object *) malloc (cmm_size);
9ac0d9e0 718 UNBLOCK_INPUT;
cc0a8174
JB
719 }
720
721 if (newmaps && newmodes)
722 {
265a9e55
JB
723 cmm_modes = newmodes;
724 cmm_maps = newmaps;
cc0a8174
JB
725 }
726 else
727 break;
728 }
265a9e55 729 cmm_modes[i] = var;
992984b2 730 cmm_maps [i] = Findirect_function (XCONS (assoc)->cdr);
cc0a8174
JB
731 i++;
732 }
733
265a9e55
JB
734 if (modeptr) *modeptr = cmm_modes;
735 if (mapptr) *mapptr = cmm_maps;
cc0a8174
JB
736 return i;
737}
738
7c140252 739DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 2, 0,
2c6f1a39 740 "Return the binding for command KEY in current keymaps.\n\
7c140252
JB
741KEY is a string or vector, a sequence of keystrokes.\n\
742The binding is probably a symbol with a function definition.\n\
743\n\
744Normally, `key-binding' ignores bindings for t, which act as default\n\
745bindings, used when nothing else in the keymap applies; this makes it\n\
746useable as a general function for probing keymaps. However, if the\n\
747third optional argument ACCEPT-DEFAULT is non-nil, `key-binding' will\n\
748recognize the default bindings, just as `read-key-sequence' does.")
749 (key, accept_default)
2c6f1a39
JB
750 Lisp_Object key;
751{
cc0a8174
JB
752 Lisp_Object *maps, value;
753 int nmaps, i;
754
755 nmaps = current_minor_maps (0, &maps);
756 for (i = 0; i < nmaps; i++)
265a9e55 757 if (! NILP (maps[i]))
cc0a8174 758 {
7c140252 759 value = Flookup_key (maps[i], key, accept_default);
265a9e55 760 if (! NILP (value) && XTYPE (value) != Lisp_Int)
cc0a8174
JB
761 return value;
762 }
763
265a9e55 764 if (! NILP (current_buffer->keymap))
2c6f1a39 765 {
7c140252 766 value = Flookup_key (current_buffer->keymap, key, accept_default);
265a9e55 767 if (! NILP (value) && XTYPE (value) != Lisp_Int)
2c6f1a39
JB
768 return value;
769 }
cc0a8174 770
7c140252 771 value = Flookup_key (current_global_map, key, accept_default);
265a9e55 772 if (! NILP (value) && XTYPE (value) != Lisp_Int)
cc0a8174
JB
773 return value;
774
775 return Qnil;
2c6f1a39
JB
776}
777
7c140252 778DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
2c6f1a39
JB
779 "Return the binding for command KEYS in current local keymap only.\n\
780KEYS is a string, a sequence of keystrokes.\n\
7c140252
JB
781The binding is probably a symbol with a function definition.\n\
782\n\
783If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
784bindings; see the description of `lookup-key' for more details about this.")
785 (keys, accept_default)
786 Lisp_Object keys, accept_default;
2c6f1a39
JB
787{
788 register Lisp_Object map;
789 map = current_buffer->keymap;
265a9e55 790 if (NILP (map))
2c6f1a39 791 return Qnil;
7c140252 792 return Flookup_key (map, keys, accept_default);
2c6f1a39
JB
793}
794
7c140252 795DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
2c6f1a39
JB
796 "Return the binding for command KEYS in current global keymap only.\n\
797KEYS is a string, a sequence of keystrokes.\n\
6bbbd9b0
JB
798The binding is probably a symbol with a function definition.\n\
799This function's return values are the same as those of lookup-key\n\
7c140252
JB
800(which see).\n\
801\n\
802If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
803bindings; see the description of `lookup-key' for more details about this.")
804 (keys, accept_default)
805 Lisp_Object keys, accept_default;
2c6f1a39 806{
7c140252 807 return Flookup_key (current_global_map, keys, accept_default);
2c6f1a39
JB
808}
809
7c140252 810DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
cc0a8174
JB
811 "Find the visible minor mode bindings of KEY.\n\
812Return an alist of pairs (MODENAME . BINDING), where MODENAME is the\n\
813the symbol which names the minor mode binding KEY, and BINDING is\n\
814KEY's definition in that mode. In particular, if KEY has no\n\
815minor-mode bindings, return nil. If the first binding is a\n\
816non-prefix, all subsequent bindings will be omitted, since they would\n\
817be ignored. Similarly, the list doesn't include non-prefix bindings\n\
7c140252
JB
818that come after prefix bindings.\n\
819\n\
820If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
821bindings; see the description of `lookup-key' for more details about this.")
822 (key, accept_default)
823 Lisp_Object key, accept_default;
cc0a8174
JB
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++)
265a9e55 833 if (! NILP (maps[i])
7c140252 834 && ! NILP (binding = Flookup_key (maps[i], key, accept_default))
cc0a8174
JB
835 && XTYPE (binding) != Lisp_Int)
836 {
d09b2024 837 if (! NILP (get_keymap (binding)))
cc0a8174
JB
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
2c6f1a39
JB
846DEFUN ("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\
849COMMAND is a symbol naming an interactively-callable function.\n\
850KEY is a string representing a sequence of keystrokes.\n\
851Note that if KEY has a local binding in the current buffer\n\
852that 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
864DEFUN ("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\
867COMMAND is a symbol naming an interactively-callable function.\n\
868KEY is a string representing a sequence of keystrokes.\n\
869The binding goes in the current buffer's local map,\n\
870which 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;
265a9e55 876 if (NILP (map))
2c6f1a39 877 {
ce6e5d0b 878 map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
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
890DEFUN ("global-unset-key", Fglobal_unset_key, Sglobal_unset_key,
891 1, 1, "kUnset key globally: ",
892 "Remove global binding of KEY.\n\
893KEY is a string representing a sequence of keystrokes.")
894 (keys)
895 Lisp_Object keys;
896{
897 return Fglobal_set_key (keys, Qnil);
898}
899
900DEFUN ("local-unset-key", Flocal_unset_key, Slocal_unset_key, 1, 1,
901 "kUnset key locally: ",
902 "Remove local binding of KEY.\n\
903KEY is a string representing a sequence of keystrokes.")
904 (keys)
905 Lisp_Object keys;
906{
265a9e55 907 if (!NILP (current_buffer->keymap))
2c6f1a39
JB
908 Flocal_set_key (keys, Qnil);
909 return Qnil;
910}
911
912DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 2, 0,
cd8520b9 913 "Define COMMAND as a prefix command. COMMAND should be a symbol.\n\
2c6f1a39 914A new sparse keymap is stored as COMMAND's function definition and its value.\n\
1d8d96fa
JB
915If a second optional argument MAPVAR is given, the map is stored as\n\
916its value instead of as COMMAND's value; but COMMAND is still defined\n\
917as a function.")
2c6f1a39
JB
918 (name, mapvar)
919 Lisp_Object name, mapvar;
920{
921 Lisp_Object map;
ce6e5d0b 922 map = Fmake_sparse_keymap (Qnil);
2c6f1a39 923 Ffset (name, map);
265a9e55 924 if (!NILP (mapvar))
2c6f1a39
JB
925 Fset (mapvar, map);
926 else
927 Fset (name, map);
928 return name;
929}
930
931DEFUN ("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
941DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
942 "Select KEYMAP as the local keymap.\n\
943If KEYMAP is nil, that means no local keymap.")
944 (keymap)
945 Lisp_Object keymap;
946{
265a9e55 947 if (!NILP (keymap))
2c6f1a39
JB
948 keymap = get_keymap (keymap);
949
950 current_buffer->keymap = keymap;
951
952 return Qnil;
953}
954
955DEFUN ("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
962DEFUN ("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}
cc0a8174
JB
968
969DEFUN ("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}
2c6f1a39 978\f
cc0a8174
JB
979/* Help functions for describing and documenting keymaps. */
980
2c6f1a39
JB
981DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
982 1, 1, 0,
983 "Find all keymaps accessible via prefix characters from KEYMAP.\n\
984Returns a list of elements of the form (KEYS . MAP), where the sequence\n\
985KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\
986so that the KEYS increase in length. The first element is (\"\" . KEYMAP).")
987 (startmap)
988 Lisp_Object startmap;
989{
990 Lisp_Object maps, tail;
991
0b8fc2d4
RS
992 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
993 get_keymap (startmap)),
994 Qnil);
2c6f1a39
JB
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
f5b79c1c 1003 for (tail = maps; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39
JB
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
f5b79c1c 1013 for (; CONSP (thismap); thismap = XCONS (thismap)->cdr)
2c6f1a39 1014 {
f5b79c1c 1015 Lisp_Object elt = XCONS (thismap)->car;
2c6f1a39 1016
f5b79c1c
JB
1017 QUIT;
1018
1019 if (XTYPE (elt) == Lisp_Vector)
2c6f1a39
JB
1020 {
1021 register int i;
1022
1023 /* Vector keymap. Scan all the elements. */
db6f9d95 1024 for (i = 0; i < XVECTOR (elt)->size; i++)
2c6f1a39
JB
1025 {
1026 register Lisp_Object tem;
1027 register Lisp_Object cmd;
1028
f5b79c1c 1029 cmd = get_keyelt (XVECTOR (elt)->contents[i]);
265a9e55 1030 if (NILP (cmd)) continue;
2c6f1a39 1031 tem = Fkeymapp (cmd);
265a9e55 1032 if (!NILP (tem))
2c6f1a39
JB
1033 {
1034 cmd = get_keymap (cmd);
1035 /* Ignore keymaps that are already added to maps. */
1036 tem = Frassq (cmd, maps);
265a9e55 1037 if (NILP (tem))
2c6f1a39
JB
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
f5b79c1c
JB
1042 ascii keystroke since we're processing a
1043 keymap table. */
2c6f1a39
JB
1044 if (is_metized)
1045 {
0b8fc2d4 1046 int meta_bit = meta_modifier;
2c6f1a39 1047 tem = Fcopy_sequence (thisseq);
0b8fc2d4
RS
1048
1049 Faset (tem, last, make_number (i | meta_bit));
2c6f1a39
JB
1050
1051 /* This new sequence is the same length as
1052 thisseq, so stick it in the list right
1053 after this one. */
0b8fc2d4
RS
1054 XCONS (tail)->cdr
1055 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
2c6f1a39
JB
1056 }
1057 else
1058 {
1059 tem = append_key (thisseq, make_number (i));
1060 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
1061 }
1062 }
1063 }
1064 }
f5b79c1c
JB
1065 }
1066 else if (CONSP (elt))
2c6f1a39
JB
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);
265a9e55 1073 if (!NILP (tem))
2c6f1a39
JB
1074 {
1075 /* Ignore keymaps that have been seen already. */
1076 cmd = get_keymap (cmd);
1077 tem = Frassq (cmd, maps);
265a9e55 1078 if (NILP (tem))
2c6f1a39
JB
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);
0b8fc2d4
RS
1089 Faset (tem, last,
1090 make_number (XINT (elt) | meta_modifier));
2c6f1a39
JB
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 }
2c6f1a39 1105 }
2c6f1a39
JB
1106 }
1107
1108 return maps;
1109}
1110
1111Lisp_Object Qsingle_key_description, Qkey_description;
1112
1113DEFUN ("key-description", Fkey_description, Skey_description, 1, 1, 0,
1114 "Return a pretty description of key-sequence KEYS.\n\
1115Control characters turn into \"C-foo\" sequences, meta into \"M-foo\"\n\
1116spaces are put between sequence elements, etc.")
1117 (keys)
1118 Lisp_Object keys;
1119{
6ba6e250
RS
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 }
2c6f1a39
JB
1136 return Fmapconcat (Qsingle_key_description, keys, build_string (" "));
1137}
1138
1139char *
1140push_key_description (c, p)
1141 register unsigned int c;
1142 register char *p;
1143{
71ac885b
RS
1144 /* Clear all the meaningless bits above the meta bit. */
1145 c &= meta_modifier | ~ - meta_modifier;
1146
6ba6e250
RS
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)
2c6f1a39
JB
1166 {
1167 *p++ = 'M';
1168 *p++ = '-';
6ba6e250
RS
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;
2c6f1a39
JB
1182 }
1183 if (c < 040)
1184 {
1185 if (c == 033)
1186 {
1187 *p++ = 'E';
1188 *p++ = 'S';
1189 *p++ = 'C';
1190 }
6ba6e250 1191 else if (c == '\t')
2c6f1a39
JB
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 }
6ba6e250 1231 else if (c < 256)
2c6f1a39 1232 *p++ = c;
6ba6e250
RS
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 }
2c6f1a39
JB
1243
1244 return p;
1245}
1246
1247DEFUN ("single-key-description", Fsingle_key_description, Ssingle_key_description, 1, 1, 0,
1248 "Return a pretty description of command character KEY.\n\
1249Control characters turn into C-whatever, etc.")
1250 (key)
1251 Lisp_Object key;
1252{
6ba6e250 1253 char tem[20];
2c6f1a39 1254
cebd887d 1255 key = EVENT_HEAD (key);
6bbbd9b0 1256
2c6f1a39
JB
1257 switch (XTYPE (key))
1258 {
1259 case Lisp_Int: /* Normal character */
6ba6e250 1260 *push_key_description (XUINT (key), tem) = 0;
2c6f1a39
JB
1261 return build_string (tem);
1262
1263 case Lisp_Symbol: /* Function key or event-symbol */
1264 return Fsymbol_name (key);
1265
2c6f1a39
JB
1266 default:
1267 error ("KEY must be an integer, cons, or symbol.");
1268 }
1269}
1270
1271char *
1272push_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
1297DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
1298 "Return a pretty description of file-character CHAR.\n\
1299Control 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}
2fc66973
JB
1311
1312/* Return non-zero if SEQ contains only ASCII characters, perhaps with
1313 a meta bit. */
1314static int
1315ascii_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
2c6f1a39 1333\f
cc0a8174
JB
1334/* where-is - finding a command in a set of keymaps. */
1335
2c6f1a39
JB
1336DEFUN ("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\
1338If KEYMAP is nil, search only KEYMAP1.\n\
1339If KEYMAP1 is nil, use the current global map.\n\
1340\n\
2fc66973
JB
1341If optional 4th arg FIRSTONLY is non-nil, return a string representing\n\
1342the first key sequence found, rather than a list of all possible key\n\
1343sequences. If FIRSTONLY is t, avoid key sequences which use non-ASCII\n\
1344keys and therefore may not be usable on ASCII terminals. If FIRSTONLY\n\
1345is the symbol `non-ascii', return the first binding found, no matter\n\
1346what its components.\n\
2c6f1a39
JB
1347\n\
1348If optional 5th arg NOINDIRECT is non-nil, don't follow indirections\n\
1349to other keymaps or slots. This makes it possible to search for an\n\
1350indirect 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
265a9e55 1358 if (NILP (global_keymap))
2c6f1a39
JB
1359 global_keymap = current_global_map;
1360
265a9e55 1361 if (!NILP (local_keymap))
2c6f1a39
JB
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
265a9e55 1369 for (; !NILP (maps); maps = Fcdr (maps))
2c6f1a39 1370 {
f5b79c1c
JB
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;
2c6f1a39
JB
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));
2c6f1a39 1386
fde3a52f
JB
1387 QUIT;
1388
f5b79c1c 1389 while (CONSP (map))
2c6f1a39 1390 {
f5b79c1c
JB
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. */
2c6f1a39 1399
f5b79c1c
JB
1400 Lisp_Object elt = XCONS (map)->car;
1401 Lisp_Object key, binding, sequence;
1402
fde3a52f
JB
1403 QUIT;
1404
f5b79c1c
JB
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)
2c6f1a39
JB
1408 {
1409 /* In a vector, look at each element. */
f5b79c1c 1410 binding = XVECTOR (elt)->contents[i];
2c6f1a39
JB
1411 XFASTINT (key) = i;
1412 i++;
1413
f5b79c1c
JB
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. */
db6f9d95 1417 if (i >= XVECTOR (elt)->size)
2c6f1a39 1418 {
f5b79c1c
JB
1419 map = XCONS (map)->cdr;
1420 i = 0;
2c6f1a39 1421 }
f5b79c1c
JB
1422 }
1423 else if (CONSP (elt))
1424 {
2c6f1a39 1425 key = Fcar (Fcar (map));
f5b79c1c
JB
1426 binding = Fcdr (Fcar (map));
1427
1428 map = XCONS (map)->cdr;
2c6f1a39
JB
1429 }
1430 else
f5b79c1c
JB
1431 /* We want to ignore keymap elements that are neither
1432 vectors nor conses. */
fde3a52f
JB
1433 {
1434 map = XCONS (map)->cdr;
1435 continue;
1436 }
2c6f1a39
JB
1437
1438 /* Search through indirections unless that's not wanted. */
265a9e55 1439 if (NILP (noindirect))
2c6f1a39
JB
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);
265a9e55 1449 if (NILP (tem))
2c6f1a39
JB
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);
0b8fc2d4 1461 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
2c6f1a39
JB
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. */
265a9e55 1475 if (!NILP (local_keymap))
2c6f1a39 1476 {
7c140252 1477 binding = Flookup_key (local_keymap, sequence, Qnil);
265a9e55 1478 if (!NILP (binding) && XTYPE (binding) != Lisp_Int)
2c6f1a39
JB
1479 {
1480 if (XTYPE (definition) == Lisp_Cons)
1481 {
1482 Lisp_Object tem;
1483 tem = Fequal (binding, definition);
265a9e55 1484 if (NILP (tem))
2c6f1a39
JB
1485 continue;
1486 }
1487 else
1488 if (!EQ (binding, definition))
1489 continue;
1490 }
1491 }
1492
1493 /* It is a true unshadowed match. Record it. */
2fc66973 1494 found = Fcons (sequence, found);
2c6f1a39 1495
2fc66973
JB
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))
2c6f1a39 1503 return sequence;
2c6f1a39
JB
1504 }
1505 }
2fc66973
JB
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;
2c6f1a39
JB
1516}
1517
1518/* Return a string listing the keys and buttons that run DEFINITION. */
1519
1520static Lisp_Object
1521where_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
1533DEFUN ("where-is", Fwhere_is, Swhere_is, 1, 1, "CWhere is command: ",
1534 "Print message listing key sequences that invoke specified command.\n\
1535Argument 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
cc0a8174
JB
1552/* describe-bindings - summarizing all the bindings in a set of keymaps. */
1553
2c6f1a39
JB
1554DEFUN ("describe-bindings", Fdescribe_bindings, Sdescribe_bindings, 0, 0, "",
1555 "Show a list of all defined keys, and their definitions.\n\
1556The 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
1567static Lisp_Object
1568describe_buffer_bindings (descbuf)
1569 Lisp_Object descbuf;
1570{
1571 register Lisp_Object start1, start2;
1572
4726a9f1
JB
1573 char *key_heading
1574 = "\
1575key binding\n\
1576--- -------\n";
1577 char *alternate_heading
1578 = "\
1579Alternate Characters (use anywhere the nominal character is listed):\n\
1580nominal alternate\n\
1581------- ---------\n";
2c6f1a39
JB
1582
1583 Fset_buffer (Vstandard_output);
1584
4726a9f1
JB
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
cc0a8174
JB
1616 {
1617 int i, nmaps;
1618 Lisp_Object *modes, *maps;
1619
4726a9f1
JB
1620 /* Temporarily switch to descbuf, so that we can get that buffer's
1621 minor modes correctly. */
1622 Fset_buffer (descbuf);
cc0a8174 1623 nmaps = current_minor_maps (&modes, &maps);
4726a9f1
JB
1624 Fset_buffer (Vstandard_output);
1625
cc0a8174
JB
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");
4726a9f1 1637 insert_string (key_heading);
cc0a8174
JB
1638 describe_map_tree (maps[i], 0, Qnil);
1639 insert_char ('\n');
1640 }
1641 }
1642
2c6f1a39 1643 start1 = XBUFFER (descbuf)->keymap;
265a9e55 1644 if (!NILP (start1))
2c6f1a39
JB
1645 {
1646 insert_string ("Local Bindings:\n");
4726a9f1 1647 insert_string (key_heading);
cc0a8174 1648 describe_map_tree (start1, 0, Qnil);
2c6f1a39
JB
1649 insert_string ("\n");
1650 }
1651
1652 insert_string ("Global Bindings:\n");
4726a9f1
JB
1653 if (NILP (start1))
1654 insert_string (key_heading);
2c6f1a39 1655
cc0a8174 1656 describe_map_tree (current_global_map, 0, XBUFFER (descbuf)->keymap);
2c6f1a39
JB
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
1669void
1670describe_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
265a9e55 1681 for (; !NILP (maps); maps = Fcdr (maps))
2c6f1a39
JB
1682 {
1683 elt = Fcar (maps);
1684 sh = Fcar (elt);
1685
1686 /* If there is no shadow keymap given, don't shadow. */
265a9e55 1687 if (NILP (shadow))
2c6f1a39
JB
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 {
7c140252 1703 sh = Flookup_key (shadow, Fcar (elt), Qt);
2c6f1a39
JB
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. */
265a9e55 1713 if (NILP (sh) || !NILP (Fkeymapp (sh)))
2c6f1a39
JB
1714 describe_map (Fcdr (elt), Fcar (elt), partial, sh);
1715 }
1716
1717 UNGCPRO;
1718}
1719
1720static void
1721describe_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);
265a9e55 1737 if (!NILP (tem1))
2c6f1a39
JB
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
1748static void
1749describe_map (map, keys, partial, shadow)
1750 Lisp_Object map, keys;
1751 int partial;
1752 Lisp_Object shadow;
1753{
1754 register Lisp_Object keysdesc;
1755
d09b2024 1756 if (!NILP (keys) && XFASTINT (Flength (keys)) > 0)
5cba3869
RS
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 }
2c6f1a39
JB
1763 else
1764 keysdesc = Qnil;
1765
f5b79c1c 1766 describe_map_2 (map, keysdesc, describe_command, partial, shadow);
2c6f1a39
JB
1767}
1768
f5b79c1c 1769/* Insert a description of KEYMAP into the current buffer. */
2c6f1a39
JB
1770
1771static void
f5b79c1c
JB
1772describe_map_2 (keymap, elt_prefix, elt_describer, partial, shadow)
1773 register Lisp_Object keymap;
2c6f1a39
JB
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
f5b79c1c 1790 that is done once per keymap element, we don't want to cons up a
2c6f1a39
JB
1791 fresh vector every time. */
1792 kludge = Fmake_vector (make_number (1), Qnil);
1793
1794 GCPRO3 (elt_prefix, tem2, kludge);
1795
f5b79c1c 1796 for (; CONSP (keymap); keymap = Fcdr (keymap))
2c6f1a39
JB
1797 {
1798 QUIT;
2c6f1a39 1799
f5b79c1c
JB
1800 if (XTYPE (XCONS (keymap)->car) == Lisp_Vector)
1801 describe_vector (XCONS (keymap)->car,
1802 elt_prefix, elt_describer, partial, shadow);
1803 else
2c6f1a39 1804 {
f5b79c1c
JB
1805 tem1 = Fcar_safe (Fcar (keymap));
1806 tem2 = get_keyelt (Fcdr_safe (Fcar (keymap)));
2c6f1a39 1807
f5b79c1c
JB
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 }
2c6f1a39 1816
f5b79c1c
JB
1817 /* Don't show a command that isn't really visible
1818 because a local definition of the same key shadows it. */
2c6f1a39 1819
f5b79c1c
JB
1820 if (!NILP (shadow))
1821 {
1822 Lisp_Object tem;
2c6f1a39 1823
f5b79c1c 1824 XVECTOR (kludge)->contents[0] = tem1;
7c140252 1825 tem = Flookup_key (shadow, kludge, Qt);
f5b79c1c
JB
1826 if (!NILP (tem)) continue;
1827 }
1828
1829 if (first)
1830 {
1831 insert ("\n", 1);
1832 first = 0;
1833 }
2c6f1a39 1834
f5b79c1c
JB
1835 if (!NILP (elt_prefix))
1836 insert1 (elt_prefix);
2c6f1a39 1837
f5b79c1c
JB
1838 /* THIS gets the string to describe the character TEM1. */
1839 this = Fsingle_key_description (tem1);
1840 insert1 (this);
2c6f1a39 1841
f5b79c1c
JB
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 }
2c6f1a39
JB
1847 }
1848
1849 UNGCPRO;
1850}
1851
1852static int
1853describe_vector_princ (elt)
1854 Lisp_Object elt;
1855{
1856 Fprinc (elt, Qnil);
1857}
1858
1859DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 1, 0,
1860 "Print on `standard-output' a description of contents of VECTOR.\n\
1861This is text showing the elements of vector matched against indices.")
1862 (vector)
1863 Lisp_Object vector;
1864{
1865 CHECK_VECTOR (vector, 0);
92cc37e8 1866 describe_vector (vector, Qnil, describe_vector_princ, 0, Qnil);
2c6f1a39
JB
1867}
1868
1869describe_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
db6f9d95 1896 for (i = 0; i < XVECTOR (vector)->size; i++)
2c6f1a39
JB
1897 {
1898 QUIT;
1899 tem1 = get_keyelt (XVECTOR (vector)->contents[i]);
1900
265a9e55 1901 if (NILP (tem1)) continue;
2c6f1a39
JB
1902
1903 /* Don't mention suppressed commands. */
1904 if (XTYPE (tem1) == Lisp_Symbol && partial)
1905 {
1906 this = Fget (tem1, suppress);
265a9e55 1907 if (!NILP (this))
2c6f1a39
JB
1908 continue;
1909 }
1910
1911 /* If this command in this map is shadowed by some other map,
1912 ignore it. */
265a9e55 1913 if (!NILP (shadow))
2c6f1a39
JB
1914 {
1915 Lisp_Object tem;
1916
1917 XVECTOR (kludge)->contents[0] = make_number (i);
7c140252 1918 tem = Flookup_key (shadow, kludge, Qt);
2c6f1a39 1919
265a9e55 1920 if (!NILP (tem)) continue;
2c6f1a39
JB
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. */
265a9e55 1930 if (!NILP (elt_prefix))
2c6f1a39
JB
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. */
db6f9d95 1941 while (i + 1 < XVECTOR (vector)->size
2c6f1a39
JB
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);
265a9e55 1952 if (!NILP (elt_prefix))
2c6f1a39
JB
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
cc0a8174 1968/* Apropos - finding all symbols whose names match a regexp. */
2c6f1a39
JB
1969Lisp_Object apropos_predicate;
1970Lisp_Object apropos_accumulate;
1971
1972static void
1973apropos_accum (symbol, string)
1974 Lisp_Object symbol, string;
1975{
1976 register Lisp_Object tem;
1977
1978 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
265a9e55 1979 if (!NILP (tem) && !NILP (apropos_predicate))
2c6f1a39 1980 tem = call1 (apropos_predicate, symbol);
265a9e55 1981 if (!NILP (tem))
2c6f1a39
JB
1982 apropos_accumulate = Fcons (symbol, apropos_accumulate);
1983}
1984
1985DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
1986 "Show all symbols whose names contain match for REGEXP.\n\
1987If optional 2nd arg PRED is non-nil, (funcall PRED SYM) is done\n\
1988for each symbol and a symbol is mentioned only if that returns non-nil.\n\
1989Return 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
2004syms_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
ce6e5d0b 2015 global_map = Fmake_keymap (Qnil);
2c6f1a39
JB
2016 Fset (intern ("global-map"), global_map);
2017
ce6e5d0b 2018 meta_map = Fmake_keymap (Qnil);
2c6f1a39
JB
2019 Fset (intern ("esc-map"), meta_map);
2020 Ffset (intern ("ESC-prefix"), meta_map);
2021
ce6e5d0b 2022 control_x_map = Fmake_keymap (Qnil);
2c6f1a39
JB
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.");
ce6e5d0b 2028 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
2029
2030 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
2031 "Local keymap for the minibuffer when spaces are not allowed.");
ce6e5d0b 2032 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
2033
2034 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
2035 "Local keymap for minibuffer input with completion.");
ce6e5d0b 2036 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
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.");
ce6e5d0b 2040 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
2041
2042 current_global_map = global_map;
2043
cc0a8174
JB
2044 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
2045 "Alist of keymaps to use for minor modes.\n\
2046Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read\n\
2047key sequences and look up bindings iff VARIABLE's value is non-nil.\n\
2048If two active keymaps bind the same key, the keymap appearing earlier\n\
2049in the list takes precedence.");
2050 Vminor_mode_map_alist = Qnil;
2051
6bbbd9b0
JB
2052 DEFVAR_LISP ("function-key-map", &Vfunction_key_map,
2053 "Keymap mapping ASCII function key sequences onto their preferred forms.\n\
2054This allows Emacs to recognize function keys sent from ASCII\n\
2055terminals at any point in a key sequence.\n\
2056\n\
2057The read-key-sequence function replaces subsequences bound by\n\
2058function-key-map with their bindings. When the current local and global\n\
2059keymaps have no binding for the current key sequence but\n\
2060function-key-map binds a suffix of the sequence to a vector,\n\
2061read-key-sequence replaces the matching suffix with its binding, and\n\
2062continues with the new sequence.\n\
2063\n\
2064For example, suppose function-key-map binds `ESC O P' to [pf1].\n\
2065Typing `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\
2067key, typing `ESC O P x' would return [pf1 x].");
ce6e5d0b 2068 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
6bbbd9b0 2069
2c6f1a39
JB
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
2fc66973
JB
2079 Qnon_ascii = intern ("non-ascii");
2080 staticpro (&Qnon_ascii);
2081
2c6f1a39
JB
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);
cc0a8174 2089 defsubr (&Sminor_mode_key_binding);
2c6f1a39
JB
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);
cc0a8174 2101 defsubr (&Scurrent_minor_mode_maps);
2c6f1a39
JB
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
2113keys_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}