Added patch from Don Hejna <djhejna@oasis.ambit.com>.
[bpt/emacs.git] / src / keymap.c
CommitLineData
2c6f1a39 1/* Manipulation of keymaps
f8c25f1b 2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95 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
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
2c6f1a39
JB
20
21
18160b98 22#include <config.h>
2c6f1a39
JB
23#include <stdio.h>
24#undef NULL
25#include "lisp.h"
26#include "commands.h"
27#include "buffer.h"
a98f1d1d 28#include "charset.h"
6bbbd9b0 29#include "keyboard.h"
6ba6e250 30#include "termhooks.h"
9ac0d9e0 31#include "blockinput.h"
d964248c 32#include "puresize.h"
2c6f1a39
JB
33
34#define min(a, b) ((a) < (b) ? (a) : (b))
35
f5b79c1c 36/* The number of elements in keymap vectors. */
2c6f1a39
JB
37#define DENSE_TABLE_SIZE (0200)
38
39/* Actually allocate storage for these variables */
40
41Lisp_Object current_global_map; /* Current global keymap */
42
43Lisp_Object global_map; /* default global key bindings */
44
45Lisp_Object meta_map; /* The keymap used for globally bound
46 ESC-prefixed default commands */
47
48Lisp_Object control_x_map; /* The keymap used for globally bound
49 C-x-prefixed default commands */
50
51/* was MinibufLocalMap */
52Lisp_Object Vminibuffer_local_map;
53 /* The keymap used by the minibuf for local
54 bindings when spaces are allowed in the
55 minibuf */
56
57/* was MinibufLocalNSMap */
58Lisp_Object Vminibuffer_local_ns_map;
59 /* The keymap used by the minibuf for local
60 bindings when spaces are not encouraged
61 in the minibuf */
62
63/* keymap used for minibuffers when doing completion */
64/* was MinibufLocalCompletionMap */
65Lisp_Object Vminibuffer_local_completion_map;
66
67/* keymap used for minibuffers when doing completion and require a match */
68/* was MinibufLocalMustMatchMap */
69Lisp_Object Vminibuffer_local_must_match_map;
70
cc0a8174
JB
71/* Alist of minor mode variables and keymaps. */
72Lisp_Object Vminor_mode_map_alist;
73
dd9cda06
RS
74/* Alist of major-mode-specific overrides for
75 minor mode variables and keymaps. */
76Lisp_Object Vminor_mode_overriding_map_alist;
77
6bbbd9b0
JB
78/* Keymap mapping ASCII function key sequences onto their preferred forms.
79 Initialized by the terminal-specific lisp files. See DEFVAR for more
80 documentation. */
81Lisp_Object Vfunction_key_map;
82
d7bf9bf5
RS
83/* Keymap mapping ASCII function key sequences onto their preferred forms. */
84Lisp_Object Vkey_translation_map;
85
107fd03d
RS
86/* A list of all commands given new bindings since a certain time
87 when nil was stored here.
88 This is used to speed up recomputation of menu key equivalents
89 when Emacs starts up. t means don't record anything here. */
90Lisp_Object Vdefine_key_rebound_commands;
91
2fc66973 92Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii;
2c6f1a39 93
3d248688
JB
94/* A char with the CHAR_META bit set in a vector or the 0200 bit set
95 in a string key sequence is equivalent to prefixing with this
96 character. */
2c6f1a39
JB
97extern Lisp_Object meta_prefix_char;
98
7d92e329
RS
99extern Lisp_Object Voverriding_local_map;
100
c07aec97 101static Lisp_Object define_as_prefix ();
2c6f1a39 102static Lisp_Object describe_buffer_bindings ();
d7bf9bf5 103static void describe_command (), describe_translation ();
2c6f1a39 104static void describe_map ();
4b917187 105Lisp_Object Fcopy_keymap ();
2c6f1a39 106\f
cc0a8174
JB
107/* Keymap object support - constructors and predicates. */
108
ce6e5d0b 109DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0,
2c6f1a39 110 "Construct and return a new keymap, of the form (keymap VECTOR . ALIST).\n\
926a64aa 111VECTOR is a vector which holds the bindings for the ASCII\n\
2c6f1a39
JB
112characters. ALIST is an assoc-list which holds bindings for function keys,\n\
113mouse events, and any other things that appear in the input stream.\n\
ce6e5d0b
RS
114All entries in it are initially nil, meaning \"command undefined\".\n\n\
115The optional arg STRING supplies a menu name for the keymap\n\
116in case you use it as a menu with `x-popup-menu'.")
117 (string)
118 Lisp_Object string;
2c6f1a39 119{
ce6e5d0b
RS
120 Lisp_Object tail;
121 if (!NILP (string))
122 tail = Fcons (string, Qnil);
123 else
124 tail = Qnil;
2c6f1a39 125 return Fcons (Qkeymap,
0403641f 126 Fcons (Fmake_char_table (Qkeymap, Qnil), tail));
2c6f1a39
JB
127}
128
ce6e5d0b 129DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0,
2c6f1a39
JB
130 "Construct and return a new sparse-keymap list.\n\
131Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),\n\
132which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),\n\
133which binds the function key or mouse event SYMBOL to DEFINITION.\n\
ce6e5d0b
RS
134Initially the alist is nil.\n\n\
135The optional arg STRING supplies a menu name for the keymap\n\
136in case you use it as a menu with `x-popup-menu'.")
137 (string)
138 Lisp_Object string;
2c6f1a39 139{
ce6e5d0b
RS
140 if (!NILP (string))
141 return Fcons (Qkeymap, Fcons (string, Qnil));
2c6f1a39
JB
142 return Fcons (Qkeymap, Qnil);
143}
144
145/* This function is used for installing the standard key bindings
146 at initialization time.
147
148 For example:
149
e25c4e44 150 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
2c6f1a39
JB
151
152void
153initial_define_key (keymap, key, defname)
154 Lisp_Object keymap;
155 int key;
156 char *defname;
157{
158 store_in_keymap (keymap, make_number (key), intern (defname));
159}
160
e25c4e44
JB
161void
162initial_define_lispy_key (keymap, keyname, defname)
163 Lisp_Object keymap;
164 char *keyname;
165 char *defname;
166{
167 store_in_keymap (keymap, intern (keyname), intern (defname));
168}
169
2c6f1a39
JB
170/* Define character fromchar in map frommap as an alias for character
171 tochar in map tomap. Subsequent redefinitions of the latter WILL
172 affect the former. */
173
174#if 0
175void
176synkey (frommap, fromchar, tomap, tochar)
177 struct Lisp_Vector *frommap, *tomap;
178 int fromchar, tochar;
179{
180 Lisp_Object v, c;
bff4ec1f 181 XSETVECTOR (v, tomap);
6e344130 182 XSETFASTINT (c, tochar);
2c6f1a39
JB
183 frommap->contents[fromchar] = Fcons (v, c);
184}
185#endif /* 0 */
186
187DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0,
88539837 188 "Return t if OBJECT is a keymap.\n\
1d8d96fa 189\n\
926a64aa 190A keymap is a list (keymap . ALIST),\n\
90f80bcf 191or a symbol whose function definition is itself a keymap.\n\
1d8d96fa 192ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);\n\
926a64aa
RS
193a vector of densely packed bindings for small character codes\n\
194is also allowed as an element.")
2c6f1a39
JB
195 (object)
196 Lisp_Object object;
197{
d09b2024 198 return (NILP (get_keymap_1 (object, 0, 0)) ? Qnil : Qt);
2c6f1a39
JB
199}
200
201/* Check that OBJECT is a keymap (after dereferencing through any
d09b2024
JB
202 symbols). If it is, return it.
203
204 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
205 is an autoload form, do the autoload and try again.
21a0d7a0 206 If AUTOLOAD is nonzero, callers must assume GC is possible.
d09b2024
JB
207
208 ERROR controls how we respond if OBJECT isn't a keymap.
209 If ERROR is non-zero, signal an error; otherwise, just return Qnil.
210
211 Note that most of the time, we don't want to pursue autoloads.
212 Functions like Faccessible_keymaps which scan entire keymap trees
213 shouldn't load every autoloaded keymap. I'm not sure about this,
214 but it seems to me that only read_key_sequence, Flookup_key, and
215 Fdefine_key should cause keymaps to be autoloaded. */
216
2c6f1a39 217Lisp_Object
d09b2024 218get_keymap_1 (object, error, autoload)
2c6f1a39 219 Lisp_Object object;
d09b2024 220 int error, autoload;
2c6f1a39 221{
d09b2024 222 Lisp_Object tem;
2c6f1a39 223
d09b2024 224 autoload_retry:
502ddf23 225 tem = indirect_function (object);
2c6f1a39
JB
226 if (CONSP (tem) && EQ (XCONS (tem)->car, Qkeymap))
227 return tem;
f5b79c1c 228
8e4dfd54
JB
229 /* Should we do an autoload? Autoload forms for keymaps have
230 Qkeymap as their fifth element. */
d09b2024 231 if (autoload
47684cd9 232 && SYMBOLP (object)
d09b2024
JB
233 && CONSP (tem)
234 && EQ (XCONS (tem)->car, Qautoload))
235 {
8e4dfd54 236 Lisp_Object tail;
d09b2024 237
8e4dfd54
JB
238 tail = Fnth (make_number (4), tem);
239 if (EQ (tail, Qkeymap))
240 {
241 struct gcpro gcpro1, gcpro2;
d09b2024 242
81fa9e2f
RS
243 GCPRO2 (tem, object);
244 do_autoload (tem, object);
8e4dfd54
JB
245 UNGCPRO;
246
247 goto autoload_retry;
248 }
d09b2024
JB
249 }
250
2c6f1a39
JB
251 if (error)
252 wrong_type_argument (Qkeymapp, object);
cc0a8174
JB
253 else
254 return Qnil;
2c6f1a39
JB
255}
256
d09b2024
JB
257
258/* Follow any symbol chaining, and return the keymap denoted by OBJECT.
259 If OBJECT doesn't denote a keymap at all, signal an error. */
2c6f1a39
JB
260Lisp_Object
261get_keymap (object)
262 Lisp_Object object;
263{
224a16e8 264 return get_keymap_1 (object, 1, 0);
2c6f1a39 265}
7d58ed99
RS
266\f
267/* Return the parent map of the keymap MAP, or nil if it has none.
268 We assume that MAP is a valid keymap. */
269
270DEFUN ("keymap-parent", Fkeymap_parent, Skeymap_parent, 1, 1, 0,
271 "Return the parent keymap of KEYMAP.")
272 (keymap)
273 Lisp_Object keymap;
274{
275 Lisp_Object list;
276
277 keymap = get_keymap_1 (keymap, 1, 1);
278
279 /* Skip past the initial element `keymap'. */
280 list = XCONS (keymap)->cdr;
281 for (; CONSP (list); list = XCONS (list)->cdr)
282 {
283 /* See if there is another `keymap'. */
284 if (EQ (Qkeymap, XCONS (list)->car))
285 return list;
286 }
287
288 return Qnil;
289}
290
291/* Set the parent keymap of MAP to PARENT. */
292
293DEFUN ("set-keymap-parent", Fset_keymap_parent, Sset_keymap_parent, 2, 2, 0,
294 "Modify KEYMAP to set its parent map to PARENT.\n\
295PARENT should be nil or another keymap.")
296 (keymap, parent)
297 Lisp_Object keymap, parent;
298{
299 Lisp_Object list, prev;
300 int i;
2c6f1a39 301
7d58ed99
RS
302 keymap = get_keymap_1 (keymap, 1, 1);
303 if (!NILP (parent))
304 parent = get_keymap_1 (parent, 1, 1);
2c6f1a39 305
7d58ed99
RS
306 /* Skip past the initial element `keymap'. */
307 prev = keymap;
308 while (1)
309 {
310 list = XCONS (prev)->cdr;
311 /* If there is a parent keymap here, replace it.
312 If we came to the end, add the parent in PREV. */
313 if (! CONSP (list) || EQ (Qkeymap, XCONS (list)->car))
314 {
2a5af1cf
RS
315 /* If we already have the right parent, return now
316 so that we avoid the loops below. */
317 if (EQ (XCONS (prev)->cdr, parent))
318 return parent;
319
7d58ed99
RS
320 XCONS (prev)->cdr = parent;
321 break;
322 }
323 prev = list;
324 }
325
326 /* Scan through for submaps, and set their parents too. */
327
328 for (list = XCONS (keymap)->cdr; CONSP (list); list = XCONS (list)->cdr)
329 {
330 /* Stop the scan when we come to the parent. */
331 if (EQ (XCONS (list)->car, Qkeymap))
332 break;
333
334 /* If this element holds a prefix map, deal with it. */
335 if (CONSP (XCONS (list)->car)
336 && CONSP (XCONS (XCONS (list)->car)->cdr))
337 fix_submap_inheritance (keymap, XCONS (XCONS (list)->car)->car,
338 XCONS (XCONS (list)->car)->cdr);
339
340 if (VECTORP (XCONS (list)->car))
341 for (i = 0; i < XVECTOR (XCONS (list)->car)->size; i++)
342 if (CONSP (XVECTOR (XCONS (list)->car)->contents[i]))
343 fix_submap_inheritance (keymap, make_number (i),
344 XVECTOR (XCONS (list)->car)->contents[i]);
0403641f
RS
345
346 if (CHAR_TABLE_P (XCONS (list)->car))
347 {
23cf1efa 348 Lisp_Object indices[3];
0403641f
RS
349
350 map_char_table (fix_submap_inheritance, Qnil, XCONS (list)->car,
351 keymap, 0, indices);
352 }
7d58ed99
RS
353 }
354
355 return parent;
356}
357
358/* EVENT is defined in MAP as a prefix, and SUBMAP is its definition.
359 if EVENT is also a prefix in MAP's parent,
360 make sure that SUBMAP inherits that definition as its own parent. */
361
71a956a6 362void
7d58ed99
RS
363fix_submap_inheritance (map, event, submap)
364 Lisp_Object map, event, submap;
365{
366 Lisp_Object map_parent, parent_entry;
367
368 /* SUBMAP is a cons that we found as a key binding.
369 Discard the other things found in a menu key binding. */
370
371 if (CONSP (submap)
372 && STRINGP (XCONS (submap)->car))
373 {
374 submap = XCONS (submap)->cdr;
375 /* Also remove a menu help string, if any,
376 following the menu item name. */
377 if (CONSP (submap) && STRINGP (XCONS (submap)->car))
378 submap = XCONS (submap)->cdr;
379 /* Also remove the sublist that caches key equivalences, if any. */
380 if (CONSP (submap)
381 && CONSP (XCONS (submap)->car))
382 {
383 Lisp_Object carcar;
384 carcar = XCONS (XCONS (submap)->car)->car;
385 if (NILP (carcar) || VECTORP (carcar))
386 submap = XCONS (submap)->cdr;
387 }
388 }
389
390 /* If it isn't a keymap now, there's no work to do. */
391 if (! CONSP (submap)
392 || ! EQ (XCONS (submap)->car, Qkeymap))
393 return;
394
395 map_parent = Fkeymap_parent (map);
396 if (! NILP (map_parent))
397 parent_entry = access_keymap (map_parent, event, 0, 0);
398 else
399 parent_entry = Qnil;
400
3393c3f5
RS
401 /* If MAP's parent has something other than a keymap,
402 our own submap shadows it completely, so use nil as SUBMAP's parent. */
403 if (! (CONSP (parent_entry) && EQ (XCONS (parent_entry)->car, Qkeymap)))
404 parent_entry = Qnil;
405
7d58ed99
RS
406 if (! EQ (parent_entry, submap))
407 Fset_keymap_parent (submap, parent_entry);
408}
409\f
2c6f1a39 410/* Look up IDX in MAP. IDX may be any sort of event.
f5b79c1c 411 Note that this does only one level of lookup; IDX must be a single
e25c4e44
JB
412 event, not a sequence.
413
414 If T_OK is non-zero, bindings for Qt are treated as default
415 bindings; any key left unmentioned by other tables and bindings is
416 given the binding of Qt.
417
c07aec97
RS
418 If T_OK is zero, bindings for Qt are not treated specially.
419
420 If NOINHERIT, don't accept a subkeymap found in an inherited keymap. */
2c6f1a39
JB
421
422Lisp_Object
c07aec97 423access_keymap (map, idx, t_ok, noinherit)
2c6f1a39
JB
424 Lisp_Object map;
425 Lisp_Object idx;
e25c4e44 426 int t_ok;
c07aec97 427 int noinherit;
2c6f1a39 428{
c07aec97
RS
429 int noprefix = 0;
430 Lisp_Object val;
431
2c6f1a39
JB
432 /* If idx is a list (some sort of mouse click, perhaps?),
433 the index we want to use is the car of the list, which
434 ought to be a symbol. */
cebd887d 435 idx = EVENT_HEAD (idx);
2c6f1a39 436
f5b79c1c
JB
437 /* If idx is a symbol, it might have modifiers, which need to
438 be put in the canonical order. */
47684cd9 439 if (SYMBOLP (idx))
f5b79c1c 440 idx = reorder_modifiers (idx);
2732bdbb
RS
441 else if (INTEGERP (idx))
442 /* Clobber the high bits that can be present on a machine
443 with more than 24 bits of integer. */
6e344130 444 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
2c6f1a39 445
f5b79c1c
JB
446 {
447 Lisp_Object tail;
e9b6dfb0 448 Lisp_Object t_binding;
2c6f1a39 449
e9b6dfb0 450 t_binding = Qnil;
f5b79c1c 451 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 452 {
e9b6dfb0 453 Lisp_Object binding;
f5b79c1c 454
e9b6dfb0 455 binding = XCONS (tail)->car;
783a2838 456 if (SYMBOLP (binding))
f5b79c1c 457 {
c07aec97
RS
458 /* If NOINHERIT, stop finding prefix definitions
459 after we pass a second occurrence of the `keymap' symbol. */
460 if (noinherit && EQ (binding, Qkeymap) && ! EQ (tail, map))
461 noprefix = 1;
783a2838
KH
462 }
463 else if (CONSP (binding))
464 {
f5b79c1c 465 if (EQ (XCONS (binding)->car, idx))
c07aec97
RS
466 {
467 val = XCONS (binding)->cdr;
468 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap))
469 return Qnil;
7d58ed99
RS
470 if (CONSP (val))
471 fix_submap_inheritance (map, idx, val);
c07aec97
RS
472 return val;
473 }
e25c4e44
JB
474 if (t_ok && EQ (XCONS (binding)->car, Qt))
475 t_binding = XCONS (binding)->cdr;
783a2838
KH
476 }
477 else if (VECTORP (binding))
478 {
be3bfff1 479 if (NATNUMP (idx) && XFASTINT (idx) < XVECTOR (binding)->size)
c07aec97 480 {
783a2838 481 val = XVECTOR (binding)->contents[XFASTINT (idx)];
c07aec97
RS
482 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap))
483 return Qnil;
7d58ed99
RS
484 if (CONSP (val))
485 fix_submap_inheritance (map, idx, val);
c07aec97
RS
486 return val;
487 }
f5b79c1c 488 }
0403641f
RS
489 else if (CHAR_TABLE_P (binding))
490 {
6418ea16
RS
491 /* Character codes with modifiers
492 are not included in a char-table.
493 All character codes without modifiers are included. */
494 if (NATNUMP (idx)
495 && ! (XFASTINT (idx)
496 & (CHAR_ALT | CHAR_SUPER | CHAR_HYPER
497 | CHAR_SHIFT | CHAR_CTL | CHAR_META)))
0403641f
RS
498 {
499 val = Faref (binding, idx);
500 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap))
501 return Qnil;
502 if (CONSP (val))
503 fix_submap_inheritance (map, idx, val);
504 return val;
505 }
506 }
20218e2f
JB
507
508 QUIT;
2c6f1a39 509 }
fde3a52f 510
e25c4e44
JB
511 return t_binding;
512 }
2c6f1a39
JB
513}
514
515/* Given OBJECT which was found in a slot in a keymap,
516 trace indirect definitions to get the actual definition of that slot.
517 An indirect definition is a list of the form
518 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
519 and INDEX is the object to look up in KEYMAP to yield the definition.
520
521 Also if OBJECT has a menu string as the first element,
224a16e8
RS
522 remove that. Also remove a menu help string as second element.
523
524 If AUTOLOAD is nonzero, load autoloadable keymaps
525 that are referred to with indirection. */
2c6f1a39
JB
526
527Lisp_Object
224a16e8 528get_keyelt (object, autoload)
2c6f1a39 529 register Lisp_Object object;
224a16e8 530 int autoload;
2c6f1a39
JB
531{
532 while (1)
533 {
534 register Lisp_Object map, tem;
535
fde3a52f 536 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
224a16e8 537 map = get_keymap_1 (Fcar_safe (object), 0, autoload);
2c6f1a39 538 tem = Fkeymapp (map);
265a9e55 539 if (!NILP (tem))
0403641f
RS
540 {
541 Lisp_Object key;
542 key = Fcdr (object);
543 if (INTEGERP (key) && (XINT (key) & meta_modifier))
544 {
2e34157c 545 object = access_keymap (map, meta_prefix_char, 0, 0);
0403641f
RS
546 map = get_keymap_1 (object, 0, autoload);
547 object = access_keymap (map,
548 make_number (XINT (key) & ~meta_modifier),
549 0, 0);
550 }
551 else
552 object = access_keymap (map, key, 0, 0);
553 }
554
2c6f1a39
JB
555 /* If the keymap contents looks like (STRING . DEFN),
556 use DEFN.
557 Keymap alist elements like (CHAR MENUSTRING . DEFN)
558 will be used by HierarKey menus. */
47684cd9
RS
559 else if (CONSP (object)
560 && STRINGP (XCONS (object)->car))
1a8c3f10
RS
561 {
562 object = XCONS (object)->cdr;
563 /* Also remove a menu help string, if any,
564 following the menu item name. */
416349ec 565 if (CONSP (object) && STRINGP (XCONS (object)->car))
1a8c3f10 566 object = XCONS (object)->cdr;
c6ec9f6e
RS
567 /* Also remove the sublist that caches key equivalences, if any. */
568 if (CONSP (object)
569 && CONSP (XCONS (object)->car))
ffab2bd6 570 {
c6ec9f6e
RS
571 Lisp_Object carcar;
572 carcar = XCONS (XCONS (object)->car)->car;
573 if (NILP (carcar) || VECTORP (carcar))
ffab2bd6
RS
574 object = XCONS (object)->cdr;
575 }
1a8c3f10 576 }
2c6f1a39
JB
577
578 else
579 /* Anything else is really the value. */
580 return object;
581 }
582}
583
584Lisp_Object
585store_in_keymap (keymap, idx, def)
586 Lisp_Object keymap;
587 register Lisp_Object idx;
588 register Lisp_Object def;
589{
dce4372a
RS
590 /* If we are preparing to dump, and DEF is a menu element
591 with a menu item string, copy it to ensure it is not pure. */
d964248c 592 if (CONSP (def) && PURE_P (def) && STRINGP (XCONS (def)->car))
32ce36ad
RS
593 def = Fcons (XCONS (def)->car, XCONS (def)->cdr);
594
416349ec 595 if (!CONSP (keymap) || ! EQ (XCONS (keymap)->car, Qkeymap))
f5b79c1c
JB
596 error ("attempt to define a key in a non-keymap");
597
2c6f1a39
JB
598 /* If idx is a list (some sort of mouse click, perhaps?),
599 the index we want to use is the car of the list, which
600 ought to be a symbol. */
cebd887d 601 idx = EVENT_HEAD (idx);
2c6f1a39 602
f5b79c1c
JB
603 /* If idx is a symbol, it might have modifiers, which need to
604 be put in the canonical order. */
416349ec 605 if (SYMBOLP (idx))
f5b79c1c 606 idx = reorder_modifiers (idx);
2732bdbb
RS
607 else if (INTEGERP (idx))
608 /* Clobber the high bits that can be present on a machine
609 with more than 24 bits of integer. */
6e344130 610 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
f5b79c1c
JB
611
612 /* Scan the keymap for a binding of idx. */
2c6f1a39 613 {
f5b79c1c 614 Lisp_Object tail;
2c6f1a39 615
f5b79c1c
JB
616 /* The cons after which we should insert new bindings. If the
617 keymap has a table element, we record its position here, so new
618 bindings will go after it; this way, the table will stay
619 towards the front of the alist and character lookups in dense
620 keymaps will remain fast. Otherwise, this just points at the
621 front of the keymap. */
e9b6dfb0 622 Lisp_Object insertion_point;
2c6f1a39 623
e9b6dfb0 624 insertion_point = keymap;
f5b79c1c 625 for (tail = XCONS (keymap)->cdr; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 626 {
e9b6dfb0 627 Lisp_Object elt;
f5b79c1c 628
e9b6dfb0 629 elt = XCONS (tail)->car;
783a2838 630 if (VECTORP (elt))
f5b79c1c 631 {
be3bfff1 632 if (NATNUMP (idx) && XFASTINT (idx) < XVECTOR (elt)->size)
f5b79c1c
JB
633 {
634 XVECTOR (elt)->contents[XFASTINT (idx)] = def;
635 return def;
636 }
637 insertion_point = tail;
783a2838 638 }
0403641f
RS
639 else if (CHAR_TABLE_P (elt))
640 {
6418ea16
RS
641 /* Character codes with modifiers
642 are not included in a char-table.
643 All character codes without modifiers are included. */
644 if (NATNUMP (idx)
645 && ! (XFASTINT (idx)
646 & (CHAR_ALT | CHAR_SUPER | CHAR_HYPER
647 | CHAR_SHIFT | CHAR_CTL | CHAR_META)))
0403641f
RS
648 {
649 Faset (elt, idx, def);
650 return def;
651 }
652 insertion_point = tail;
653 }
783a2838
KH
654 else if (CONSP (elt))
655 {
f5b79c1c
JB
656 if (EQ (idx, XCONS (elt)->car))
657 {
658 XCONS (elt)->cdr = def;
659 return def;
660 }
783a2838
KH
661 }
662 else if (SYMBOLP (elt))
663 {
f5b79c1c
JB
664 /* If we find a 'keymap' symbol in the spine of KEYMAP,
665 then we must have found the start of a second keymap
666 being used as the tail of KEYMAP, and a binding for IDX
667 should be inserted before it. */
668 if (EQ (elt, Qkeymap))
669 goto keymap_end;
f5b79c1c 670 }
0188441d
JB
671
672 QUIT;
2c6f1a39 673 }
2c6f1a39 674
f5b79c1c
JB
675 keymap_end:
676 /* We have scanned the entire keymap, and not found a binding for
677 IDX. Let's add one. */
32ce36ad
RS
678 XCONS (insertion_point)->cdr
679 = Fcons (Fcons (idx, def), XCONS (insertion_point)->cdr);
f5b79c1c
JB
680 }
681
2c6f1a39
JB
682 return def;
683}
684
69248761 685void
0403641f
RS
686copy_keymap_1 (chartable, idx, elt)
687 Lisp_Object chartable, idx, elt;
688{
bee3fc83
RS
689 if (!SYMBOLP (elt) && ! NILP (Fkeymapp (elt)))
690 Faset (chartable, idx, Fcopy_keymap (elt));
0403641f 691}
f5b79c1c 692
2c6f1a39
JB
693DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
694 "Return a copy of the keymap KEYMAP.\n\
695The copy starts out with the same definitions of KEYMAP,\n\
696but changing either the copy or KEYMAP does not affect the other.\n\
1d8d96fa
JB
697Any key definitions that are subkeymaps are recursively copied.\n\
698However, a key definition which is a symbol whose definition is a keymap\n\
699is not copied.")
2c6f1a39
JB
700 (keymap)
701 Lisp_Object keymap;
702{
703 register Lisp_Object copy, tail;
704
705 copy = Fcopy_alist (get_keymap (keymap));
2c6f1a39 706
f5b79c1c 707 for (tail = copy; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 708 {
e9b6dfb0 709 Lisp_Object elt;
2c6f1a39 710
e9b6dfb0 711 elt = XCONS (tail)->car;
0403641f
RS
712 if (CHAR_TABLE_P (elt))
713 {
23cf1efa 714 Lisp_Object indices[3];
0403641f
RS
715
716 elt = Fcopy_sequence (elt);
7cc06296
RS
717 XCONS (tail)->car = elt;
718
0403641f
RS
719 map_char_table (copy_keymap_1, Qnil, elt, elt, 0, indices);
720 }
721 else if (VECTORP (elt))
2c6f1a39 722 {
f5b79c1c 723 int i;
2c6f1a39 724
f5b79c1c
JB
725 elt = Fcopy_sequence (elt);
726 XCONS (tail)->car = elt;
2c6f1a39 727
926a64aa 728 for (i = 0; i < XVECTOR (elt)->size; i++)
416349ec 729 if (!SYMBOLP (XVECTOR (elt)->contents[i])
98006242 730 && ! NILP (Fkeymapp (XVECTOR (elt)->contents[i])))
0403641f
RS
731 XVECTOR (elt)->contents[i]
732 = Fcopy_keymap (XVECTOR (elt)->contents[i]);
2c6f1a39 733 }
d65a13c5
KH
734 else if (CONSP (elt))
735 {
736 /* Skip the optional menu string. */
737 if (CONSP (XCONS (elt)->cdr)
738 && STRINGP (XCONS (XCONS (elt)->cdr)->car))
739 {
740 Lisp_Object tem;
741
742 /* Copy the cell, since copy-alist didn't go this deep. */
743 XCONS (elt)->cdr = Fcons (XCONS (XCONS (elt)->cdr)->car,
744 XCONS (XCONS (elt)->cdr)->cdr);
745 elt = XCONS (elt)->cdr;
746
747 /* Also skip the optional menu help string. */
748 if (CONSP (XCONS (elt)->cdr)
749 && STRINGP (XCONS (XCONS (elt)->cdr)->car))
750 {
751 XCONS (elt)->cdr = Fcons (XCONS (XCONS (elt)->cdr)->car,
752 XCONS (XCONS (elt)->cdr)->cdr);
753 elt = XCONS (elt)->cdr;
754 }
755 /* There may also be a list that caches key equivalences.
756 Just delete it for the new keymap. */
757 if (CONSP (XCONS (elt)->cdr)
758 && CONSP (XCONS (XCONS (elt)->cdr)->car)
759 && (NILP (tem = XCONS (XCONS (XCONS (elt)->cdr)->car)->car)
760 || VECTORP (tem)))
761 XCONS (elt)->cdr = XCONS (XCONS (elt)->cdr)->cdr;
762 }
763 if (CONSP (elt)
764 && ! SYMBOLP (XCONS (elt)->cdr)
765 && ! NILP (Fkeymapp (XCONS (elt)->cdr)))
766 XCONS (elt)->cdr = Fcopy_keymap (XCONS (elt)->cdr);
767 }
2c6f1a39
JB
768 }
769
770 return copy;
771}
772\f
cc0a8174
JB
773/* Simple Keymap mutators and accessors. */
774
21a0d7a0
RS
775/* GC is possible in this function if it autoloads a keymap. */
776
2c6f1a39
JB
777DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
778 "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\
779KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\
780meaning a sequence of keystrokes and events.\n\
c818754b
RS
781Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
782can be included if you use a vector.\n\
2c6f1a39
JB
783DEF is anything that can be a key's definition:\n\
784 nil (means key is undefined in this keymap),\n\
785 a command (a Lisp function suitable for interactive calling)\n\
786 a string (treated as a keyboard macro),\n\
787 a keymap (to define a prefix key),\n\
788 a symbol. When the key is looked up, the symbol will stand for its\n\
789 function definition, which should at that time be one of the above,\n\
790 or another symbol whose function definition is used, etc.\n\
791 a cons (STRING . DEFN), meaning that DEFN is the definition\n\
792 (DEFN should be a valid definition in its own right),\n\
6e8290aa
JB
793 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.\n\
794\n\
795If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at\n\
796the front of KEYMAP.")
2c6f1a39 797 (keymap, key, def)
d09b2024 798 Lisp_Object keymap;
2c6f1a39
JB
799 Lisp_Object key;
800 Lisp_Object def;
801{
802 register int idx;
803 register Lisp_Object c;
804 register Lisp_Object tem;
805 register Lisp_Object cmd;
806 int metized = 0;
6ba6e250 807 int meta_bit;
2c6f1a39 808 int length;
d09b2024 809 struct gcpro gcpro1, gcpro2, gcpro3;
2c6f1a39 810
224a16e8 811 keymap = get_keymap_1 (keymap, 1, 1);
2c6f1a39 812
416349ec 813 if (!VECTORP (key) && !STRINGP (key))
2c6f1a39
JB
814 key = wrong_type_argument (Qarrayp, key);
815
d09b2024 816 length = XFASTINT (Flength (key));
2c6f1a39
JB
817 if (length == 0)
818 return Qnil;
819
107fd03d
RS
820 if (SYMBOLP (def) && !EQ (Vdefine_key_rebound_commands, Qt))
821 Vdefine_key_rebound_commands = Fcons (def, Vdefine_key_rebound_commands);
822
d09b2024
JB
823 GCPRO3 (keymap, key, def);
824
416349ec 825 if (VECTORP (key))
6ba6e250
RS
826 meta_bit = meta_modifier;
827 else
828 meta_bit = 0x80;
829
2c6f1a39
JB
830 idx = 0;
831 while (1)
832 {
833 c = Faref (key, make_number (idx));
834
f09bc924 835 if (CONSP (c) && lucid_event_type_list_p (c))
41015a19 836 c = Fevent_convert_list (c);
f09bc924 837
416349ec 838 if (INTEGERP (c)
6ba6e250 839 && (XINT (c) & meta_bit)
2c6f1a39
JB
840 && !metized)
841 {
842 c = meta_prefix_char;
843 metized = 1;
844 }
845 else
846 {
416349ec 847 if (INTEGERP (c))
0b8fc2d4 848 XSETINT (c, XINT (c) & ~meta_bit);
2c6f1a39
JB
849
850 metized = 0;
851 idx++;
852 }
853
5907b863 854 if (! INTEGERP (c) && ! SYMBOLP (c) && ! CONSP (c))
4b04c52e 855 error ("Key sequence contains invalid events");
5907b863 856
2c6f1a39 857 if (idx == length)
d09b2024 858 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
2c6f1a39 859
224a16e8 860 cmd = get_keyelt (access_keymap (keymap, c, 0, 1), 1);
2c6f1a39 861
c07aec97 862 /* If this key is undefined, make it a prefix. */
265a9e55 863 if (NILP (cmd))
c07aec97 864 cmd = define_as_prefix (keymap, c);
2c6f1a39 865
d09b2024
JB
866 keymap = get_keymap_1 (cmd, 0, 1);
867 if (NILP (keymap))
e9b6dfb0
KH
868 /* We must use Fkey_description rather than just passing key to
869 error; key might be a vector, not a string. */
870 error ("Key sequence %s uses invalid prefix characters",
871 XSTRING (Fkey_description (key))->data);
2c6f1a39
JB
872 }
873}
874
875/* Value is number if KEY is too long; NIL if valid but has no definition. */
21a0d7a0 876/* GC is possible in this function if it autoloads a keymap. */
2c6f1a39 877
7c140252 878DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
2c6f1a39
JB
879 "In keymap KEYMAP, look up key sequence KEY. Return the definition.\n\
880nil means undefined. See doc of `define-key' for kinds of definitions.\n\
7c140252 881\n\
2c6f1a39
JB
882A number as value means KEY is \"too long\";\n\
883that is, characters or symbols in it except for the last one\n\
884fail to be a valid sequence of prefix characters in KEYMAP.\n\
885The number is how many characters at the front of KEY\n\
7c140252
JB
886it takes to reach a non-prefix command.\n\
887\n\
888Normally, `lookup-key' ignores bindings for t, which act as default\n\
889bindings, used when nothing else in the keymap applies; this makes it\n\
b31a4218 890usable as a general function for probing keymaps. However, if the\n\
7c140252
JB
891third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will\n\
892recognize the default bindings, just as `read-key-sequence' does.")
893 (keymap, key, accept_default)
2c6f1a39
JB
894 register Lisp_Object keymap;
895 Lisp_Object key;
7c140252 896 Lisp_Object accept_default;
2c6f1a39
JB
897{
898 register int idx;
899 register Lisp_Object tem;
900 register Lisp_Object cmd;
901 register Lisp_Object c;
902 int metized = 0;
903 int length;
7c140252 904 int t_ok = ! NILP (accept_default);
6ba6e250 905 int meta_bit;
21a0d7a0 906 struct gcpro gcpro1;
2c6f1a39 907
224a16e8 908 keymap = get_keymap_1 (keymap, 1, 1);
2c6f1a39 909
416349ec 910 if (!VECTORP (key) && !STRINGP (key))
2c6f1a39
JB
911 key = wrong_type_argument (Qarrayp, key);
912
d09b2024 913 length = XFASTINT (Flength (key));
2c6f1a39
JB
914 if (length == 0)
915 return keymap;
916
416349ec 917 if (VECTORP (key))
6ba6e250
RS
918 meta_bit = meta_modifier;
919 else
920 meta_bit = 0x80;
921
21a0d7a0
RS
922 GCPRO1 (key);
923
2c6f1a39
JB
924 idx = 0;
925 while (1)
926 {
927 c = Faref (key, make_number (idx));
928
f09bc924 929 if (CONSP (c) && lucid_event_type_list_p (c))
41015a19 930 c = Fevent_convert_list (c);
f09bc924 931
416349ec 932 if (INTEGERP (c)
6ba6e250 933 && (XINT (c) & meta_bit)
2c6f1a39
JB
934 && !metized)
935 {
936 c = meta_prefix_char;
937 metized = 1;
938 }
939 else
940 {
416349ec 941 if (INTEGERP (c))
6ba6e250 942 XSETINT (c, XINT (c) & ~meta_bit);
2c6f1a39
JB
943
944 metized = 0;
945 idx++;
946 }
947
224a16e8 948 cmd = get_keyelt (access_keymap (keymap, c, t_ok, 0), 1);
2c6f1a39 949 if (idx == length)
21a0d7a0 950 RETURN_UNGCPRO (cmd);
2c6f1a39 951
224a16e8 952 keymap = get_keymap_1 (cmd, 0, 1);
d09b2024 953 if (NILP (keymap))
21a0d7a0 954 RETURN_UNGCPRO (make_number (idx));
2c6f1a39 955
2c6f1a39
JB
956 QUIT;
957 }
958}
959
c07aec97
RS
960/* Make KEYMAP define event C as a keymap (i.e., as a prefix).
961 Assume that currently it does not define C at all.
962 Return the keymap. */
963
964static Lisp_Object
965define_as_prefix (keymap, c)
966 Lisp_Object keymap, c;
967{
968 Lisp_Object inherit, cmd;
969
970 cmd = Fmake_sparse_keymap (Qnil);
971 /* If this key is defined as a prefix in an inherited keymap,
972 make it a prefix in this map, and make its definition
973 inherit the other prefix definition. */
974 inherit = access_keymap (keymap, c, 0, 0);
7d58ed99
RS
975#if 0
976 /* This code is needed to do the right thing in the following case:
977 keymap A inherits from B,
978 you define KEY as a prefix in A,
979 then later you define KEY as a prefix in B.
980 We want the old prefix definition in A to inherit from that in B.
981 It is hard to do that retroactively, so this code
982 creates the prefix in B right away.
983
984 But it turns out that this code causes problems immediately
985 when the prefix in A is defined: it causes B to define KEY
986 as a prefix with no subcommands.
987
988 So I took out this code. */
c07aec97
RS
989 if (NILP (inherit))
990 {
991 /* If there's an inherited keymap
992 and it doesn't define this key,
993 make it define this key. */
994 Lisp_Object tail;
995
996 for (tail = Fcdr (keymap); CONSP (tail); tail = XCONS (tail)->cdr)
997 if (EQ (XCONS (tail)->car, Qkeymap))
998 break;
999
1000 if (!NILP (tail))
1001 inherit = define_as_prefix (tail, c);
1002 }
7d58ed99 1003#endif
c07aec97
RS
1004
1005 cmd = nconc2 (cmd, inherit);
1006 store_in_keymap (keymap, c, cmd);
1007
1008 return cmd;
1009}
1010
0b8fc2d4
RS
1011/* Append a key to the end of a key sequence. We always make a vector. */
1012
2c6f1a39
JB
1013Lisp_Object
1014append_key (key_sequence, key)
1015 Lisp_Object key_sequence, key;
1016{
1017 Lisp_Object args[2];
1018
1019 args[0] = key_sequence;
1020
0b8fc2d4
RS
1021 args[1] = Fcons (key, Qnil);
1022 return Fvconcat (2, args);
2c6f1a39
JB
1023}
1024
1025\f
cc0a8174
JB
1026/* Global, local, and minor mode keymap stuff. */
1027
265a9e55 1028/* We can't put these variables inside current_minor_maps, since under
6bbbd9b0
JB
1029 some systems, static gets macro-defined to be the empty string.
1030 Ickypoo. */
265a9e55
JB
1031static Lisp_Object *cmm_modes, *cmm_maps;
1032static int cmm_size;
1033
fbb90829
KH
1034/* Error handler used in current_minor_maps. */
1035static Lisp_Object
1036current_minor_maps_error ()
1037{
1038 return Qnil;
1039}
1040
cc0a8174
JB
1041/* Store a pointer to an array of the keymaps of the currently active
1042 minor modes in *buf, and return the number of maps it contains.
1043
1044 This function always returns a pointer to the same buffer, and may
1045 free or reallocate it, so if you want to keep it for a long time or
1046 hand it out to lisp code, copy it. This procedure will be called
1047 for every key sequence read, so the nice lispy approach (return a
1048 new assoclist, list, what have you) for each invocation would
1049 result in a lot of consing over time.
1050
1051 If we used xrealloc/xmalloc and ran out of memory, they would throw
1052 back to the command loop, which would try to read a key sequence,
1053 which would call this function again, resulting in an infinite
1054 loop. Instead, we'll use realloc/malloc and silently truncate the
1055 list, let the key sequence be read, and hope some other piece of
1056 code signals the error. */
1057int
1058current_minor_maps (modeptr, mapptr)
1059 Lisp_Object **modeptr, **mapptr;
1060{
cc0a8174 1061 int i = 0;
dd9cda06 1062 int list_number = 0;
6bbbd9b0 1063 Lisp_Object alist, assoc, var, val;
dd9cda06
RS
1064 Lisp_Object lists[2];
1065
1066 lists[0] = Vminor_mode_overriding_map_alist;
1067 lists[1] = Vminor_mode_map_alist;
1068
1069 for (list_number = 0; list_number < 2; list_number++)
1070 for (alist = lists[list_number];
1071 CONSP (alist);
1072 alist = XCONS (alist)->cdr)
1073 if ((assoc = XCONS (alist)->car, CONSP (assoc))
1074 && (var = XCONS (assoc)->car, SYMBOLP (var))
1075 && (val = find_symbol_value (var), ! EQ (val, Qunbound))
1076 && ! NILP (val))
1077 {
1078 Lisp_Object temp;
cc0a8174 1079
64dd3629
RS
1080 /* If a variable has an entry in Vminor_mode_overriding_map_alist,
1081 and also an entry in Vminor_mode_map_alist,
1082 ignore the latter. */
1083 if (list_number == 1)
1084 {
1085 val = assq_no_quit (var, lists[0]);
1086 if (!NILP (val))
1087 break;
1088 }
1089
dd9cda06
RS
1090 if (i >= cmm_size)
1091 {
1092 Lisp_Object *newmodes, *newmaps;
cc0a8174 1093
dd9cda06
RS
1094 if (cmm_maps)
1095 {
1096 BLOCK_INPUT;
1097 cmm_size *= 2;
1098 newmodes
1099 = (Lisp_Object *) realloc (cmm_modes,
1100 cmm_size * sizeof (Lisp_Object));
1101 newmaps
1102 = (Lisp_Object *) realloc (cmm_maps,
1103 cmm_size * sizeof (Lisp_Object));
1104 UNBLOCK_INPUT;
1105 }
1106 else
1107 {
1108 BLOCK_INPUT;
1109 cmm_size = 30;
1110 newmodes
1111 = (Lisp_Object *) malloc (cmm_size * sizeof (Lisp_Object));
1112 newmaps
1113 = (Lisp_Object *) malloc (cmm_size * sizeof (Lisp_Object));
1114 UNBLOCK_INPUT;
1115 }
cc0a8174 1116
dd9cda06
RS
1117 if (newmaps && newmodes)
1118 {
1119 cmm_modes = newmodes;
1120 cmm_maps = newmaps;
1121 }
1122 else
1123 break;
1124 }
fbb90829 1125
dd9cda06
RS
1126 /* Get the keymap definition--or nil if it is not defined. */
1127 temp = internal_condition_case_1 (Findirect_function,
1128 XCONS (assoc)->cdr,
1129 Qerror, current_minor_maps_error);
1130 if (!NILP (temp))
1131 {
1132 cmm_modes[i] = var;
1133 cmm_maps [i] = temp;
1134 i++;
1135 }
1136 }
cc0a8174 1137
265a9e55
JB
1138 if (modeptr) *modeptr = cmm_modes;
1139 if (mapptr) *mapptr = cmm_maps;
cc0a8174
JB
1140 return i;
1141}
1142
21a0d7a0
RS
1143/* GC is possible in this function if it autoloads a keymap. */
1144
7c140252 1145DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 2, 0,
2c6f1a39 1146 "Return the binding for command KEY in current keymaps.\n\
7c140252
JB
1147KEY is a string or vector, a sequence of keystrokes.\n\
1148The binding is probably a symbol with a function definition.\n\
1149\n\
1150Normally, `key-binding' ignores bindings for t, which act as default\n\
1151bindings, used when nothing else in the keymap applies; this makes it\n\
d831234b
RS
1152usable as a general function for probing keymaps. However, if the\n\
1153optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does\n\
7c140252
JB
1154recognize the default bindings, just as `read-key-sequence' does.")
1155 (key, accept_default)
c2a2858a 1156 Lisp_Object key, accept_default;
2c6f1a39 1157{
cc0a8174
JB
1158 Lisp_Object *maps, value;
1159 int nmaps, i;
21a0d7a0
RS
1160 struct gcpro gcpro1;
1161
1162 GCPRO1 (key);
cc0a8174 1163
e784236d
KH
1164 if (!NILP (current_kboard->Voverriding_terminal_local_map))
1165 {
1166 value = Flookup_key (current_kboard->Voverriding_terminal_local_map,
1167 key, accept_default);
1168 if (! NILP (value) && !INTEGERP (value))
1169 RETURN_UNGCPRO (value);
1170 }
1171 else if (!NILP (Voverriding_local_map))
2c6f1a39 1172 {
7d92e329 1173 value = Flookup_key (Voverriding_local_map, key, accept_default);
416349ec 1174 if (! NILP (value) && !INTEGERP (value))
21a0d7a0 1175 RETURN_UNGCPRO (value);
2c6f1a39 1176 }
7d92e329
RS
1177 else
1178 {
d964248c
KH
1179 Lisp_Object local;
1180
7d92e329 1181 nmaps = current_minor_maps (0, &maps);
21a0d7a0
RS
1182 /* Note that all these maps are GCPRO'd
1183 in the places where we found them. */
1184
7d92e329
RS
1185 for (i = 0; i < nmaps; i++)
1186 if (! NILP (maps[i]))
1187 {
1188 value = Flookup_key (maps[i], key, accept_default);
416349ec 1189 if (! NILP (value) && !INTEGERP (value))
21a0d7a0 1190 RETURN_UNGCPRO (value);
7d92e329
RS
1191 }
1192
d964248c
KH
1193 local = get_local_map (PT, current_buffer);
1194
1195 if (! NILP (local))
7d92e329 1196 {
d964248c 1197 value = Flookup_key (local, key, accept_default);
416349ec 1198 if (! NILP (value) && !INTEGERP (value))
21a0d7a0 1199 RETURN_UNGCPRO (value);
7d92e329
RS
1200 }
1201 }
cc0a8174 1202
7c140252 1203 value = Flookup_key (current_global_map, key, accept_default);
21a0d7a0 1204 UNGCPRO;
416349ec 1205 if (! NILP (value) && !INTEGERP (value))
cc0a8174
JB
1206 return value;
1207
1208 return Qnil;
2c6f1a39
JB
1209}
1210
21a0d7a0
RS
1211/* GC is possible in this function if it autoloads a keymap. */
1212
7c140252 1213DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
2c6f1a39
JB
1214 "Return the binding for command KEYS in current local keymap only.\n\
1215KEYS is a string, a sequence of keystrokes.\n\
7c140252
JB
1216The binding is probably a symbol with a function definition.\n\
1217\n\
1218If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1219bindings; see the description of `lookup-key' for more details about this.")
1220 (keys, accept_default)
1221 Lisp_Object keys, accept_default;
2c6f1a39
JB
1222{
1223 register Lisp_Object map;
1224 map = current_buffer->keymap;
265a9e55 1225 if (NILP (map))
2c6f1a39 1226 return Qnil;
7c140252 1227 return Flookup_key (map, keys, accept_default);
2c6f1a39
JB
1228}
1229
21a0d7a0
RS
1230/* GC is possible in this function if it autoloads a keymap. */
1231
7c140252 1232DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
2c6f1a39
JB
1233 "Return the binding for command KEYS in current global keymap only.\n\
1234KEYS is a string, a sequence of keystrokes.\n\
6bbbd9b0
JB
1235The binding is probably a symbol with a function definition.\n\
1236This function's return values are the same as those of lookup-key\n\
21a0d7a0 1237\(which see).\n\
7c140252
JB
1238\n\
1239If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1240bindings; see the description of `lookup-key' for more details about this.")
1241 (keys, accept_default)
1242 Lisp_Object keys, accept_default;
2c6f1a39 1243{
7c140252 1244 return Flookup_key (current_global_map, keys, accept_default);
2c6f1a39
JB
1245}
1246
21a0d7a0
RS
1247/* GC is possible in this function if it autoloads a keymap. */
1248
7c140252 1249DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
cc0a8174
JB
1250 "Find the visible minor mode bindings of KEY.\n\
1251Return an alist of pairs (MODENAME . BINDING), where MODENAME is the\n\
1252the symbol which names the minor mode binding KEY, and BINDING is\n\
1253KEY's definition in that mode. In particular, if KEY has no\n\
1254minor-mode bindings, return nil. If the first binding is a\n\
1255non-prefix, all subsequent bindings will be omitted, since they would\n\
1256be ignored. Similarly, the list doesn't include non-prefix bindings\n\
7c140252
JB
1257that come after prefix bindings.\n\
1258\n\
1259If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1260bindings; see the description of `lookup-key' for more details about this.")
1261 (key, accept_default)
1262 Lisp_Object key, accept_default;
cc0a8174
JB
1263{
1264 Lisp_Object *modes, *maps;
1265 int nmaps;
1266 Lisp_Object binding;
1267 int i, j;
21a0d7a0 1268 struct gcpro gcpro1, gcpro2;
cc0a8174
JB
1269
1270 nmaps = current_minor_maps (&modes, &maps);
21a0d7a0
RS
1271 /* Note that all these maps are GCPRO'd
1272 in the places where we found them. */
1273
1274 binding = Qnil;
1275 GCPRO2 (key, binding);
cc0a8174
JB
1276
1277 for (i = j = 0; i < nmaps; i++)
265a9e55 1278 if (! NILP (maps[i])
7c140252 1279 && ! NILP (binding = Flookup_key (maps[i], key, accept_default))
416349ec 1280 && !INTEGERP (binding))
cc0a8174 1281 {
d09b2024 1282 if (! NILP (get_keymap (binding)))
cc0a8174
JB
1283 maps[j++] = Fcons (modes[i], binding);
1284 else if (j == 0)
21a0d7a0 1285 RETURN_UNGCPRO (Fcons (Fcons (modes[i], binding), Qnil));
cc0a8174
JB
1286 }
1287
21a0d7a0 1288 UNGCPRO;
cc0a8174
JB
1289 return Flist (j, maps);
1290}
1291
2c6f1a39 1292DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 2, 0,
cd8520b9 1293 "Define COMMAND as a prefix command. COMMAND should be a symbol.\n\
2c6f1a39 1294A new sparse keymap is stored as COMMAND's function definition and its value.\n\
1d8d96fa
JB
1295If a second optional argument MAPVAR is given, the map is stored as\n\
1296its value instead of as COMMAND's value; but COMMAND is still defined\n\
1297as a function.")
88539837
EN
1298 (command, mapvar)
1299 Lisp_Object command, mapvar;
2c6f1a39
JB
1300{
1301 Lisp_Object map;
ce6e5d0b 1302 map = Fmake_sparse_keymap (Qnil);
88539837 1303 Ffset (command, map);
265a9e55 1304 if (!NILP (mapvar))
2c6f1a39
JB
1305 Fset (mapvar, map);
1306 else
88539837
EN
1307 Fset (command, map);
1308 return command;
2c6f1a39
JB
1309}
1310
1311DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0,
1312 "Select KEYMAP as the global keymap.")
1313 (keymap)
1314 Lisp_Object keymap;
1315{
1316 keymap = get_keymap (keymap);
1317 current_global_map = keymap;
6f27e7a2 1318
2c6f1a39
JB
1319 return Qnil;
1320}
1321
1322DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
1323 "Select KEYMAP as the local keymap.\n\
1324If KEYMAP is nil, that means no local keymap.")
1325 (keymap)
1326 Lisp_Object keymap;
1327{
265a9e55 1328 if (!NILP (keymap))
2c6f1a39
JB
1329 keymap = get_keymap (keymap);
1330
1331 current_buffer->keymap = keymap;
1332
1333 return Qnil;
1334}
1335
1336DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
1337 "Return current buffer's local keymap, or nil if it has none.")
1338 ()
1339{
1340 return current_buffer->keymap;
1341}
1342
1343DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0,
1344 "Return the current global keymap.")
1345 ()
1346{
1347 return current_global_map;
1348}
cc0a8174
JB
1349
1350DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0,
1351 "Return a list of keymaps for the minor modes of the current buffer.")
1352 ()
1353{
1354 Lisp_Object *maps;
1355 int nmaps = current_minor_maps (0, &maps);
1356
1357 return Flist (nmaps, maps);
1358}
2c6f1a39 1359\f
cc0a8174
JB
1360/* Help functions for describing and documenting keymaps. */
1361
69248761 1362static void accessible_keymaps_char_table ();
0403641f 1363
21a0d7a0
RS
1364/* This function cannot GC. */
1365
2c6f1a39 1366DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
53c8f9fa 1367 1, 2, 0,
2c6f1a39
JB
1368 "Find all keymaps accessible via prefix characters from KEYMAP.\n\
1369Returns a list of elements of the form (KEYS . MAP), where the sequence\n\
1370KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\
c3f27064 1371so that the KEYS increase in length. The first element is ([] . KEYMAP).\n\
f66ef185
RS
1372An optional argument PREFIX, if non-nil, should be a key sequence;\n\
1373then the value includes only maps for prefixes that start with PREFIX.")
88539837
EN
1374 (keymap, prefix)
1375 Lisp_Object keymap, prefix;
2c6f1a39 1376{
53c8f9fa
RS
1377 Lisp_Object maps, good_maps, tail;
1378 int prefixlen = 0;
1379
21a0d7a0
RS
1380 /* no need for gcpro because we don't autoload any keymaps. */
1381
53c8f9fa
RS
1382 if (!NILP (prefix))
1383 prefixlen = XINT (Flength (prefix));
2c6f1a39 1384
44a4a59b
RS
1385 if (!NILP (prefix))
1386 {
1387 /* If a prefix was specified, start with the keymap (if any) for
1388 that prefix, so we don't waste time considering other prefixes. */
1389 Lisp_Object tem;
88539837 1390 tem = Flookup_key (keymap, prefix, Qt);
1ae2097f
RS
1391 /* Flookup_key may give us nil, or a number,
1392 if the prefix is not defined in this particular map.
1393 It might even give us a list that isn't a keymap. */
1394 tem = get_keymap_1 (tem, 0, 0);
44a4a59b 1395 if (!NILP (tem))
67fc16a3
RS
1396 {
1397 /* Convert PREFIX to a vector now, so that later on
1398 we don't have to deal with the possibility of a string. */
1399 if (STRINGP (prefix))
1400 {
f3ba5409 1401 int i, i_byte, c;
67fc16a3
RS
1402 Lisp_Object copy;
1403
1404 copy = Fmake_vector (make_number (XSTRING (prefix)->size), Qnil);
f3ba5409 1405 for (i = 0, i_byte; i < XSTRING (prefix)->size;)
67fc16a3 1406 {
f3ba5409
RS
1407 int i_before = i;
1408 if (STRING_MULTIBYTE (prefix))
1409 FETCH_STRING_CHAR_ADVANCE (c, prefix, i, i_byte);
1410 else
1411 c = XSTRING (prefix)->data[i++];
67fc16a3
RS
1412 if (c & 0200)
1413 c ^= 0200 | meta_modifier;
f3ba5409 1414 XVECTOR (copy)->contents[i_before] = make_number (c);
67fc16a3
RS
1415 }
1416 prefix = copy;
1417 }
1418 maps = Fcons (Fcons (prefix, tem), Qnil);
1419 }
44a4a59b
RS
1420 else
1421 return Qnil;
1422 }
1423 else
1424 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
88539837 1425 get_keymap (keymap)),
44a4a59b 1426 Qnil);
2c6f1a39
JB
1427
1428 /* For each map in the list maps,
1429 look at any other maps it points to,
1430 and stick them at the end if they are not already in the list.
1431
1432 This is a breadth-first traversal, where tail is the queue of
1433 nodes, and maps accumulates a list of all nodes visited. */
1434
f5b79c1c 1435 for (tail = maps; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 1436 {
e9b6dfb0
KH
1437 register Lisp_Object thisseq, thismap;
1438 Lisp_Object last;
2c6f1a39 1439 /* Does the current sequence end in the meta-prefix-char? */
e9b6dfb0
KH
1440 int is_metized;
1441
1442 thisseq = Fcar (Fcar (tail));
1443 thismap = Fcdr (Fcar (tail));
1444 last = make_number (XINT (Flength (thisseq)) - 1);
1445 is_metized = (XINT (last) >= 0
97ae4b89
RS
1446 /* Don't metize the last char of PREFIX. */
1447 && XINT (last) >= prefixlen
e9b6dfb0 1448 && EQ (Faref (thisseq, last), meta_prefix_char));
2c6f1a39 1449
f5b79c1c 1450 for (; CONSP (thismap); thismap = XCONS (thismap)->cdr)
2c6f1a39 1451 {
e9b6dfb0
KH
1452 Lisp_Object elt;
1453
1454 elt = XCONS (thismap)->car;
2c6f1a39 1455
f5b79c1c
JB
1456 QUIT;
1457
0403641f
RS
1458 if (CHAR_TABLE_P (elt))
1459 {
23cf1efa 1460 Lisp_Object indices[3];
0403641f
RS
1461
1462 map_char_table (accessible_keymaps_char_table, Qnil,
1463 elt, Fcons (maps, Fcons (tail, thisseq)),
1464 0, indices);
1465 }
1466 else if (VECTORP (elt))
2c6f1a39
JB
1467 {
1468 register int i;
1469
1470 /* Vector keymap. Scan all the elements. */
db6f9d95 1471 for (i = 0; i < XVECTOR (elt)->size; i++)
2c6f1a39
JB
1472 {
1473 register Lisp_Object tem;
1474 register Lisp_Object cmd;
1475
224a16e8 1476 cmd = get_keyelt (XVECTOR (elt)->contents[i], 0);
265a9e55 1477 if (NILP (cmd)) continue;
2c6f1a39 1478 tem = Fkeymapp (cmd);
265a9e55 1479 if (!NILP (tem))
2c6f1a39
JB
1480 {
1481 cmd = get_keymap (cmd);
1482 /* Ignore keymaps that are already added to maps. */
1483 tem = Frassq (cmd, maps);
265a9e55 1484 if (NILP (tem))
2c6f1a39
JB
1485 {
1486 /* If the last key in thisseq is meta-prefix-char,
1487 turn it into a meta-ized keystroke. We know
1488 that the event we're about to append is an
f5b79c1c
JB
1489 ascii keystroke since we're processing a
1490 keymap table. */
2c6f1a39
JB
1491 if (is_metized)
1492 {
0b8fc2d4 1493 int meta_bit = meta_modifier;
2c6f1a39 1494 tem = Fcopy_sequence (thisseq);
0b8fc2d4
RS
1495
1496 Faset (tem, last, make_number (i | meta_bit));
2c6f1a39
JB
1497
1498 /* This new sequence is the same length as
1499 thisseq, so stick it in the list right
1500 after this one. */
0b8fc2d4
RS
1501 XCONS (tail)->cdr
1502 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
2c6f1a39
JB
1503 }
1504 else
1505 {
1506 tem = append_key (thisseq, make_number (i));
1507 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
1508 }
1509 }
1510 }
1511 }
0403641f 1512 }
f5b79c1c 1513 else if (CONSP (elt))
2c6f1a39 1514 {
e9b6dfb0 1515 register Lisp_Object cmd, tem, filter;
2c6f1a39 1516
224a16e8 1517 cmd = get_keyelt (XCONS (elt)->cdr, 0);
2c6f1a39
JB
1518 /* Ignore definitions that aren't keymaps themselves. */
1519 tem = Fkeymapp (cmd);
265a9e55 1520 if (!NILP (tem))
2c6f1a39
JB
1521 {
1522 /* Ignore keymaps that have been seen already. */
1523 cmd = get_keymap (cmd);
1524 tem = Frassq (cmd, maps);
265a9e55 1525 if (NILP (tem))
2c6f1a39 1526 {
53c8f9fa 1527 /* Let elt be the event defined by this map entry. */
2c6f1a39
JB
1528 elt = XCONS (elt)->car;
1529
1530 /* If the last key in thisseq is meta-prefix-char, and
1531 this entry is a binding for an ascii keystroke,
1532 turn it into a meta-ized keystroke. */
416349ec 1533 if (is_metized && INTEGERP (elt))
2c6f1a39 1534 {
97ae4b89
RS
1535 Lisp_Object element;
1536
1537 element = thisseq;
1538 tem = Fvconcat (1, &element);
2e34157c
RS
1539 XSETFASTINT (XVECTOR (tem)->contents[XINT (last)],
1540 XINT (elt) | meta_modifier);
2c6f1a39
JB
1541
1542 /* This new sequence is the same length as
1543 thisseq, so stick it in the list right
1544 after this one. */
53c8f9fa
RS
1545 XCONS (tail)->cdr
1546 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
2c6f1a39
JB
1547 }
1548 else
1549 nconc2 (tail,
1550 Fcons (Fcons (append_key (thisseq, elt), cmd),
1551 Qnil));
1552 }
1553 }
1554 }
2c6f1a39 1555 }
2c6f1a39
JB
1556 }
1557
53c8f9fa
RS
1558 if (NILP (prefix))
1559 return maps;
1560
1561 /* Now find just the maps whose access prefixes start with PREFIX. */
1562
1563 good_maps = Qnil;
1564 for (; CONSP (maps); maps = XCONS (maps)->cdr)
1565 {
1566 Lisp_Object elt, thisseq;
1567 elt = XCONS (maps)->car;
1568 thisseq = XCONS (elt)->car;
1569 /* The access prefix must be at least as long as PREFIX,
1570 and the first elements must match those of PREFIX. */
1571 if (XINT (Flength (thisseq)) >= prefixlen)
1572 {
1573 int i;
1574 for (i = 0; i < prefixlen; i++)
1575 {
1576 Lisp_Object i1;
6e344130 1577 XSETFASTINT (i1, i);
53c8f9fa
RS
1578 if (!EQ (Faref (thisseq, i1), Faref (prefix, i1)))
1579 break;
1580 }
1581 if (i == prefixlen)
1582 good_maps = Fcons (elt, good_maps);
1583 }
1584 }
1585
1586 return Fnreverse (good_maps);
2c6f1a39
JB
1587}
1588
69248761 1589static void
0403641f
RS
1590accessible_keymaps_char_table (args, index, cmd)
1591 Lisp_Object args, index, cmd;
1592{
1593 Lisp_Object tem;
1594 Lisp_Object maps, tail, thisseq;
1595
1596 if (NILP (cmd))
69248761 1597 return;
0403641f
RS
1598
1599 maps = XCONS (args)->car;
1600 tail = XCONS (XCONS (args)->cdr)->car;
1601 thisseq = XCONS (XCONS (args)->cdr)->cdr;
1602
1603 tem = Fkeymapp (cmd);
1604 if (!NILP (tem))
1605 {
1606 cmd = get_keymap (cmd);
1607 /* Ignore keymaps that are already added to maps. */
1608 tem = Frassq (cmd, maps);
1609 if (NILP (tem))
1610 {
1611 tem = append_key (thisseq, index);
1612 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
1613 }
1614 }
0403641f
RS
1615}
1616\f
2c6f1a39
JB
1617Lisp_Object Qsingle_key_description, Qkey_description;
1618
21a0d7a0
RS
1619/* This function cannot GC. */
1620
2c6f1a39
JB
1621DEFUN ("key-description", Fkey_description, Skey_description, 1, 1, 0,
1622 "Return a pretty description of key-sequence KEYS.\n\
1623Control characters turn into \"C-foo\" sequences, meta into \"M-foo\"\n\
1624spaces are put between sequence elements, etc.")
1625 (keys)
1626 Lisp_Object keys;
1627{
4c7d5f13 1628 int len;
f3ba5409 1629 int i, i_byte;
4c7d5f13
RS
1630 Lisp_Object sep;
1631 Lisp_Object *args;
1632
47684cd9 1633 if (STRINGP (keys))
6ba6e250
RS
1634 {
1635 Lisp_Object vector;
6ba6e250 1636 vector = Fmake_vector (Flength (keys), Qnil);
f3ba5409 1637 for (i = 0; i < XSTRING (keys)->size; )
6ba6e250 1638 {
f3ba5409 1639 int c;
28246d85 1640 int i_before = i;
f3ba5409
RS
1641
1642 if (STRING_MULTIBYTE (keys))
1643 FETCH_STRING_CHAR_ADVANCE (c, keys, i, i_byte);
6ba6e250 1644 else
f3ba5409
RS
1645 c = XSTRING (keys)->data[i++];
1646
1647 if (c & 0x80)
6e344130 1648 XSETFASTINT (XVECTOR (vector)->contents[i],
f3ba5409
RS
1649 meta_modifier | (c & ~0x80));
1650 else
1651 XSETFASTINT (XVECTOR (vector)->contents[i_before], c);
6ba6e250
RS
1652 }
1653 keys = vector;
1654 }
e283121b 1655 else if (!VECTORP (keys))
47684cd9 1656 keys = wrong_type_argument (Qarrayp, keys);
4c7d5f13
RS
1657
1658 /* In effect, this computes
1659 (mapconcat 'single-key-description keys " ")
1660 but we shouldn't use mapconcat because it can do GC. */
1661
1662 len = XVECTOR (keys)->size;
1663 sep = build_string (" ");
1664 /* This has one extra element at the end that we don't pass to Fconcat. */
1665 args = (Lisp_Object *) alloca (len * 2 * sizeof (Lisp_Object));
1666
1667 for (i = 0; i < len; i++)
1668 {
1669 args[i * 2] = Fsingle_key_description (XVECTOR (keys)->contents[i]);
1670 args[i * 2 + 1] = sep;
1671 }
1672
1673 return Fconcat (len * 2 - 1, args);
2c6f1a39
JB
1674}
1675
1676char *
1677push_key_description (c, p)
1678 register unsigned int c;
1679 register char *p;
1680{
71ac885b
RS
1681 /* Clear all the meaningless bits above the meta bit. */
1682 c &= meta_modifier | ~ - meta_modifier;
1683
6ba6e250
RS
1684 if (c & alt_modifier)
1685 {
1686 *p++ = 'A';
1687 *p++ = '-';
1688 c -= alt_modifier;
1689 }
1690 if (c & ctrl_modifier)
1691 {
1692 *p++ = 'C';
1693 *p++ = '-';
1694 c -= ctrl_modifier;
1695 }
1696 if (c & hyper_modifier)
1697 {
1698 *p++ = 'H';
1699 *p++ = '-';
1700 c -= hyper_modifier;
1701 }
1702 if (c & meta_modifier)
2c6f1a39
JB
1703 {
1704 *p++ = 'M';
1705 *p++ = '-';
6ba6e250
RS
1706 c -= meta_modifier;
1707 }
1708 if (c & shift_modifier)
1709 {
1710 *p++ = 'S';
1711 *p++ = '-';
1712 c -= shift_modifier;
1713 }
1714 if (c & super_modifier)
1715 {
1716 *p++ = 's';
1717 *p++ = '-';
1718 c -= super_modifier;
2c6f1a39
JB
1719 }
1720 if (c < 040)
1721 {
1722 if (c == 033)
1723 {
1724 *p++ = 'E';
1725 *p++ = 'S';
1726 *p++ = 'C';
1727 }
6ba6e250 1728 else if (c == '\t')
2c6f1a39
JB
1729 {
1730 *p++ = 'T';
1731 *p++ = 'A';
1732 *p++ = 'B';
1733 }
b8cab006 1734 else if (c == Ctl ('M'))
2c6f1a39
JB
1735 {
1736 *p++ = 'R';
1737 *p++ = 'E';
1738 *p++ = 'T';
1739 }
1740 else
1741 {
1742 *p++ = 'C';
1743 *p++ = '-';
1744 if (c > 0 && c <= Ctl ('Z'))
1745 *p++ = c + 0140;
1746 else
1747 *p++ = c + 0100;
1748 }
1749 }
1750 else if (c == 0177)
1751 {
1752 *p++ = 'D';
1753 *p++ = 'E';
1754 *p++ = 'L';
1755 }
1756 else if (c == ' ')
1757 {
1758 *p++ = 'S';
1759 *p++ = 'P';
1760 *p++ = 'C';
1761 }
28246d85 1762 else if (c < 128)
1df19f02
KH
1763 *p++ = c;
1764 else if (c < 512)
a98f1d1d 1765 {
1df19f02
KH
1766 *p++ = '\\';
1767 *p++ = (7 & (c >> 6)) + '0';
1768 *p++ = (7 & (c >> 3)) + '0';
1769 *p++ = (7 & (c >> 0)) + '0';
a98f1d1d 1770 }
6ba6e250
RS
1771 else
1772 {
1773 *p++ = '\\';
1774 *p++ = (7 & (c >> 15)) + '0';
1775 *p++ = (7 & (c >> 12)) + '0';
1776 *p++ = (7 & (c >> 9)) + '0';
1777 *p++ = (7 & (c >> 6)) + '0';
1778 *p++ = (7 & (c >> 3)) + '0';
1779 *p++ = (7 & (c >> 0)) + '0';
1780 }
2c6f1a39
JB
1781
1782 return p;
1783}
1784
21a0d7a0
RS
1785/* This function cannot GC. */
1786
2c6f1a39
JB
1787DEFUN ("single-key-description", Fsingle_key_description, Ssingle_key_description, 1, 1, 0,
1788 "Return a pretty description of command character KEY.\n\
1789Control characters turn into C-whatever, etc.")
1790 (key)
1791 Lisp_Object key;
1792{
6ba6e250 1793 char tem[20];
2c6f1a39 1794
cebd887d 1795 key = EVENT_HEAD (key);
6bbbd9b0 1796
e958fd9a 1797 if (INTEGERP (key)) /* Normal character */
2c6f1a39 1798 {
6ba6e250 1799 *push_key_description (XUINT (key), tem) = 0;
2c6f1a39 1800 return build_string (tem);
2c6f1a39 1801 }
e958fd9a
KH
1802 else if (SYMBOLP (key)) /* Function key or event-symbol */
1803 return Fsymbol_name (key);
1804 else if (STRINGP (key)) /* Buffer names in the menubar. */
1805 return Fcopy_sequence (key);
1806 else
1807 error ("KEY must be an integer, cons, symbol, or string");
2c6f1a39
JB
1808}
1809
1810char *
1811push_text_char_description (c, p)
1812 register unsigned int c;
1813 register char *p;
1814{
1815 if (c >= 0200)
1816 {
1817 *p++ = 'M';
1818 *p++ = '-';
1819 c -= 0200;
1820 }
1821 if (c < 040)
1822 {
1823 *p++ = '^';
1824 *p++ = c + 64; /* 'A' - 1 */
1825 }
1826 else if (c == 0177)
1827 {
1828 *p++ = '^';
1829 *p++ = '?';
1830 }
1831 else
1832 *p++ = c;
1833 return p;
1834}
1835
21a0d7a0
RS
1836/* This function cannot GC. */
1837
2c6f1a39 1838DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
88539837 1839 "Return a pretty description of file-character CHARACTER.\n\
2c6f1a39 1840Control characters turn into \"^char\", etc.")
88539837
EN
1841 (character)
1842 Lisp_Object character;
2c6f1a39
JB
1843{
1844 char tem[6];
1845
88539837 1846 CHECK_NUMBER (character, 0);
2c6f1a39 1847
a98f1d1d
KH
1848 if (!SINGLE_BYTE_CHAR_P (XFASTINT (character)))
1849 {
69248761 1850 unsigned char *str;
a98f1d1d
KH
1851 int len = non_ascii_char_to_string (XFASTINT (character), tem, &str);
1852
f3ba5409 1853 return make_multibyte_string (str, 1, len);
a98f1d1d
KH
1854 }
1855
88539837 1856 *push_text_char_description (XINT (character) & 0377, tem) = 0;
2c6f1a39
JB
1857
1858 return build_string (tem);
1859}
2fc66973
JB
1860
1861/* Return non-zero if SEQ contains only ASCII characters, perhaps with
1862 a meta bit. */
1863static int
1864ascii_sequence_p (seq)
1865 Lisp_Object seq;
1866{
6e344130 1867 int i;
2fc66973 1868 int len = XINT (Flength (seq));
ffab2bd6 1869
6e344130 1870 for (i = 0; i < len; i++)
2fc66973 1871 {
6e344130 1872 Lisp_Object ii, elt;
ffab2bd6 1873
6e344130
KH
1874 XSETFASTINT (ii, i);
1875 elt = Faref (seq, ii);
2fc66973 1876
416349ec 1877 if (!INTEGERP (elt)
2fc66973
JB
1878 || (XUINT (elt) & ~CHAR_META) >= 0x80)
1879 return 0;
1880 }
1881
1882 return 1;
1883}
1884
2c6f1a39 1885\f
cc0a8174
JB
1886/* where-is - finding a command in a set of keymaps. */
1887
0403641f 1888static Lisp_Object where_is_internal_1 ();
69248761 1889static void where_is_internal_2 ();
0403641f 1890
21a0d7a0
RS
1891/* This function can GC if Flookup_key autoloads any keymaps. */
1892
f0148b5e
RS
1893DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 4, 0,
1894 "Return list of keys that invoke DEFINITION.\n\
1895If KEYMAP is non-nil, search only KEYMAP and the global keymap.\n\
1896If KEYMAP is nil, search all the currently active keymaps.\n\
2c6f1a39 1897\n\
f0148b5e 1898If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,\n\
b8d584f6 1899rather than a list of all possible key sequences.\n\
0bc395d4
RS
1900If FIRSTONLY is the symbol `non-ascii', return the first binding found,\n\
1901no matter what it is.\n\
d7ec5fa2 1902If FIRSTONLY has another non-nil value, prefer sequences of ASCII characters,\n\
0bc395d4 1903and entirely reject menu bindings.\n\
2c6f1a39 1904\n\
f0148b5e 1905If optional 4th arg NOINDIRECT is non-nil, don't follow indirections\n\
2c6f1a39
JB
1906to other keymaps or slots. This makes it possible to search for an\n\
1907indirect definition itself.")
f0148b5e
RS
1908 (definition, keymap, firstonly, noindirect)
1909 Lisp_Object definition, keymap;
2c6f1a39
JB
1910 Lisp_Object firstonly, noindirect;
1911{
21a0d7a0 1912 Lisp_Object maps;
0403641f 1913 Lisp_Object found, sequences;
60b06e5e 1914 Lisp_Object keymap1;
f0148b5e 1915 int keymap_specified = !NILP (keymap);
21a0d7a0 1916 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
0bc395d4
RS
1917 /* 1 means ignore all menu bindings entirely. */
1918 int nomenus = !NILP (firstonly) && !EQ (firstonly, Qnon_ascii);
2c6f1a39 1919
60b06e5e
KH
1920 /* Find keymaps accessible from `keymap' or the current
1921 context. But don't muck with the value of `keymap',
1922 because `where_is_internal_1' uses it to check for
1923 shadowed bindings. */
1924 keymap1 = keymap;
f0148b5e
RS
1925 if (! keymap_specified)
1926 {
1927#ifdef USE_TEXT_PROPERTIES
60b06e5e 1928 keymap1 = get_local_map (PT, current_buffer);
f0148b5e 1929#else
60b06e5e 1930 keymap1 = current_buffer->keymap;
f0148b5e
RS
1931#endif
1932 }
60b06e5e
KH
1933
1934 if (!NILP (keymap1))
1935 maps = nconc2 (Faccessible_keymaps (get_keymap (keymap1), Qnil),
f0148b5e
RS
1936 Faccessible_keymaps (get_keymap (current_global_map),
1937 Qnil));
2c6f1a39 1938 else
f0148b5e
RS
1939 maps = Faccessible_keymaps (get_keymap (current_global_map), Qnil);
1940
1941 /* Put the minor mode keymaps on the front. */
1942 if (! keymap_specified)
1943 {
1944 Lisp_Object minors;
1945 minors = Fnreverse (Fcurrent_minor_mode_maps ());
1946 while (!NILP (minors))
1947 {
1948 maps = nconc2 (Faccessible_keymaps (get_keymap (XCONS (minors)->car),
1949 Qnil),
1950 maps);
1951 minors = XCONS (minors)->cdr;
1952 }
1953 }
2c6f1a39 1954
0403641f 1955 GCPRO5 (definition, keymap, maps, found, sequences);
2c6f1a39 1956 found = Qnil;
0403641f 1957 sequences = Qnil;
2c6f1a39 1958
265a9e55 1959 for (; !NILP (maps); maps = Fcdr (maps))
2c6f1a39 1960 {
e9b6dfb0
KH
1961 /* Key sequence to reach map, and the map that it reaches */
1962 register Lisp_Object this, map;
f5b79c1c 1963
2c6f1a39
JB
1964 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
1965 [M-CHAR] sequences, check if last character of the sequence
1966 is the meta-prefix char. */
e9b6dfb0
KH
1967 Lisp_Object last;
1968 int last_is_meta;
1969
1970 this = Fcar (Fcar (maps));
1971 map = Fcdr (Fcar (maps));
1972 last = make_number (XINT (Flength (this)) - 1);
1973 last_is_meta = (XINT (last) >= 0
1974 && EQ (Faref (this, last), meta_prefix_char));
2c6f1a39 1975
fde3a52f
JB
1976 QUIT;
1977
f5b79c1c 1978 while (CONSP (map))
2c6f1a39 1979 {
f5b79c1c
JB
1980 /* Because the code we want to run on each binding is rather
1981 large, we don't want to have two separate loop bodies for
1982 sparse keymap bindings and tables; we want to iterate one
1983 loop body over both keymap and vector bindings.
1984
1985 For this reason, if Fcar (map) is a vector, we don't
1986 advance map to the next element until i indicates that we
1987 have finished off the vector. */
21a0d7a0 1988 Lisp_Object elt, key, binding;
e9b6dfb0 1989 elt = XCONS (map)->car;
0403641f
RS
1990 map = XCONS (map)->cdr;
1991
1992 sequences = Qnil;
f5b79c1c 1993
fde3a52f
JB
1994 QUIT;
1995
f5b79c1c
JB
1996 /* Set key and binding to the current key and binding, and
1997 advance map and i to the next binding. */
416349ec 1998 if (VECTORP (elt))
2c6f1a39 1999 {
0403641f
RS
2000 Lisp_Object sequence;
2001 int i;
2c6f1a39 2002 /* In a vector, look at each element. */
0403641f 2003 for (i = 0; i < XVECTOR (elt)->size; i++)
2c6f1a39 2004 {
0403641f
RS
2005 binding = XVECTOR (elt)->contents[i];
2006 XSETFASTINT (key, i);
2007 sequence = where_is_internal_1 (binding, key, definition,
2008 noindirect, keymap, this,
2009 last, nomenus, last_is_meta);
2010 if (!NILP (sequence))
2011 sequences = Fcons (sequence, sequences);
2c6f1a39 2012 }
f5b79c1c 2013 }
0403641f 2014 else if (CHAR_TABLE_P (elt))
f5b79c1c 2015 {
23cf1efa 2016 Lisp_Object indices[3];
0403641f 2017 Lisp_Object args;
23cf1efa 2018
0403641f
RS
2019 args = Fcons (Fcons (Fcons (definition, noindirect),
2020 Fcons (keymap, Qnil)),
2021 Fcons (Fcons (this, last),
2022 Fcons (make_number (nomenus),
2023 make_number (last_is_meta))));
2024
2025 map_char_table (where_is_internal_2, Qnil, elt, args,
2026 0, indices);
2027 sequences = XCONS (XCONS (XCONS (args)->car)->cdr)->cdr;
2c6f1a39 2028 }
0403641f 2029 else if (CONSP (elt))
fde3a52f 2030 {
0403641f 2031 Lisp_Object sequence;
2c6f1a39 2032
0403641f
RS
2033 key = XCONS (elt)->car;
2034 binding = XCONS (elt)->cdr;
2c6f1a39 2035
0403641f
RS
2036 sequence = where_is_internal_1 (binding, key, definition,
2037 noindirect, keymap, this,
2038 last, nomenus, last_is_meta);
2039 if (!NILP (sequence))
2040 sequences = Fcons (sequence, sequences);
2c6f1a39 2041 }
2c6f1a39 2042
2c6f1a39 2043
0403641f 2044 for (; ! NILP (sequences); sequences = XCONS (sequences)->cdr)
2c6f1a39 2045 {
0403641f
RS
2046 Lisp_Object sequence;
2047
2048 sequence = XCONS (sequences)->car;
2049
2050 /* It is a true unshadowed match. Record it, unless it's already
2051 been seen (as could happen when inheriting keymaps). */
2052 if (NILP (Fmember (sequence, found)))
2053 found = Fcons (sequence, found);
2054
2055 /* If firstonly is Qnon_ascii, then we can return the first
2056 binding we find. If firstonly is not Qnon_ascii but not
2057 nil, then we should return the first ascii-only binding
2058 we find. */
2059 if (EQ (firstonly, Qnon_ascii))
2060 RETURN_UNGCPRO (sequence);
2061 else if (! NILP (firstonly) && ascii_sequence_p (sequence))
2062 RETURN_UNGCPRO (sequence);
2c6f1a39 2063 }
2c6f1a39
JB
2064 }
2065 }
2fc66973 2066
21a0d7a0
RS
2067 UNGCPRO;
2068
2fc66973
JB
2069 found = Fnreverse (found);
2070
2071 /* firstonly may have been t, but we may have gone all the way through
2072 the keymaps without finding an all-ASCII key sequence. So just
2073 return the best we could find. */
2074 if (! NILP (firstonly))
2075 return Fcar (found);
2076
2077 return found;
2c6f1a39 2078}
0403641f
RS
2079
2080/* This is the function that Fwhere_is_internal calls using map_char_table.
2081 ARGS has the form
2082 (((DEFINITION . NOINDIRECT) . (KEYMAP . RESULT))
2083 .
2084 ((THIS . LAST) . (NOMENUS . LAST_IS_META)))
2085 Since map_char_table doesn't really use the return value from this function,
2086 we the result append to RESULT, the slot in ARGS. */
2087
69248761 2088static void
0403641f
RS
2089where_is_internal_2 (args, key, binding)
2090 Lisp_Object args, key, binding;
2091{
2092 Lisp_Object definition, noindirect, keymap, this, last;
2093 Lisp_Object result, sequence;
2094 int nomenus, last_is_meta;
2095
2096 result = XCONS (XCONS (XCONS (args)->car)->cdr)->cdr;
2097 definition = XCONS (XCONS (XCONS (args)->car)->car)->car;
2098 noindirect = XCONS (XCONS (XCONS (args)->car)->car)->cdr;
2099 keymap = XCONS (XCONS (XCONS (args)->car)->cdr)->car;
2100 this = XCONS (XCONS (XCONS (args)->cdr)->car)->car;
2101 last = XCONS (XCONS (XCONS (args)->cdr)->car)->cdr;
2102 nomenus = XFASTINT (XCONS (XCONS (XCONS (args)->cdr)->cdr)->car);
2103 last_is_meta = XFASTINT (XCONS (XCONS (XCONS (args)->cdr)->cdr)->cdr);
2104
2105 sequence = where_is_internal_1 (binding, key, definition, noindirect, keymap,
2106 this, last, nomenus, last_is_meta);
2107
2108 if (!NILP (sequence))
2109 XCONS (XCONS (XCONS (args)->car)->cdr)->cdr
2110 = Fcons (sequence, result);
0403641f
RS
2111}
2112
2113static Lisp_Object
2114where_is_internal_1 (binding, key, definition, noindirect, keymap, this, last,
2115 nomenus, last_is_meta)
2116 Lisp_Object binding, key, definition, noindirect, keymap, this, last;
2117 int nomenus, last_is_meta;
2118{
2119 Lisp_Object sequence;
2120 int keymap_specified = !NILP (keymap);
2121
2122 /* Search through indirections unless that's not wanted. */
2123 if (NILP (noindirect))
2124 {
2125 if (nomenus)
2126 {
2127 while (1)
2128 {
2129 Lisp_Object map, tem;
2130 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
2131 map = get_keymap_1 (Fcar_safe (definition), 0, 0);
2132 tem = Fkeymapp (map);
2133 if (!NILP (tem))
2134 definition = access_keymap (map, Fcdr (definition), 0, 0);
2135 else
2136 break;
2137 }
2138 /* If the contents are (STRING ...), reject. */
2139 if (CONSP (definition)
2140 && STRINGP (XCONS (definition)->car))
2141 return Qnil;
2142 }
2143 else
2144 binding = get_keyelt (binding, 0);
2145 }
2146
2147 /* End this iteration if this element does not match
2148 the target. */
2149
2150 if (CONSP (definition))
2151 {
2152 Lisp_Object tem;
2153 tem = Fequal (binding, definition);
2154 if (NILP (tem))
2155 return Qnil;
2156 }
2157 else
2158 if (!EQ (binding, definition))
2159 return Qnil;
2160
2161 /* We have found a match.
2162 Construct the key sequence where we found it. */
2163 if (INTEGERP (key) && last_is_meta)
2164 {
2165 sequence = Fcopy_sequence (this);
2166 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
2167 }
2168 else
2169 sequence = append_key (this, key);
2170
2171 /* Verify that this key binding is not shadowed by another
2172 binding for the same key, before we say it exists.
2173
2174 Mechanism: look for local definition of this key and if
2175 it is defined and does not match what we found then
2176 ignore this key.
2177
2178 Either nil or number as value from Flookup_key
2179 means undefined. */
2180 if (keymap_specified)
2181 {
2182 binding = Flookup_key (keymap, sequence, Qnil);
2183 if (!NILP (binding) && !INTEGERP (binding))
2184 {
2185 if (CONSP (definition))
2186 {
2187 Lisp_Object tem;
2188 tem = Fequal (binding, definition);
2189 if (NILP (tem))
2190 return Qnil;
2191 }
2192 else
2193 if (!EQ (binding, definition))
2194 return Qnil;
2195 }
2196 }
2197 else
2198 {
2199 binding = Fkey_binding (sequence, Qnil);
2200 if (!EQ (binding, definition))
2201 return Qnil;
2202 }
2203
2204 return sequence;
2205}
2c6f1a39 2206\f
cc0a8174
JB
2207/* describe-bindings - summarizing all the bindings in a set of keymaps. */
2208
53c8f9fa 2209DEFUN ("describe-bindings", Fdescribe_bindings, Sdescribe_bindings, 0, 1, "",
2c6f1a39 2210 "Show a list of all defined keys, and their definitions.\n\
53c8f9fa
RS
2211The list is put in a buffer, which is displayed.\n\
2212An optional argument PREFIX, if non-nil, should be a key sequence;\n\
2213then we display only bindings that start with that prefix.")
2214 (prefix)
2215 Lisp_Object prefix;
2c6f1a39
JB
2216{
2217 register Lisp_Object thisbuf;
bff4ec1f 2218 XSETBUFFER (thisbuf, current_buffer);
2c6f1a39
JB
2219 internal_with_output_to_temp_buffer ("*Help*",
2220 describe_buffer_bindings,
53c8f9fa 2221 Fcons (thisbuf, prefix));
2c6f1a39
JB
2222 return Qnil;
2223}
2224
53c8f9fa
RS
2225/* ARG is (BUFFER . PREFIX). */
2226
2c6f1a39 2227static Lisp_Object
53c8f9fa
RS
2228describe_buffer_bindings (arg)
2229 Lisp_Object arg;
2c6f1a39 2230{
53c8f9fa 2231 Lisp_Object descbuf, prefix, shadow;
d7ab90a9
KH
2232 register Lisp_Object start1;
2233 struct gcpro gcpro1;
2c6f1a39 2234
4726a9f1
JB
2235 char *alternate_heading
2236 = "\
2237Alternate Characters (use anywhere the nominal character is listed):\n\
2238nominal alternate\n\
2239------- ---------\n";
2c6f1a39 2240
53c8f9fa
RS
2241 descbuf = XCONS (arg)->car;
2242 prefix = XCONS (arg)->cdr;
a588e041 2243 shadow = Qnil;
d7ab90a9 2244 GCPRO1 (shadow);
53c8f9fa 2245
2c6f1a39
JB
2246 Fset_buffer (Vstandard_output);
2247
4726a9f1 2248 /* Report on alternates for keys. */
d7bf9bf5 2249 if (STRINGP (Vkeyboard_translate_table) && !NILP (prefix))
4726a9f1
JB
2250 {
2251 int c;
2252 unsigned char *translate = XSTRING (Vkeyboard_translate_table)->data;
2253 int translate_len = XSTRING (Vkeyboard_translate_table)->size;
2254
2255 for (c = 0; c < translate_len; c++)
2256 if (translate[c] != c)
2257 {
2258 char buf[20];
2259 char *bufend;
2260
2261 if (alternate_heading)
2262 {
2263 insert_string (alternate_heading);
2264 alternate_heading = 0;
2265 }
2266
2267 bufend = push_key_description (translate[c], buf);
2268 insert (buf, bufend - buf);
2269 Findent_to (make_number (16), make_number (1));
2270 bufend = push_key_description (c, buf);
2271 insert (buf, bufend - buf);
2272
2273 insert ("\n", 1);
2274 }
2275
2276 insert ("\n", 1);
2277 }
2278
d7bf9bf5
RS
2279 if (!NILP (Vkey_translation_map))
2280 describe_map_tree (Vkey_translation_map, 0, Qnil, prefix,
c2b714de 2281 "Key translations", 0, 1, 0);
d7bf9bf5 2282
cc0a8174
JB
2283 {
2284 int i, nmaps;
2285 Lisp_Object *modes, *maps;
2286
4726a9f1
JB
2287 /* Temporarily switch to descbuf, so that we can get that buffer's
2288 minor modes correctly. */
2289 Fset_buffer (descbuf);
d7bf9bf5 2290
e784236d
KH
2291 if (!NILP (current_kboard->Voverriding_terminal_local_map)
2292 || !NILP (Voverriding_local_map))
7d92e329
RS
2293 nmaps = 0;
2294 else
2295 nmaps = current_minor_maps (&modes, &maps);
4726a9f1
JB
2296 Fset_buffer (Vstandard_output);
2297
53c8f9fa 2298 /* Print the minor mode maps. */
cc0a8174
JB
2299 for (i = 0; i < nmaps; i++)
2300 {
c9b7c53a 2301 /* The title for a minor mode keymap
07f15dfd
RS
2302 is constructed at run time.
2303 We let describe_map_tree do the actual insertion
2304 because it takes care of other features when doing so. */
c9b7c53a 2305 char *title, *p;
07f15dfd 2306
416349ec 2307 if (!SYMBOLP (modes[i]))
d7ab90a9
KH
2308 abort();
2309
2310 p = title = (char *) alloca (40 + XSYMBOL (modes[i])->name->size);
2311 *p++ = '`';
2312 bcopy (XSYMBOL (modes[i])->name->data, p,
2313 XSYMBOL (modes[i])->name->size);
2314 p += XSYMBOL (modes[i])->name->size;
2315 *p++ = '\'';
c9b7c53a
KH
2316 bcopy (" Minor Mode Bindings", p, sizeof (" Minor Mode Bindings") - 1);
2317 p += sizeof (" Minor Mode Bindings") - 1;
07f15dfd
RS
2318 *p = 0;
2319
91f64ec2 2320 describe_map_tree (maps[i], 1, shadow, prefix, title, 0, 0, 0);
53c8f9fa 2321 shadow = Fcons (maps[i], shadow);
cc0a8174
JB
2322 }
2323 }
2324
53c8f9fa 2325 /* Print the (major mode) local map. */
e784236d
KH
2326 if (!NILP (current_kboard->Voverriding_terminal_local_map))
2327 start1 = current_kboard->Voverriding_terminal_local_map;
2328 else if (!NILP (Voverriding_local_map))
7d92e329
RS
2329 start1 = Voverriding_local_map;
2330 else
2331 start1 = XBUFFER (descbuf)->keymap;
2332
265a9e55 2333 if (!NILP (start1))
2c6f1a39 2334 {
91f64ec2 2335 describe_map_tree (start1, 1, shadow, prefix,
c2b714de 2336 "Major Mode Bindings", 0, 0, 0);
53c8f9fa 2337 shadow = Fcons (start1, shadow);
2c6f1a39
JB
2338 }
2339
91f64ec2 2340 describe_map_tree (current_global_map, 1, shadow, prefix,
c2b714de 2341 "Global Bindings", 0, 0, 1);
d7bf9bf5
RS
2342
2343 /* Print the function-key-map translations under this prefix. */
2344 if (!NILP (Vfunction_key_map))
2345 describe_map_tree (Vfunction_key_map, 0, Qnil, prefix,
c2b714de 2346 "Function key map translations", 0, 1, 0);
2c6f1a39 2347
04befa07 2348 call0 (intern ("help-mode"));
2c6f1a39 2349 Fset_buffer (descbuf);
d7ab90a9 2350 UNGCPRO;
2c6f1a39
JB
2351 return Qnil;
2352}
2353
b31a4218 2354/* Insert a description of the key bindings in STARTMAP,
2c6f1a39
JB
2355 followed by those of all maps reachable through STARTMAP.
2356 If PARTIAL is nonzero, omit certain "uninteresting" commands
2357 (such as `undefined').
53c8f9fa
RS
2358 If SHADOW is non-nil, it is a list of maps;
2359 don't mention keys which would be shadowed by any of them.
2360 PREFIX, if non-nil, says mention only keys that start with PREFIX.
07f15dfd 2361 TITLE, if not 0, is a string to insert at the beginning.
af1d6f09 2362 TITLE should not end with a colon or a newline; we supply that.
d7bf9bf5
RS
2363 If NOMENU is not 0, then omit menu-bar commands.
2364
2365 If TRANSL is nonzero, the definitions are actually key translations
c2b714de
RS
2366 so print strings and vectors differently.
2367
2368 If ALWAYS_TITLE is nonzero, print the title even if there are no maps
2369 to look through. */
2c6f1a39
JB
2370
2371void
c2b714de
RS
2372describe_map_tree (startmap, partial, shadow, prefix, title, nomenu, transl,
2373 always_title)
53c8f9fa 2374 Lisp_Object startmap, shadow, prefix;
2c6f1a39 2375 int partial;
53c8f9fa 2376 char *title;
af1d6f09 2377 int nomenu;
d7bf9bf5 2378 int transl;
c2b714de 2379 int always_title;
2c6f1a39 2380{
e3dfcd4e
KH
2381 Lisp_Object maps, seen, sub_shadows;
2382 struct gcpro gcpro1, gcpro2, gcpro3;
07f15dfd 2383 int something = 0;
53c8f9fa
RS
2384 char *key_heading
2385 = "\
2386key binding\n\
2387--- -------\n";
2c6f1a39 2388
53c8f9fa 2389 maps = Faccessible_keymaps (startmap, prefix);
925083d1 2390 seen = Qnil;
e3dfcd4e
KH
2391 sub_shadows = Qnil;
2392 GCPRO3 (maps, seen, sub_shadows);
2c6f1a39 2393
af1d6f09
RS
2394 if (nomenu)
2395 {
2396 Lisp_Object list;
2397
2398 /* Delete from MAPS each element that is for the menu bar. */
2399 for (list = maps; !NILP (list); list = XCONS (list)->cdr)
2400 {
2401 Lisp_Object elt, prefix, tem;
2402
2403 elt = Fcar (list);
2404 prefix = Fcar (elt);
2405 if (XVECTOR (prefix)->size >= 1)
2406 {
2407 tem = Faref (prefix, make_number (0));
2408 if (EQ (tem, Qmenu_bar))
2409 maps = Fdelq (elt, maps);
2410 }
2411 }
2412 }
2413
c2b714de 2414 if (!NILP (maps) || always_title)
53c8f9fa
RS
2415 {
2416 if (title)
07f15dfd
RS
2417 {
2418 insert_string (title);
2419 if (!NILP (prefix))
2420 {
2421 insert_string (" Starting With ");
2422 insert1 (Fkey_description (prefix));
2423 }
2424 insert_string (":\n");
2425 }
53c8f9fa 2426 insert_string (key_heading);
07f15dfd 2427 something = 1;
53c8f9fa
RS
2428 }
2429
265a9e55 2430 for (; !NILP (maps); maps = Fcdr (maps))
2c6f1a39 2431 {
e3dfcd4e 2432 register Lisp_Object elt, prefix, tail;
53c8f9fa 2433
2c6f1a39 2434 elt = Fcar (maps);
53c8f9fa
RS
2435 prefix = Fcar (elt);
2436
2437 sub_shadows = Qnil;
2438
2439 for (tail = shadow; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 2440 {
53c8f9fa
RS
2441 Lisp_Object shmap;
2442
2443 shmap = XCONS (tail)->car;
2444
2445 /* If the sequence by which we reach this keymap is zero-length,
2446 then the shadow map for this keymap is just SHADOW. */
416349ec
KH
2447 if ((STRINGP (prefix) && XSTRING (prefix)->size == 0)
2448 || (VECTORP (prefix) && XVECTOR (prefix)->size == 0))
53c8f9fa
RS
2449 ;
2450 /* If the sequence by which we reach this keymap actually has
2451 some elements, then the sequence's definition in SHADOW is
2452 what we should use. */
2453 else
2454 {
98234407 2455 shmap = Flookup_key (shmap, Fcar (elt), Qt);
416349ec 2456 if (INTEGERP (shmap))
53c8f9fa
RS
2457 shmap = Qnil;
2458 }
2459
2460 /* If shmap is not nil and not a keymap,
2461 it completely shadows this map, so don't
2462 describe this map at all. */
2463 if (!NILP (shmap) && NILP (Fkeymapp (shmap)))
2464 goto skip;
2465
2466 if (!NILP (shmap))
2467 sub_shadows = Fcons (shmap, sub_shadows);
2c6f1a39
JB
2468 }
2469
d7bf9bf5
RS
2470 describe_map (Fcdr (elt), Fcar (elt),
2471 transl ? describe_translation : describe_command,
279a482a 2472 partial, sub_shadows, &seen, nomenu);
53c8f9fa
RS
2473
2474 skip: ;
2c6f1a39
JB
2475 }
2476
07f15dfd
RS
2477 if (something)
2478 insert_string ("\n");
2479
2c6f1a39
JB
2480 UNGCPRO;
2481}
2482
c3f27064
KH
2483static int previous_description_column;
2484
2c6f1a39
JB
2485static void
2486describe_command (definition)
2487 Lisp_Object definition;
2488{
2489 register Lisp_Object tem1;
c3f27064
KH
2490 int column = current_column ();
2491 int description_column;
2c6f1a39 2492
c3f27064
KH
2493 /* If column 16 is no good, go to col 32;
2494 but don't push beyond that--go to next line instead. */
2495 if (column > 30)
2496 {
2497 insert_char ('\n');
2498 description_column = 32;
2499 }
2500 else if (column > 14 || (column > 10 && previous_description_column == 32))
2501 description_column = 32;
2502 else
2503 description_column = 16;
2504
2505 Findent_to (make_number (description_column), make_number (1));
2506 previous_description_column = description_column;
2c6f1a39 2507
416349ec 2508 if (SYMBOLP (definition))
2c6f1a39 2509 {
bff4ec1f 2510 XSETSTRING (tem1, XSYMBOL (definition)->name);
2c6f1a39
JB
2511 insert1 (tem1);
2512 insert_string ("\n");
2513 }
d7bf9bf5 2514 else if (STRINGP (definition) || VECTORP (definition))
24065b9c 2515 insert_string ("Keyboard Macro\n");
2c6f1a39
JB
2516 else
2517 {
2518 tem1 = Fkeymapp (definition);
265a9e55 2519 if (!NILP (tem1))
2c6f1a39
JB
2520 insert_string ("Prefix Command\n");
2521 else
2522 insert_string ("??\n");
2523 }
2524}
2525
d7bf9bf5
RS
2526static void
2527describe_translation (definition)
2528 Lisp_Object definition;
2529{
2530 register Lisp_Object tem1;
2531
2532 Findent_to (make_number (16), make_number (1));
2533
2534 if (SYMBOLP (definition))
2535 {
2536 XSETSTRING (tem1, XSYMBOL (definition)->name);
2537 insert1 (tem1);
2538 insert_string ("\n");
2539 }
2540 else if (STRINGP (definition) || VECTORP (definition))
b902ac28
RS
2541 {
2542 insert1 (Fkey_description (definition));
2543 insert_string ("\n");
2544 }
d7bf9bf5
RS
2545 else
2546 {
2547 tem1 = Fkeymapp (definition);
2548 if (!NILP (tem1))
2549 insert_string ("Prefix Command\n");
2550 else
2551 insert_string ("??\n");
2552 }
2553}
2554
53c8f9fa
RS
2555/* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2556 Returns the first non-nil binding found in any of those maps. */
2557
2558static Lisp_Object
2559shadow_lookup (shadow, key, flag)
2560 Lisp_Object shadow, key, flag;
2561{
2562 Lisp_Object tail, value;
2563
2564 for (tail = shadow; CONSP (tail); tail = XCONS (tail)->cdr)
2565 {
2566 value = Flookup_key (XCONS (tail)->car, key, flag);
2567 if (!NILP (value))
2568 return value;
2569 }
2570 return Qnil;
2571}
2572
c3c0ee93
KH
2573/* Describe the contents of map MAP, assuming that this map itself is
2574 reached by the sequence of prefix keys KEYS (a string or vector).
279a482a 2575 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
2c6f1a39
JB
2576
2577static void
279a482a 2578describe_map (map, keys, elt_describer, partial, shadow, seen, nomenu)
c3c0ee93
KH
2579 register Lisp_Object map;
2580 Lisp_Object keys;
6e068770 2581 void (*elt_describer) P_ ((Lisp_Object));
2c6f1a39
JB
2582 int partial;
2583 Lisp_Object shadow;
925083d1 2584 Lisp_Object *seen;
279a482a 2585 int nomenu;
2c6f1a39 2586{
c3c0ee93 2587 Lisp_Object elt_prefix;
53c8f9fa 2588 Lisp_Object tail, definition, event;
99a225a9 2589 Lisp_Object tem;
2c6f1a39
JB
2590 Lisp_Object suppress;
2591 Lisp_Object kludge;
2592 int first = 1;
2593 struct gcpro gcpro1, gcpro2, gcpro3;
2594
c3c0ee93
KH
2595 if (!NILP (keys) && XFASTINT (Flength (keys)) > 0)
2596 {
c3c0ee93
KH
2597 /* Call Fkey_description first, to avoid GC bug for the other string. */
2598 tem = Fkey_description (keys);
2599 elt_prefix = concat2 (tem, build_string (" "));
2600 }
2601 else
2602 elt_prefix = Qnil;
2603
2c6f1a39
JB
2604 if (partial)
2605 suppress = intern ("suppress-keymap");
2606
2607 /* This vector gets used to present single keys to Flookup_key. Since
f5b79c1c 2608 that is done once per keymap element, we don't want to cons up a
2c6f1a39
JB
2609 fresh vector every time. */
2610 kludge = Fmake_vector (make_number (1), Qnil);
99a225a9 2611 definition = Qnil;
2c6f1a39 2612
99a225a9 2613 GCPRO3 (elt_prefix, definition, kludge);
2c6f1a39 2614
925083d1 2615 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39
JB
2616 {
2617 QUIT;
2c6f1a39 2618
0403641f
RS
2619 if (VECTORP (XCONS (tail)->car)
2620 || CHAR_TABLE_P (XCONS (tail)->car))
53c8f9fa 2621 describe_vector (XCONS (tail)->car,
0403641f
RS
2622 elt_prefix, elt_describer, partial, shadow, map,
2623 (int *)0, 0);
925083d1 2624 else if (CONSP (XCONS (tail)->car))
2c6f1a39 2625 {
925083d1 2626 event = XCONS (XCONS (tail)->car)->car;
2c3b35b0
RS
2627
2628 /* Ignore bindings whose "keys" are not really valid events.
2629 (We get these in the frames and buffers menu.) */
2630 if (! (SYMBOLP (event) || INTEGERP (event)))
c96dcc01 2631 continue;
2c3b35b0 2632
279a482a
KH
2633 if (nomenu && EQ (event, Qmenu_bar))
2634 continue;
2635
925083d1 2636 definition = get_keyelt (XCONS (XCONS (tail)->car)->cdr, 0);
2c6f1a39 2637
f5b79c1c 2638 /* Don't show undefined commands or suppressed commands. */
99a225a9 2639 if (NILP (definition)) continue;
416349ec 2640 if (SYMBOLP (definition) && partial)
f5b79c1c 2641 {
99a225a9
RS
2642 tem = Fget (definition, suppress);
2643 if (!NILP (tem))
f5b79c1c
JB
2644 continue;
2645 }
2c6f1a39 2646
f5b79c1c
JB
2647 /* Don't show a command that isn't really visible
2648 because a local definition of the same key shadows it. */
2c6f1a39 2649
99a225a9 2650 XVECTOR (kludge)->contents[0] = event;
f5b79c1c
JB
2651 if (!NILP (shadow))
2652 {
53c8f9fa 2653 tem = shadow_lookup (shadow, kludge, Qt);
f5b79c1c
JB
2654 if (!NILP (tem)) continue;
2655 }
2656
c3c0ee93 2657 tem = Flookup_key (map, kludge, Qt);
99a225a9
RS
2658 if (! EQ (tem, definition)) continue;
2659
f5b79c1c
JB
2660 if (first)
2661 {
c3f27064 2662 previous_description_column = 0;
f5b79c1c
JB
2663 insert ("\n", 1);
2664 first = 0;
2665 }
2c6f1a39 2666
f5b79c1c
JB
2667 if (!NILP (elt_prefix))
2668 insert1 (elt_prefix);
2c6f1a39 2669
99a225a9
RS
2670 /* THIS gets the string to describe the character EVENT. */
2671 insert1 (Fsingle_key_description (event));
2c6f1a39 2672
f5b79c1c
JB
2673 /* Print a description of the definition of this character.
2674 elt_describer will take care of spacing out far enough
2675 for alignment purposes. */
99a225a9 2676 (*elt_describer) (definition);
f5b79c1c 2677 }
925083d1
KH
2678 else if (EQ (XCONS (tail)->car, Qkeymap))
2679 {
2680 /* The same keymap might be in the structure twice, if we're
2681 using an inherited keymap. So skip anything we've already
2682 encountered. */
2683 tem = Fassq (tail, *seen);
b5b90d18 2684 if (CONSP (tem) && !NILP (Fequal (XCONS (tem)->car, keys)))
925083d1
KH
2685 break;
2686 *seen = Fcons (Fcons (tail, keys), *seen);
2687 }
2c6f1a39
JB
2688 }
2689
2690 UNGCPRO;
2691}
2692
69248761 2693static void
2c6f1a39
JB
2694describe_vector_princ (elt)
2695 Lisp_Object elt;
2696{
81fa9e2f 2697 Findent_to (make_number (16), make_number (1));
2c6f1a39 2698 Fprinc (elt, Qnil);
ad4ec84a 2699 Fterpri (Qnil);
2c6f1a39
JB
2700}
2701
2702DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 1, 0,
ad4ec84a 2703 "Insert a description of contents of VECTOR.\n\
2c6f1a39
JB
2704This is text showing the elements of vector matched against indices.")
2705 (vector)
2706 Lisp_Object vector;
2707{
ad4ec84a
RS
2708 int count = specpdl_ptr - specpdl;
2709
2710 specbind (Qstandard_output, Fcurrent_buffer ());
352e5dea 2711 CHECK_VECTOR_OR_CHAR_TABLE (vector, 0);
0403641f
RS
2712 describe_vector (vector, Qnil, describe_vector_princ, 0,
2713 Qnil, Qnil, (int *)0, 0);
ad4ec84a
RS
2714
2715 return unbind_to (count, Qnil);
2c6f1a39
JB
2716}
2717
352e5dea
RS
2718/* Insert in the current buffer a description of the contents of VECTOR.
2719 We call ELT_DESCRIBER to insert the description of one value found
2720 in VECTOR.
2721
2722 ELT_PREFIX describes what "comes before" the keys or indices defined
0403641f
RS
2723 by this vector. This is a human-readable string whose size
2724 is not necessarily related to the situation.
352e5dea
RS
2725
2726 If the vector is in a keymap, ELT_PREFIX is a prefix key which
2727 leads to this keymap.
2728
2729 If the vector is a chartable, ELT_PREFIX is the vector
2730 of bytes that lead to the character set or portion of a character
2731 set described by this chartable.
2732
2733 If PARTIAL is nonzero, it means do not mention suppressed commands
2734 (that assumes the vector is in a keymap).
2735
2736 SHADOW is a list of keymaps that shadow this map.
2737 If it is non-nil, then we look up the key in those maps
2738 and we don't mention it now if it is defined by any of them.
2739
2740 ENTIRE_MAP is the keymap in which this vector appears.
2741 If the definition in effect in the whole map does not match
0403641f
RS
2742 the one in this vector, we ignore this one.
2743
2744 When describing a sub-char-table, INDICES is a list of
2745 indices at higher levels in this char-table,
2746 and CHAR_TABLE_DEPTH says how many levels down we have gone. */
352e5dea 2747
71a956a6 2748void
32bfcae1 2749describe_vector (vector, elt_prefix, elt_describer,
0403641f
RS
2750 partial, shadow, entire_map,
2751 indices, char_table_depth)
2c6f1a39
JB
2752 register Lisp_Object vector;
2753 Lisp_Object elt_prefix;
69248761 2754 void (*elt_describer) P_ ((Lisp_Object));
2c6f1a39
JB
2755 int partial;
2756 Lisp_Object shadow;
32bfcae1 2757 Lisp_Object entire_map;
0403641f
RS
2758 int *indices;
2759 int char_table_depth;
2c6f1a39 2760{
32bfcae1
KH
2761 Lisp_Object definition;
2762 Lisp_Object tem2;
2c6f1a39
JB
2763 register int i;
2764 Lisp_Object suppress;
2765 Lisp_Object kludge;
2766 int first = 1;
352e5dea 2767 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
a98f1d1d
KH
2768 /* Range of elements to be handled. */
2769 int from, to;
a98f1d1d
KH
2770 /* A flag to tell if a leaf in this level of char-table is not a
2771 generic character (i.e. a complete multibyte character). */
2772 int complete_char;
0403641f
RS
2773 int character;
2774 int starting_i;
2775
2776 if (indices == 0)
2e34157c 2777 indices = (int *) alloca (3 * sizeof (int));
2c6f1a39 2778
32bfcae1 2779 definition = Qnil;
2c6f1a39
JB
2780
2781 /* This vector gets used to present single keys to Flookup_key. Since
2782 that is done once per vector element, we don't want to cons up a
2783 fresh vector every time. */
2784 kludge = Fmake_vector (make_number (1), Qnil);
0403641f 2785 GCPRO3 (elt_prefix, definition, kludge);
2c6f1a39
JB
2786
2787 if (partial)
2788 suppress = intern ("suppress-keymap");
2789
a98f1d1d
KH
2790 if (CHAR_TABLE_P (vector))
2791 {
0403641f 2792 if (char_table_depth == 0)
a98f1d1d 2793 {
a1942d88 2794 /* VECTOR is a top level char-table. */
0403641f 2795 complete_char = 1;
a98f1d1d
KH
2796 from = 0;
2797 to = CHAR_TABLE_ORDINARY_SLOTS;
2798 }
2799 else
2800 {
a1942d88 2801 /* VECTOR is a sub char-table. */
0403641f
RS
2802 if (char_table_depth >= 3)
2803 /* A char-table is never that deep. */
a1942d88 2804 error ("Too deep char table");
a98f1d1d 2805
a98f1d1d 2806 complete_char
0403641f
RS
2807 = (CHARSET_VALID_P (indices[0])
2808 && ((CHARSET_DIMENSION (indices[0]) == 1
2809 && char_table_depth == 1)
2810 || char_table_depth == 2));
a98f1d1d
KH
2811
2812 /* Meaningful elements are from 32th to 127th. */
2813 from = 32;
a1942d88 2814 to = SUB_CHAR_TABLE_ORDINARY_SLOTS;
a98f1d1d 2815 }
a98f1d1d
KH
2816 }
2817 else
2818 {
a98f1d1d 2819 /* This does the right thing for ordinary vectors. */
0403641f
RS
2820
2821 complete_char = 1;
2822 from = 0;
2823 to = XVECTOR (vector)->size;
a98f1d1d 2824 }
b5585f5c 2825
a98f1d1d 2826 for (i = from; i < to; i++)
2c6f1a39
JB
2827 {
2828 QUIT;
2c6f1a39 2829
a1942d88
KH
2830 if (CHAR_TABLE_P (vector))
2831 {
0403641f
RS
2832 if (char_table_depth == 0 && i >= CHAR_TABLE_SINGLE_BYTE_SLOTS)
2833 complete_char = 0;
2834
a1942d88
KH
2835 if (i >= CHAR_TABLE_SINGLE_BYTE_SLOTS
2836 && !CHARSET_DEFINED_P (i - 128))
2837 continue;
0403641f
RS
2838
2839 definition
2840 = get_keyelt (XCHAR_TABLE (vector)->contents[i], 0);
a1942d88
KH
2841 }
2842 else
2843 definition = get_keyelt (XVECTOR (vector)->contents[i], 0);
2c6f1a39 2844
cc3e6465
RS
2845 if (NILP (definition)) continue;
2846
2c6f1a39 2847 /* Don't mention suppressed commands. */
32bfcae1 2848 if (SYMBOLP (definition) && partial)
2c6f1a39 2849 {
a98f1d1d
KH
2850 Lisp_Object tem;
2851
2852 tem = Fget (definition, suppress);
2853
2854 if (!NILP (tem)) continue;
2c6f1a39
JB
2855 }
2856
0403641f
RS
2857 /* Set CHARACTER to the character this entry describes, if any.
2858 Also update *INDICES. */
2859 if (CHAR_TABLE_P (vector))
2860 {
2861 indices[char_table_depth] = i;
2862
2863 if (char_table_depth == 0)
2864 {
2865 character = i;
2866 indices[0] = i - 128;
2867 }
2868 else if (complete_char)
2869 {
2870 character
2871 = MAKE_NON_ASCII_CHAR (indices[0], indices[1], indices[2]);
2872 }
2873 else
2874 character = 0;
2875 }
2876 else
2877 character = i;
2878
32bfcae1 2879 /* If this binding is shadowed by some other map, ignore it. */
0403641f 2880 if (!NILP (shadow) && complete_char)
2c6f1a39
JB
2881 {
2882 Lisp_Object tem;
2883
0403641f 2884 XVECTOR (kludge)->contents[0] = make_number (character);
53c8f9fa 2885 tem = shadow_lookup (shadow, kludge, Qt);
2c6f1a39 2886
265a9e55 2887 if (!NILP (tem)) continue;
2c6f1a39
JB
2888 }
2889
32bfcae1
KH
2890 /* Ignore this definition if it is shadowed by an earlier
2891 one in the same keymap. */
0403641f 2892 if (!NILP (entire_map) && complete_char)
32bfcae1
KH
2893 {
2894 Lisp_Object tem;
2895
0403641f 2896 XVECTOR (kludge)->contents[0] = make_number (character);
32bfcae1
KH
2897 tem = Flookup_key (entire_map, kludge, Qt);
2898
2899 if (! EQ (tem, definition))
2900 continue;
2901 }
2902
2c6f1a39
JB
2903 if (first)
2904 {
0403641f 2905 if (char_table_depth == 0)
a98f1d1d 2906 insert ("\n", 1);
2c6f1a39
JB
2907 first = 0;
2908 }
2909
0403641f
RS
2910 /* For a sub char-table, show the depth by indentation.
2911 CHAR_TABLE_DEPTH can be greater than 0 only for a char-table. */
2912 if (char_table_depth > 0)
2913 insert (" ", char_table_depth * 2); /* depth is 1 or 2. */
a98f1d1d 2914
0403641f
RS
2915 /* Output the prefix that applies to every entry in this map. */
2916 if (!NILP (elt_prefix))
2917 insert1 (elt_prefix);
a98f1d1d 2918
0403641f
RS
2919 /* Insert or describe the character this slot is for,
2920 or a description of what it is for. */
2921 if (SUB_CHAR_TABLE_P (vector))
a1942d88 2922 {
0403641f
RS
2923 if (complete_char)
2924 insert_char (character);
2925 else
2926 {
2927 /* We need an octal representation for this block of
2928 characters. */
542d7fd2
RS
2929 char work[16];
2930 sprintf (work, "(row %d)", i);
2931 insert (work, strlen (work));
0403641f
RS
2932 }
2933 }
2934 else if (CHAR_TABLE_P (vector))
2935 {
2936 if (complete_char)
2937 insert1 (Fsingle_key_description (make_number (character)));
a1942d88
KH
2938 else
2939 {
2940 /* Print the information for this character set. */
2941 insert_string ("<");
2942 tem2 = CHARSET_TABLE_INFO (i - 128, CHARSET_SHORT_NAME_IDX);
2943 if (STRINGP (tem2))
f3ba5409
RS
2944 insert_from_string (tem2, 0, 0, XSTRING (tem2)->size,
2945 XSTRING (tem2)->size_byte, 0);
a1942d88
KH
2946 else
2947 insert ("?", 1);
2948 insert (">", 1);
2949 }
2950 }
352e5dea
RS
2951 else
2952 {
0403641f 2953 insert1 (Fsingle_key_description (make_number (character)));
a98f1d1d 2954 }
352e5dea 2955
a1942d88 2956 /* If we find a sub char-table within a char-table,
a98f1d1d
KH
2957 scan it recursively; it defines the details for
2958 a character set or a portion of a character set. */
f3ba5409 2959 if (CHAR_TABLE_P (vector) && SUB_CHAR_TABLE_P (definition))
a98f1d1d 2960 {
a98f1d1d 2961 insert ("\n", 1);
0403641f
RS
2962 describe_vector (definition, elt_prefix, elt_describer,
2963 partial, shadow, entire_map,
2964 indices, char_table_depth + 1);
a98f1d1d 2965 continue;
352e5dea 2966 }
2c6f1a39 2967
0403641f
RS
2968 starting_i = i;
2969
542d7fd2 2970 /* Find all consecutive characters or rows that have the same
a1942d88
KH
2971 definition. But, for elements of a top level char table, if
2972 they are for charsets, we had better describe one by one even
2973 if they have the same definition. */
2974 if (CHAR_TABLE_P (vector))
2975 {
0403641f
RS
2976 int limit = to;
2977
2978 if (char_table_depth == 0)
2979 limit = CHAR_TABLE_SINGLE_BYTE_SLOTS;
2980
2981 while (i + 1 < limit
2982 && (tem2 = get_keyelt (XCHAR_TABLE (vector)->contents[i + 1], 0),
2983 !NILP (tem2))
2984 && !NILP (Fequal (tem2, definition)))
2985 i++;
a1942d88
KH
2986 }
2987 else
0403641f 2988 while (i + 1 < to
a1942d88
KH
2989 && (tem2 = get_keyelt (XVECTOR (vector)->contents[i + 1], 0),
2990 !NILP (tem2))
2991 && !NILP (Fequal (tem2, definition)))
2992 i++;
2993
2c6f1a39
JB
2994
2995 /* If we have a range of more than one character,
2996 print where the range reaches to. */
2997
0403641f 2998 if (i != starting_i)
2c6f1a39
JB
2999 {
3000 insert (" .. ", 4);
0403641f
RS
3001
3002 if (!NILP (elt_prefix))
3003 insert1 (elt_prefix);
3004
352e5dea
RS
3005 if (CHAR_TABLE_P (vector))
3006 {
0403641f 3007 if (char_table_depth == 0)
a98f1d1d 3008 {
0403641f 3009 insert1 (Fsingle_key_description (make_number (i)));
a98f1d1d 3010 }
0403641f 3011 else if (complete_char)
352e5dea 3012 {
0403641f
RS
3013 indices[char_table_depth] = i;
3014 character
3015 = MAKE_NON_ASCII_CHAR (indices[0], indices[1], indices[2]);
3016 insert_char (character);
352e5dea
RS
3017 }
3018 else
3019 {
542d7fd2
RS
3020 /* We need an octal representation for this block of
3021 characters. */
3022 char work[16];
3023 sprintf (work, "(row %d)", i);
3024 insert (work, strlen (work));
352e5dea
RS
3025 }
3026 }
3027 else
3028 {
0403641f 3029 insert1 (Fsingle_key_description (make_number (i)));
352e5dea 3030 }
2c6f1a39
JB
3031 }
3032
3033 /* Print a description of the definition of this character.
3034 elt_describer will take care of spacing out far enough
3035 for alignment purposes. */
32bfcae1 3036 (*elt_describer) (definition);
2c6f1a39
JB
3037 }
3038
a1942d88 3039 /* For (sub) char-table, print `defalt' slot at last. */
a98f1d1d
KH
3040 if (CHAR_TABLE_P (vector) && !NILP (XCHAR_TABLE (vector)->defalt))
3041 {
0403641f 3042 insert (" ", char_table_depth * 2);
a98f1d1d
KH
3043 insert_string ("<<default>>");
3044 (*elt_describer) (XCHAR_TABLE (vector)->defalt);
3045 }
3046
2c6f1a39
JB
3047 UNGCPRO;
3048}
3049\f
cc0a8174 3050/* Apropos - finding all symbols whose names match a regexp. */
2c6f1a39
JB
3051Lisp_Object apropos_predicate;
3052Lisp_Object apropos_accumulate;
3053
3054static void
3055apropos_accum (symbol, string)
3056 Lisp_Object symbol, string;
3057{
3058 register Lisp_Object tem;
3059
3060 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
265a9e55 3061 if (!NILP (tem) && !NILP (apropos_predicate))
2c6f1a39 3062 tem = call1 (apropos_predicate, symbol);
265a9e55 3063 if (!NILP (tem))
2c6f1a39
JB
3064 apropos_accumulate = Fcons (symbol, apropos_accumulate);
3065}
3066
3067DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
3068 "Show all symbols whose names contain match for REGEXP.\n\
88539837 3069If optional 2nd arg PREDICATE is non-nil, (funcall PREDICATE SYMBOL) is done\n\
2c6f1a39
JB
3070for each symbol and a symbol is mentioned only if that returns non-nil.\n\
3071Return list of symbols found.")
88539837
EN
3072 (regexp, predicate)
3073 Lisp_Object regexp, predicate;
2c6f1a39
JB
3074{
3075 struct gcpro gcpro1, gcpro2;
9cd8b13a 3076 CHECK_STRING (regexp, 0);
88539837 3077 apropos_predicate = predicate;
2c6f1a39
JB
3078 GCPRO2 (apropos_predicate, apropos_accumulate);
3079 apropos_accumulate = Qnil;
88539837 3080 map_obarray (Vobarray, apropos_accum, regexp);
2c6f1a39
JB
3081 apropos_accumulate = Fsort (apropos_accumulate, Qstring_lessp);
3082 UNGCPRO;
3083 return apropos_accumulate;
3084}
3085\f
3086syms_of_keymap ()
3087{
3088 Lisp_Object tem;
3089
3090 Qkeymap = intern ("keymap");
3091 staticpro (&Qkeymap);
3092
0403641f
RS
3093 /* Now we are ready to set up this property, so we can
3094 create char tables. */
3095 Fput (Qkeymap, Qchar_table_extra_slots, make_number (0));
3096
3097 /* Initialize the keymaps standardly used.
3098 Each one is the value of a Lisp variable, and is also
3099 pointed to by a C variable */
2c6f1a39 3100
0403641f 3101 global_map = Fmake_keymap (Qnil);
2c6f1a39
JB
3102 Fset (intern ("global-map"), global_map);
3103
44bff953 3104 current_global_map = global_map;
a3e99933 3105 staticpro (&global_map);
44bff953
RS
3106 staticpro (&current_global_map);
3107
ce6e5d0b 3108 meta_map = Fmake_keymap (Qnil);
2c6f1a39
JB
3109 Fset (intern ("esc-map"), meta_map);
3110 Ffset (intern ("ESC-prefix"), meta_map);
3111
ce6e5d0b 3112 control_x_map = Fmake_keymap (Qnil);
2c6f1a39
JB
3113 Fset (intern ("ctl-x-map"), control_x_map);
3114 Ffset (intern ("Control-X-prefix"), control_x_map);
3115
107fd03d
RS
3116 DEFVAR_LISP ("define-key-rebound-commands", &Vdefine_key_rebound_commands,
3117 "List of commands given new key bindings recently.\n\
3118This is used for internal purposes during Emacs startup;\n\
3119don't alter it yourself.");
3120 Vdefine_key_rebound_commands = Qt;
3121
2c6f1a39
JB
3122 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map,
3123 "Default keymap to use when reading from the minibuffer.");
ce6e5d0b 3124 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
3125
3126 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
3127 "Local keymap for the minibuffer when spaces are not allowed.");
ce6e5d0b 3128 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
3129
3130 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
3131 "Local keymap for minibuffer input with completion.");
ce6e5d0b 3132 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
3133
3134 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map,
3135 "Local keymap for minibuffer input with completion, for exact match.");
ce6e5d0b 3136 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
2c6f1a39 3137
cc0a8174
JB
3138 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
3139 "Alist of keymaps to use for minor modes.\n\
3140Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read\n\
3141key sequences and look up bindings iff VARIABLE's value is non-nil.\n\
3142If two active keymaps bind the same key, the keymap appearing earlier\n\
3143in the list takes precedence.");
3144 Vminor_mode_map_alist = Qnil;
3145
dd9cda06
RS
3146 DEFVAR_LISP ("minor-mode-overriding-map-alist", &Vminor_mode_overriding_map_alist,
3147 "Alist of keymaps to use for minor modes, in current major mode.\n\
3148This variable is a alist just like `minor-mode-map-alist', and it is\n\
3149used the same way (and before `minor-mode-map-alist'); however,\n\
3150it is provided for major modes to bind locally.");
3151 Vminor_mode_overriding_map_alist = Qnil;
3152
6bbbd9b0
JB
3153 DEFVAR_LISP ("function-key-map", &Vfunction_key_map,
3154 "Keymap mapping ASCII function key sequences onto their preferred forms.\n\
3155This allows Emacs to recognize function keys sent from ASCII\n\
3156terminals at any point in a key sequence.\n\
3157\n\
1981e886
RS
3158The `read-key-sequence' function replaces any subsequence bound by\n\
3159`function-key-map' with its binding. More precisely, when the active\n\
6bbbd9b0 3160keymaps have no binding for the current key sequence but\n\
1981e886
RS
3161`function-key-map' binds a suffix of the sequence to a vector or string,\n\
3162`read-key-sequence' replaces the matching suffix with its binding, and\n\
6bbbd9b0
JB
3163continues with the new sequence.\n\
3164\n\
1981e886
RS
3165The events that come from bindings in `function-key-map' are not\n\
3166themselves looked up in `function-key-map'.\n\
3167\n\
3168For example, suppose `function-key-map' binds `ESC O P' to [f1].\n\
3169Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing\n\
718ca51e
JB
3170`C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix\n\
3171key, typing `ESC O P x' would return [f1 x].");
ce6e5d0b 3172 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
6bbbd9b0 3173
d7bf9bf5
RS
3174 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
3175 "Keymap of key translations that can override keymaps.\n\
3176This keymap works like `function-key-map', but comes after that,\n\
3177and applies even for keys that have ordinary bindings.");
3178 Vkey_translation_map = Qnil;
3179
2c6f1a39
JB
3180 Qsingle_key_description = intern ("single-key-description");
3181 staticpro (&Qsingle_key_description);
3182
3183 Qkey_description = intern ("key-description");
3184 staticpro (&Qkey_description);
3185
3186 Qkeymapp = intern ("keymapp");
3187 staticpro (&Qkeymapp);
3188
2fc66973
JB
3189 Qnon_ascii = intern ("non-ascii");
3190 staticpro (&Qnon_ascii);
3191
2c6f1a39 3192 defsubr (&Skeymapp);
7d58ed99
RS
3193 defsubr (&Skeymap_parent);
3194 defsubr (&Sset_keymap_parent);
2c6f1a39
JB
3195 defsubr (&Smake_keymap);
3196 defsubr (&Smake_sparse_keymap);
3197 defsubr (&Scopy_keymap);
3198 defsubr (&Skey_binding);
3199 defsubr (&Slocal_key_binding);
3200 defsubr (&Sglobal_key_binding);
cc0a8174 3201 defsubr (&Sminor_mode_key_binding);
2c6f1a39
JB
3202 defsubr (&Sdefine_key);
3203 defsubr (&Slookup_key);
2c6f1a39
JB
3204 defsubr (&Sdefine_prefix_command);
3205 defsubr (&Suse_global_map);
3206 defsubr (&Suse_local_map);
3207 defsubr (&Scurrent_local_map);
3208 defsubr (&Scurrent_global_map);
cc0a8174 3209 defsubr (&Scurrent_minor_mode_maps);
2c6f1a39
JB
3210 defsubr (&Saccessible_keymaps);
3211 defsubr (&Skey_description);
3212 defsubr (&Sdescribe_vector);
3213 defsubr (&Ssingle_key_description);
3214 defsubr (&Stext_char_description);
3215 defsubr (&Swhere_is_internal);
2c6f1a39
JB
3216 defsubr (&Sdescribe_bindings);
3217 defsubr (&Sapropos_internal);
3218}
3219
3220keys_of_keymap ()
3221{
3222 Lisp_Object tem;
3223
3224 initial_define_key (global_map, 033, "ESC-prefix");
3225 initial_define_key (global_map, Ctl('X'), "Control-X-prefix");
3226}