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