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