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