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