(emerge-file-names): Set help-mode in *Help* buffer.
[bpt/emacs.git] / src / keymap.c
CommitLineData
2c6f1a39 1/* Manipulation of keymaps
f0148b5e 2 Copyright (C) 1985, 86, 87, 88, 93, 94 Free Software Foundation, Inc.
2c6f1a39
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
502ddf23 8the Free Software Foundation; either version 2, or (at your option)
2c6f1a39
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
18160b98 21#include <config.h>
2c6f1a39
JB
22#include <stdio.h>
23#undef NULL
24#include "lisp.h"
25#include "commands.h"
26#include "buffer.h"
6bbbd9b0 27#include "keyboard.h"
6ba6e250 28#include "termhooks.h"
9ac0d9e0 29#include "blockinput.h"
2c6f1a39
JB
30
31#define min(a, b) ((a) < (b) ? (a) : (b))
32
f5b79c1c 33/* The number of elements in keymap vectors. */
2c6f1a39
JB
34#define DENSE_TABLE_SIZE (0200)
35
36/* Actually allocate storage for these variables */
37
38Lisp_Object current_global_map; /* Current global keymap */
39
40Lisp_Object global_map; /* default global key bindings */
41
42Lisp_Object meta_map; /* The keymap used for globally bound
43 ESC-prefixed default commands */
44
45Lisp_Object control_x_map; /* The keymap used for globally bound
46 C-x-prefixed default commands */
47
48/* was MinibufLocalMap */
49Lisp_Object Vminibuffer_local_map;
50 /* The keymap used by the minibuf for local
51 bindings when spaces are allowed in the
52 minibuf */
53
54/* was MinibufLocalNSMap */
55Lisp_Object Vminibuffer_local_ns_map;
56 /* The keymap used by the minibuf for local
57 bindings when spaces are not encouraged
58 in the minibuf */
59
60/* keymap used for minibuffers when doing completion */
61/* was MinibufLocalCompletionMap */
62Lisp_Object Vminibuffer_local_completion_map;
63
64/* keymap used for minibuffers when doing completion and require a match */
65/* was MinibufLocalMustMatchMap */
66Lisp_Object Vminibuffer_local_must_match_map;
67
cc0a8174
JB
68/* Alist of minor mode variables and keymaps. */
69Lisp_Object Vminor_mode_map_alist;
70
6bbbd9b0
JB
71/* Keymap mapping ASCII function key sequences onto their preferred forms.
72 Initialized by the terminal-specific lisp files. See DEFVAR for more
73 documentation. */
74Lisp_Object Vfunction_key_map;
75
2fc66973 76Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii;
2c6f1a39 77
3d248688
JB
78/* A char with the CHAR_META bit set in a vector or the 0200 bit set
79 in a string key sequence is equivalent to prefixing with this
80 character. */
2c6f1a39
JB
81extern Lisp_Object meta_prefix_char;
82
7d92e329
RS
83extern Lisp_Object Voverriding_local_map;
84
2c6f1a39 85void describe_map_tree ();
c07aec97 86static Lisp_Object define_as_prefix ();
2c6f1a39
JB
87static Lisp_Object describe_buffer_bindings ();
88static void describe_command ();
89static void describe_map ();
2c6f1a39 90\f
cc0a8174
JB
91/* Keymap object support - constructors and predicates. */
92
ce6e5d0b 93DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0,
2c6f1a39 94 "Construct and return a new keymap, of the form (keymap VECTOR . ALIST).\n\
926a64aa 95VECTOR is a vector which holds the bindings for the ASCII\n\
2c6f1a39
JB
96characters. ALIST is an assoc-list which holds bindings for function keys,\n\
97mouse events, and any other things that appear in the input stream.\n\
ce6e5d0b
RS
98All entries in it are initially nil, meaning \"command undefined\".\n\n\
99The optional arg STRING supplies a menu name for the keymap\n\
100in case you use it as a menu with `x-popup-menu'.")
101 (string)
102 Lisp_Object string;
2c6f1a39 103{
ce6e5d0b
RS
104 Lisp_Object tail;
105 if (!NILP (string))
106 tail = Fcons (string, Qnil);
107 else
108 tail = Qnil;
2c6f1a39
JB
109 return Fcons (Qkeymap,
110 Fcons (Fmake_vector (make_number (DENSE_TABLE_SIZE), Qnil),
ce6e5d0b 111 tail));
2c6f1a39
JB
112}
113
ce6e5d0b 114DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0,
2c6f1a39
JB
115 "Construct and return a new sparse-keymap list.\n\
116Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),\n\
117which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),\n\
118which binds the function key or mouse event SYMBOL to DEFINITION.\n\
ce6e5d0b
RS
119Initially the alist is nil.\n\n\
120The optional arg STRING supplies a menu name for the keymap\n\
121in case you use it as a menu with `x-popup-menu'.")
122 (string)
123 Lisp_Object string;
2c6f1a39 124{
ce6e5d0b
RS
125 if (!NILP (string))
126 return Fcons (Qkeymap, Fcons (string, Qnil));
2c6f1a39
JB
127 return Fcons (Qkeymap, Qnil);
128}
129
130/* This function is used for installing the standard key bindings
131 at initialization time.
132
133 For example:
134
e25c4e44 135 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
2c6f1a39
JB
136
137void
138initial_define_key (keymap, key, defname)
139 Lisp_Object keymap;
140 int key;
141 char *defname;
142{
143 store_in_keymap (keymap, make_number (key), intern (defname));
144}
145
e25c4e44
JB
146void
147initial_define_lispy_key (keymap, keyname, defname)
148 Lisp_Object keymap;
149 char *keyname;
150 char *defname;
151{
152 store_in_keymap (keymap, intern (keyname), intern (defname));
153}
154
2c6f1a39
JB
155/* Define character fromchar in map frommap as an alias for character
156 tochar in map tomap. Subsequent redefinitions of the latter WILL
157 affect the former. */
158
159#if 0
160void
161synkey (frommap, fromchar, tomap, tochar)
162 struct Lisp_Vector *frommap, *tomap;
163 int fromchar, tochar;
164{
165 Lisp_Object v, c;
bff4ec1f 166 XSETVECTOR (v, tomap);
6e344130 167 XSETFASTINT (c, tochar);
2c6f1a39
JB
168 frommap->contents[fromchar] = Fcons (v, c);
169}
170#endif /* 0 */
171
172DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0,
173 "Return t if ARG is a keymap.\n\
1d8d96fa 174\n\
926a64aa 175A keymap is a list (keymap . ALIST),\n\
90f80bcf 176or a symbol whose function definition is itself a keymap.\n\
1d8d96fa 177ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);\n\
926a64aa
RS
178a vector of densely packed bindings for small character codes\n\
179is also allowed as an element.")
2c6f1a39
JB
180 (object)
181 Lisp_Object object;
182{
d09b2024 183 return (NILP (get_keymap_1 (object, 0, 0)) ? Qnil : Qt);
2c6f1a39
JB
184}
185
186/* Check that OBJECT is a keymap (after dereferencing through any
d09b2024
JB
187 symbols). If it is, return it.
188
189 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
190 is an autoload form, do the autoload and try again.
21a0d7a0 191 If AUTOLOAD is nonzero, callers must assume GC is possible.
d09b2024
JB
192
193 ERROR controls how we respond if OBJECT isn't a keymap.
194 If ERROR is non-zero, signal an error; otherwise, just return Qnil.
195
196 Note that most of the time, we don't want to pursue autoloads.
197 Functions like Faccessible_keymaps which scan entire keymap trees
198 shouldn't load every autoloaded keymap. I'm not sure about this,
199 but it seems to me that only read_key_sequence, Flookup_key, and
200 Fdefine_key should cause keymaps to be autoloaded. */
201
2c6f1a39 202Lisp_Object
d09b2024 203get_keymap_1 (object, error, autoload)
2c6f1a39 204 Lisp_Object object;
d09b2024 205 int error, autoload;
2c6f1a39 206{
d09b2024 207 Lisp_Object tem;
2c6f1a39 208
d09b2024 209 autoload_retry:
502ddf23 210 tem = indirect_function (object);
2c6f1a39
JB
211 if (CONSP (tem) && EQ (XCONS (tem)->car, Qkeymap))
212 return tem;
f5b79c1c 213
8e4dfd54
JB
214 /* Should we do an autoload? Autoload forms for keymaps have
215 Qkeymap as their fifth element. */
d09b2024 216 if (autoload
47684cd9 217 && SYMBOLP (object)
d09b2024
JB
218 && CONSP (tem)
219 && EQ (XCONS (tem)->car, Qautoload))
220 {
8e4dfd54 221 Lisp_Object tail;
d09b2024 222
8e4dfd54
JB
223 tail = Fnth (make_number (4), tem);
224 if (EQ (tail, Qkeymap))
225 {
226 struct gcpro gcpro1, gcpro2;
d09b2024 227
81fa9e2f
RS
228 GCPRO2 (tem, object);
229 do_autoload (tem, object);
8e4dfd54
JB
230 UNGCPRO;
231
232 goto autoload_retry;
233 }
d09b2024
JB
234 }
235
2c6f1a39
JB
236 if (error)
237 wrong_type_argument (Qkeymapp, object);
cc0a8174
JB
238 else
239 return Qnil;
2c6f1a39
JB
240}
241
d09b2024
JB
242
243/* Follow any symbol chaining, and return the keymap denoted by OBJECT.
244 If OBJECT doesn't denote a keymap at all, signal an error. */
2c6f1a39
JB
245Lisp_Object
246get_keymap (object)
247 Lisp_Object object;
248{
224a16e8 249 return get_keymap_1 (object, 1, 0);
2c6f1a39
JB
250}
251
252
2c6f1a39 253/* Look up IDX in MAP. IDX may be any sort of event.
f5b79c1c 254 Note that this does only one level of lookup; IDX must be a single
e25c4e44
JB
255 event, not a sequence.
256
257 If T_OK is non-zero, bindings for Qt are treated as default
258 bindings; any key left unmentioned by other tables and bindings is
259 given the binding of Qt.
260
c07aec97
RS
261 If T_OK is zero, bindings for Qt are not treated specially.
262
263 If NOINHERIT, don't accept a subkeymap found in an inherited keymap. */
2c6f1a39
JB
264
265Lisp_Object
c07aec97 266access_keymap (map, idx, t_ok, noinherit)
2c6f1a39
JB
267 Lisp_Object map;
268 Lisp_Object idx;
e25c4e44 269 int t_ok;
c07aec97 270 int noinherit;
2c6f1a39 271{
c07aec97
RS
272 int noprefix = 0;
273 Lisp_Object val;
274
2c6f1a39
JB
275 /* If idx is a list (some sort of mouse click, perhaps?),
276 the index we want to use is the car of the list, which
277 ought to be a symbol. */
cebd887d 278 idx = EVENT_HEAD (idx);
2c6f1a39 279
f5b79c1c
JB
280 /* If idx is a symbol, it might have modifiers, which need to
281 be put in the canonical order. */
47684cd9 282 if (SYMBOLP (idx))
f5b79c1c 283 idx = reorder_modifiers (idx);
2732bdbb
RS
284 else if (INTEGERP (idx))
285 /* Clobber the high bits that can be present on a machine
286 with more than 24 bits of integer. */
6e344130 287 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
2c6f1a39 288
f5b79c1c
JB
289 {
290 Lisp_Object tail;
e9b6dfb0 291 Lisp_Object t_binding;
2c6f1a39 292
e9b6dfb0 293 t_binding = Qnil;
f5b79c1c 294 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 295 {
e9b6dfb0 296 Lisp_Object binding;
f5b79c1c 297
e9b6dfb0 298 binding = XCONS (tail)->car;
f5b79c1c
JB
299 switch (XTYPE (binding))
300 {
c07aec97
RS
301 case Lisp_Symbol:
302 /* If NOINHERIT, stop finding prefix definitions
303 after we pass a second occurrence of the `keymap' symbol. */
304 if (noinherit && EQ (binding, Qkeymap) && ! EQ (tail, map))
305 noprefix = 1;
306 break;
307
f5b79c1c
JB
308 case Lisp_Cons:
309 if (EQ (XCONS (binding)->car, idx))
c07aec97
RS
310 {
311 val = XCONS (binding)->cdr;
312 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap))
313 return Qnil;
314 return val;
315 }
e25c4e44
JB
316 if (t_ok && EQ (XCONS (binding)->car, Qt))
317 t_binding = XCONS (binding)->cdr;
f5b79c1c
JB
318 break;
319
320 case Lisp_Vector:
47684cd9 321 if (INTEGERP (idx)
0b8fc2d4 322 && XINT (idx) >= 0
926a64aa 323 && XINT (idx) < XVECTOR (binding)->size)
c07aec97
RS
324 {
325 val = XVECTOR (binding)->contents[XINT (idx)];
326 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap))
327 return Qnil;
328 return val;
329 }
f5b79c1c
JB
330 break;
331 }
20218e2f
JB
332
333 QUIT;
2c6f1a39 334 }
fde3a52f 335
e25c4e44
JB
336 return t_binding;
337 }
2c6f1a39
JB
338}
339
340/* Given OBJECT which was found in a slot in a keymap,
341 trace indirect definitions to get the actual definition of that slot.
342 An indirect definition is a list of the form
343 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
344 and INDEX is the object to look up in KEYMAP to yield the definition.
345
346 Also if OBJECT has a menu string as the first element,
224a16e8
RS
347 remove that. Also remove a menu help string as second element.
348
349 If AUTOLOAD is nonzero, load autoloadable keymaps
350 that are referred to with indirection. */
2c6f1a39
JB
351
352Lisp_Object
224a16e8 353get_keyelt (object, autoload)
2c6f1a39 354 register Lisp_Object object;
224a16e8 355 int autoload;
2c6f1a39
JB
356{
357 while (1)
358 {
359 register Lisp_Object map, tem;
360
fde3a52f 361 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
224a16e8 362 map = get_keymap_1 (Fcar_safe (object), 0, autoload);
2c6f1a39 363 tem = Fkeymapp (map);
265a9e55 364 if (!NILP (tem))
c07aec97 365 object = access_keymap (map, Fcdr (object), 0, 0);
2c6f1a39
JB
366
367 /* If the keymap contents looks like (STRING . DEFN),
368 use DEFN.
369 Keymap alist elements like (CHAR MENUSTRING . DEFN)
370 will be used by HierarKey menus. */
47684cd9
RS
371 else if (CONSP (object)
372 && STRINGP (XCONS (object)->car))
1a8c3f10
RS
373 {
374 object = XCONS (object)->cdr;
375 /* Also remove a menu help string, if any,
376 following the menu item name. */
416349ec 377 if (CONSP (object) && STRINGP (XCONS (object)->car))
1a8c3f10 378 object = XCONS (object)->cdr;
c6ec9f6e
RS
379 /* Also remove the sublist that caches key equivalences, if any. */
380 if (CONSP (object)
381 && CONSP (XCONS (object)->car))
ffab2bd6 382 {
c6ec9f6e
RS
383 Lisp_Object carcar;
384 carcar = XCONS (XCONS (object)->car)->car;
385 if (NILP (carcar) || VECTORP (carcar))
ffab2bd6
RS
386 object = XCONS (object)->cdr;
387 }
1a8c3f10 388 }
2c6f1a39
JB
389
390 else
391 /* Anything else is really the value. */
392 return object;
393 }
394}
395
396Lisp_Object
397store_in_keymap (keymap, idx, def)
398 Lisp_Object keymap;
399 register Lisp_Object idx;
400 register Lisp_Object def;
401{
416349ec 402 if (!CONSP (keymap) || ! EQ (XCONS (keymap)->car, Qkeymap))
f5b79c1c
JB
403 error ("attempt to define a key in a non-keymap");
404
2c6f1a39
JB
405 /* If idx is a list (some sort of mouse click, perhaps?),
406 the index we want to use is the car of the list, which
407 ought to be a symbol. */
cebd887d 408 idx = EVENT_HEAD (idx);
2c6f1a39 409
f5b79c1c
JB
410 /* If idx is a symbol, it might have modifiers, which need to
411 be put in the canonical order. */
416349ec 412 if (SYMBOLP (idx))
f5b79c1c 413 idx = reorder_modifiers (idx);
2732bdbb
RS
414 else if (INTEGERP (idx))
415 /* Clobber the high bits that can be present on a machine
416 with more than 24 bits of integer. */
6e344130 417 XSETFASTINT (idx, XINT (idx) & (CHAR_META | (CHAR_META - 1)));
f5b79c1c
JB
418
419 /* Scan the keymap for a binding of idx. */
2c6f1a39 420 {
f5b79c1c 421 Lisp_Object tail;
2c6f1a39 422
f5b79c1c
JB
423 /* The cons after which we should insert new bindings. If the
424 keymap has a table element, we record its position here, so new
425 bindings will go after it; this way, the table will stay
426 towards the front of the alist and character lookups in dense
427 keymaps will remain fast. Otherwise, this just points at the
428 front of the keymap. */
e9b6dfb0 429 Lisp_Object insertion_point;
2c6f1a39 430
e9b6dfb0 431 insertion_point = keymap;
f5b79c1c 432 for (tail = XCONS (keymap)->cdr; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 433 {
e9b6dfb0 434 Lisp_Object elt;
f5b79c1c 435
e9b6dfb0 436 elt = XCONS (tail)->car;
f5b79c1c
JB
437 switch (XTYPE (elt))
438 {
439 case Lisp_Vector:
416349ec 440 if (INTEGERP (idx)
926a64aa 441 && XINT (idx) >= 0 && XINT (idx) < XVECTOR (elt)->size)
f5b79c1c
JB
442 {
443 XVECTOR (elt)->contents[XFASTINT (idx)] = def;
444 return def;
445 }
446 insertion_point = tail;
447 break;
448
449 case Lisp_Cons:
450 if (EQ (idx, XCONS (elt)->car))
451 {
452 XCONS (elt)->cdr = def;
453 return def;
454 }
455 break;
456
457 case Lisp_Symbol:
458 /* If we find a 'keymap' symbol in the spine of KEYMAP,
459 then we must have found the start of a second keymap
460 being used as the tail of KEYMAP, and a binding for IDX
461 should be inserted before it. */
462 if (EQ (elt, Qkeymap))
463 goto keymap_end;
464 break;
465 }
0188441d
JB
466
467 QUIT;
2c6f1a39 468 }
2c6f1a39 469
f5b79c1c
JB
470 keymap_end:
471 /* We have scanned the entire keymap, and not found a binding for
472 IDX. Let's add one. */
473 XCONS (insertion_point)->cdr =
474 Fcons (Fcons (idx, def), XCONS (insertion_point)->cdr);
475 }
476
2c6f1a39
JB
477 return def;
478}
479
f5b79c1c 480
2c6f1a39
JB
481DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0,
482 "Return a copy of the keymap KEYMAP.\n\
483The copy starts out with the same definitions of KEYMAP,\n\
484but changing either the copy or KEYMAP does not affect the other.\n\
1d8d96fa
JB
485Any key definitions that are subkeymaps are recursively copied.\n\
486However, a key definition which is a symbol whose definition is a keymap\n\
487is not copied.")
2c6f1a39
JB
488 (keymap)
489 Lisp_Object keymap;
490{
491 register Lisp_Object copy, tail;
492
493 copy = Fcopy_alist (get_keymap (keymap));
2c6f1a39 494
f5b79c1c 495 for (tail = copy; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 496 {
e9b6dfb0 497 Lisp_Object elt;
2c6f1a39 498
e9b6dfb0 499 elt = XCONS (tail)->car;
416349ec 500 if (VECTORP (elt))
2c6f1a39 501 {
f5b79c1c 502 int i;
2c6f1a39 503
f5b79c1c
JB
504 elt = Fcopy_sequence (elt);
505 XCONS (tail)->car = elt;
2c6f1a39 506
926a64aa 507 for (i = 0; i < XVECTOR (elt)->size; i++)
416349ec 508 if (!SYMBOLP (XVECTOR (elt)->contents[i])
98006242 509 && ! NILP (Fkeymapp (XVECTOR (elt)->contents[i])))
f5b79c1c
JB
510 XVECTOR (elt)->contents[i] =
511 Fcopy_keymap (XVECTOR (elt)->contents[i]);
2c6f1a39 512 }
d65a13c5
KH
513 else if (CONSP (elt))
514 {
515 /* Skip the optional menu string. */
516 if (CONSP (XCONS (elt)->cdr)
517 && STRINGP (XCONS (XCONS (elt)->cdr)->car))
518 {
519 Lisp_Object tem;
520
521 /* Copy the cell, since copy-alist didn't go this deep. */
522 XCONS (elt)->cdr = Fcons (XCONS (XCONS (elt)->cdr)->car,
523 XCONS (XCONS (elt)->cdr)->cdr);
524 elt = XCONS (elt)->cdr;
525
526 /* Also skip the optional menu help string. */
527 if (CONSP (XCONS (elt)->cdr)
528 && STRINGP (XCONS (XCONS (elt)->cdr)->car))
529 {
530 XCONS (elt)->cdr = Fcons (XCONS (XCONS (elt)->cdr)->car,
531 XCONS (XCONS (elt)->cdr)->cdr);
532 elt = XCONS (elt)->cdr;
533 }
534 /* There may also be a list that caches key equivalences.
535 Just delete it for the new keymap. */
536 if (CONSP (XCONS (elt)->cdr)
537 && CONSP (XCONS (XCONS (elt)->cdr)->car)
538 && (NILP (tem = XCONS (XCONS (XCONS (elt)->cdr)->car)->car)
539 || VECTORP (tem)))
540 XCONS (elt)->cdr = XCONS (XCONS (elt)->cdr)->cdr;
541 }
542 if (CONSP (elt)
543 && ! SYMBOLP (XCONS (elt)->cdr)
544 && ! NILP (Fkeymapp (XCONS (elt)->cdr)))
545 XCONS (elt)->cdr = Fcopy_keymap (XCONS (elt)->cdr);
546 }
2c6f1a39
JB
547 }
548
549 return copy;
550}
551\f
cc0a8174
JB
552/* Simple Keymap mutators and accessors. */
553
21a0d7a0
RS
554/* GC is possible in this function if it autoloads a keymap. */
555
2c6f1a39
JB
556DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0,
557 "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\
558KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\
559meaning a sequence of keystrokes and events.\n\
c818754b
RS
560Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
561can be included if you use a vector.\n\
2c6f1a39
JB
562DEF is anything that can be a key's definition:\n\
563 nil (means key is undefined in this keymap),\n\
564 a command (a Lisp function suitable for interactive calling)\n\
565 a string (treated as a keyboard macro),\n\
566 a keymap (to define a prefix key),\n\
567 a symbol. When the key is looked up, the symbol will stand for its\n\
568 function definition, which should at that time be one of the above,\n\
569 or another symbol whose function definition is used, etc.\n\
570 a cons (STRING . DEFN), meaning that DEFN is the definition\n\
571 (DEFN should be a valid definition in its own right),\n\
6e8290aa
JB
572 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.\n\
573\n\
574If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at\n\
575the front of KEYMAP.")
2c6f1a39 576 (keymap, key, def)
d09b2024 577 Lisp_Object keymap;
2c6f1a39
JB
578 Lisp_Object key;
579 Lisp_Object def;
580{
581 register int idx;
582 register Lisp_Object c;
583 register Lisp_Object tem;
584 register Lisp_Object cmd;
585 int metized = 0;
6ba6e250 586 int meta_bit;
2c6f1a39 587 int length;
d09b2024 588 struct gcpro gcpro1, gcpro2, gcpro3;
2c6f1a39 589
224a16e8 590 keymap = get_keymap_1 (keymap, 1, 1);
2c6f1a39 591
416349ec 592 if (!VECTORP (key) && !STRINGP (key))
2c6f1a39
JB
593 key = wrong_type_argument (Qarrayp, key);
594
d09b2024 595 length = XFASTINT (Flength (key));
2c6f1a39
JB
596 if (length == 0)
597 return Qnil;
598
d09b2024
JB
599 GCPRO3 (keymap, key, def);
600
416349ec 601 if (VECTORP (key))
6ba6e250
RS
602 meta_bit = meta_modifier;
603 else
604 meta_bit = 0x80;
605
2c6f1a39
JB
606 idx = 0;
607 while (1)
608 {
609 c = Faref (key, make_number (idx));
610
416349ec 611 if (INTEGERP (c)
6ba6e250 612 && (XINT (c) & meta_bit)
2c6f1a39
JB
613 && !metized)
614 {
615 c = meta_prefix_char;
616 metized = 1;
617 }
618 else
619 {
416349ec 620 if (INTEGERP (c))
0b8fc2d4 621 XSETINT (c, XINT (c) & ~meta_bit);
2c6f1a39
JB
622
623 metized = 0;
624 idx++;
625 }
626
5907b863 627 if (! INTEGERP (c) && ! SYMBOLP (c) && ! CONSP (c))
4b04c52e 628 error ("Key sequence contains invalid events");
5907b863 629
2c6f1a39 630 if (idx == length)
d09b2024 631 RETURN_UNGCPRO (store_in_keymap (keymap, c, def));
2c6f1a39 632
224a16e8 633 cmd = get_keyelt (access_keymap (keymap, c, 0, 1), 1);
2c6f1a39 634
c07aec97 635 /* If this key is undefined, make it a prefix. */
265a9e55 636 if (NILP (cmd))
c07aec97 637 cmd = define_as_prefix (keymap, c);
2c6f1a39 638
d09b2024
JB
639 keymap = get_keymap_1 (cmd, 0, 1);
640 if (NILP (keymap))
e9b6dfb0
KH
641 /* We must use Fkey_description rather than just passing key to
642 error; key might be a vector, not a string. */
643 error ("Key sequence %s uses invalid prefix characters",
644 XSTRING (Fkey_description (key))->data);
2c6f1a39
JB
645 }
646}
647
648/* Value is number if KEY is too long; NIL if valid but has no definition. */
21a0d7a0 649/* GC is possible in this function if it autoloads a keymap. */
2c6f1a39 650
7c140252 651DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0,
2c6f1a39
JB
652 "In keymap KEYMAP, look up key sequence KEY. Return the definition.\n\
653nil means undefined. See doc of `define-key' for kinds of definitions.\n\
7c140252 654\n\
2c6f1a39
JB
655A number as value means KEY is \"too long\";\n\
656that is, characters or symbols in it except for the last one\n\
657fail to be a valid sequence of prefix characters in KEYMAP.\n\
658The number is how many characters at the front of KEY\n\
7c140252
JB
659it takes to reach a non-prefix command.\n\
660\n\
661Normally, `lookup-key' ignores bindings for t, which act as default\n\
662bindings, used when nothing else in the keymap applies; this makes it\n\
663useable as a general function for probing keymaps. However, if the\n\
664third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will\n\
665recognize the default bindings, just as `read-key-sequence' does.")
666 (keymap, key, accept_default)
2c6f1a39
JB
667 register Lisp_Object keymap;
668 Lisp_Object key;
7c140252 669 Lisp_Object accept_default;
2c6f1a39
JB
670{
671 register int idx;
672 register Lisp_Object tem;
673 register Lisp_Object cmd;
674 register Lisp_Object c;
675 int metized = 0;
676 int length;
7c140252 677 int t_ok = ! NILP (accept_default);
6ba6e250 678 int meta_bit;
21a0d7a0 679 struct gcpro gcpro1;
2c6f1a39 680
224a16e8 681 keymap = get_keymap_1 (keymap, 1, 1);
2c6f1a39 682
416349ec 683 if (!VECTORP (key) && !STRINGP (key))
2c6f1a39
JB
684 key = wrong_type_argument (Qarrayp, key);
685
d09b2024 686 length = XFASTINT (Flength (key));
2c6f1a39
JB
687 if (length == 0)
688 return keymap;
689
416349ec 690 if (VECTORP (key))
6ba6e250
RS
691 meta_bit = meta_modifier;
692 else
693 meta_bit = 0x80;
694
21a0d7a0
RS
695 GCPRO1 (key);
696
2c6f1a39
JB
697 idx = 0;
698 while (1)
699 {
700 c = Faref (key, make_number (idx));
701
416349ec 702 if (INTEGERP (c)
6ba6e250 703 && (XINT (c) & meta_bit)
2c6f1a39
JB
704 && !metized)
705 {
706 c = meta_prefix_char;
707 metized = 1;
708 }
709 else
710 {
416349ec 711 if (INTEGERP (c))
6ba6e250 712 XSETINT (c, XINT (c) & ~meta_bit);
2c6f1a39
JB
713
714 metized = 0;
715 idx++;
716 }
717
224a16e8 718 cmd = get_keyelt (access_keymap (keymap, c, t_ok, 0), 1);
2c6f1a39 719 if (idx == length)
21a0d7a0 720 RETURN_UNGCPRO (cmd);
2c6f1a39 721
224a16e8 722 keymap = get_keymap_1 (cmd, 0, 1);
d09b2024 723 if (NILP (keymap))
21a0d7a0 724 RETURN_UNGCPRO (make_number (idx));
2c6f1a39 725
2c6f1a39
JB
726 QUIT;
727 }
728}
729
c07aec97
RS
730/* Make KEYMAP define event C as a keymap (i.e., as a prefix).
731 Assume that currently it does not define C at all.
732 Return the keymap. */
733
734static Lisp_Object
735define_as_prefix (keymap, c)
736 Lisp_Object keymap, c;
737{
738 Lisp_Object inherit, cmd;
739
740 cmd = Fmake_sparse_keymap (Qnil);
741 /* If this key is defined as a prefix in an inherited keymap,
742 make it a prefix in this map, and make its definition
743 inherit the other prefix definition. */
744 inherit = access_keymap (keymap, c, 0, 0);
745 if (NILP (inherit))
746 {
747 /* If there's an inherited keymap
748 and it doesn't define this key,
749 make it define this key. */
750 Lisp_Object tail;
751
752 for (tail = Fcdr (keymap); CONSP (tail); tail = XCONS (tail)->cdr)
753 if (EQ (XCONS (tail)->car, Qkeymap))
754 break;
755
756 if (!NILP (tail))
757 inherit = define_as_prefix (tail, c);
758 }
759
760 cmd = nconc2 (cmd, inherit);
761 store_in_keymap (keymap, c, cmd);
762
763 return cmd;
764}
765
0b8fc2d4
RS
766/* Append a key to the end of a key sequence. We always make a vector. */
767
2c6f1a39
JB
768Lisp_Object
769append_key (key_sequence, key)
770 Lisp_Object key_sequence, key;
771{
772 Lisp_Object args[2];
773
774 args[0] = key_sequence;
775
0b8fc2d4
RS
776 args[1] = Fcons (key, Qnil);
777 return Fvconcat (2, args);
2c6f1a39
JB
778}
779
780\f
cc0a8174
JB
781/* Global, local, and minor mode keymap stuff. */
782
265a9e55 783/* We can't put these variables inside current_minor_maps, since under
6bbbd9b0
JB
784 some systems, static gets macro-defined to be the empty string.
785 Ickypoo. */
265a9e55
JB
786static Lisp_Object *cmm_modes, *cmm_maps;
787static int cmm_size;
788
cc0a8174
JB
789/* Store a pointer to an array of the keymaps of the currently active
790 minor modes in *buf, and return the number of maps it contains.
791
792 This function always returns a pointer to the same buffer, and may
793 free or reallocate it, so if you want to keep it for a long time or
794 hand it out to lisp code, copy it. This procedure will be called
795 for every key sequence read, so the nice lispy approach (return a
796 new assoclist, list, what have you) for each invocation would
797 result in a lot of consing over time.
798
799 If we used xrealloc/xmalloc and ran out of memory, they would throw
800 back to the command loop, which would try to read a key sequence,
801 which would call this function again, resulting in an infinite
802 loop. Instead, we'll use realloc/malloc and silently truncate the
803 list, let the key sequence be read, and hope some other piece of
804 code signals the error. */
805int
806current_minor_maps (modeptr, mapptr)
807 Lisp_Object **modeptr, **mapptr;
808{
cc0a8174 809 int i = 0;
6bbbd9b0 810 Lisp_Object alist, assoc, var, val;
cc0a8174
JB
811
812 for (alist = Vminor_mode_map_alist;
813 CONSP (alist);
814 alist = XCONS (alist)->cdr)
815 if (CONSP (assoc = XCONS (alist)->car)
416349ec 816 && SYMBOLP (var = XCONS (assoc)->car)
6bbbd9b0
JB
817 && ! EQ ((val = find_symbol_value (var)), Qunbound)
818 && ! NILP (val))
cc0a8174 819 {
265a9e55 820 if (i >= cmm_size)
cc0a8174
JB
821 {
822 Lisp_Object *newmodes, *newmaps;
823
265a9e55 824 if (cmm_maps)
cc0a8174 825 {
9ac0d9e0 826 BLOCK_INPUT;
e58077c8 827 cmm_size *= 2;
64116ad5
RS
828 newmodes
829 = (Lisp_Object *) realloc (cmm_modes,
830 cmm_size * sizeof (Lisp_Object));
831 newmaps
832 = (Lisp_Object *) realloc (cmm_maps,
833 cmm_size * sizeof (Lisp_Object));
9ac0d9e0 834 UNBLOCK_INPUT;
cc0a8174
JB
835 }
836 else
837 {
9ac0d9e0 838 BLOCK_INPUT;
e58077c8 839 cmm_size = 30;
64116ad5
RS
840 newmodes
841 = (Lisp_Object *) malloc (cmm_size * sizeof (Lisp_Object));
842 newmaps
843 = (Lisp_Object *) malloc (cmm_size * sizeof (Lisp_Object));
9ac0d9e0 844 UNBLOCK_INPUT;
cc0a8174
JB
845 }
846
847 if (newmaps && newmodes)
848 {
265a9e55
JB
849 cmm_modes = newmodes;
850 cmm_maps = newmaps;
cc0a8174
JB
851 }
852 else
853 break;
854 }
265a9e55 855 cmm_modes[i] = var;
992984b2 856 cmm_maps [i] = Findirect_function (XCONS (assoc)->cdr);
cc0a8174
JB
857 i++;
858 }
859
265a9e55
JB
860 if (modeptr) *modeptr = cmm_modes;
861 if (mapptr) *mapptr = cmm_maps;
cc0a8174
JB
862 return i;
863}
864
21a0d7a0
RS
865/* GC is possible in this function if it autoloads a keymap. */
866
7c140252 867DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 2, 0,
2c6f1a39 868 "Return the binding for command KEY in current keymaps.\n\
7c140252
JB
869KEY is a string or vector, a sequence of keystrokes.\n\
870The binding is probably a symbol with a function definition.\n\
871\n\
872Normally, `key-binding' ignores bindings for t, which act as default\n\
873bindings, used when nothing else in the keymap applies; this makes it\n\
d831234b
RS
874usable as a general function for probing keymaps. However, if the\n\
875optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does\n\
7c140252
JB
876recognize the default bindings, just as `read-key-sequence' does.")
877 (key, accept_default)
c2a2858a 878 Lisp_Object key, accept_default;
2c6f1a39 879{
cc0a8174
JB
880 Lisp_Object *maps, value;
881 int nmaps, i;
21a0d7a0
RS
882 struct gcpro gcpro1;
883
884 GCPRO1 (key);
cc0a8174 885
7d92e329 886 if (!NILP (Voverriding_local_map))
2c6f1a39 887 {
7d92e329 888 value = Flookup_key (Voverriding_local_map, key, accept_default);
416349ec 889 if (! NILP (value) && !INTEGERP (value))
21a0d7a0 890 RETURN_UNGCPRO (value);
2c6f1a39 891 }
7d92e329
RS
892 else
893 {
894 nmaps = current_minor_maps (0, &maps);
21a0d7a0
RS
895 /* Note that all these maps are GCPRO'd
896 in the places where we found them. */
897
7d92e329
RS
898 for (i = 0; i < nmaps; i++)
899 if (! NILP (maps[i]))
900 {
901 value = Flookup_key (maps[i], key, accept_default);
416349ec 902 if (! NILP (value) && !INTEGERP (value))
21a0d7a0 903 RETURN_UNGCPRO (value);
7d92e329
RS
904 }
905
906 if (! NILP (current_buffer->keymap))
907 {
908 value = Flookup_key (current_buffer->keymap, key, accept_default);
416349ec 909 if (! NILP (value) && !INTEGERP (value))
21a0d7a0 910 RETURN_UNGCPRO (value);
7d92e329
RS
911 }
912 }
cc0a8174 913
7c140252 914 value = Flookup_key (current_global_map, key, accept_default);
21a0d7a0 915 UNGCPRO;
416349ec 916 if (! NILP (value) && !INTEGERP (value))
cc0a8174
JB
917 return value;
918
919 return Qnil;
2c6f1a39
JB
920}
921
21a0d7a0
RS
922/* GC is possible in this function if it autoloads a keymap. */
923
7c140252 924DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0,
2c6f1a39
JB
925 "Return the binding for command KEYS in current local keymap only.\n\
926KEYS is a string, a sequence of keystrokes.\n\
7c140252
JB
927The binding is probably a symbol with a function definition.\n\
928\n\
929If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
930bindings; see the description of `lookup-key' for more details about this.")
931 (keys, accept_default)
932 Lisp_Object keys, accept_default;
2c6f1a39
JB
933{
934 register Lisp_Object map;
935 map = current_buffer->keymap;
265a9e55 936 if (NILP (map))
2c6f1a39 937 return Qnil;
7c140252 938 return Flookup_key (map, keys, accept_default);
2c6f1a39
JB
939}
940
21a0d7a0
RS
941/* GC is possible in this function if it autoloads a keymap. */
942
7c140252 943DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0,
2c6f1a39
JB
944 "Return the binding for command KEYS in current global keymap only.\n\
945KEYS is a string, a sequence of keystrokes.\n\
6bbbd9b0
JB
946The binding is probably a symbol with a function definition.\n\
947This function's return values are the same as those of lookup-key\n\
21a0d7a0 948\(which see).\n\
7c140252
JB
949\n\
950If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
951bindings; see the description of `lookup-key' for more details about this.")
952 (keys, accept_default)
953 Lisp_Object keys, accept_default;
2c6f1a39 954{
7c140252 955 return Flookup_key (current_global_map, keys, accept_default);
2c6f1a39
JB
956}
957
21a0d7a0
RS
958/* GC is possible in this function if it autoloads a keymap. */
959
7c140252 960DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0,
cc0a8174
JB
961 "Find the visible minor mode bindings of KEY.\n\
962Return an alist of pairs (MODENAME . BINDING), where MODENAME is the\n\
963the symbol which names the minor mode binding KEY, and BINDING is\n\
964KEY's definition in that mode. In particular, if KEY has no\n\
965minor-mode bindings, return nil. If the first binding is a\n\
966non-prefix, all subsequent bindings will be omitted, since they would\n\
967be ignored. Similarly, the list doesn't include non-prefix bindings\n\
7c140252
JB
968that come after prefix bindings.\n\
969\n\
970If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
971bindings; see the description of `lookup-key' for more details about this.")
972 (key, accept_default)
973 Lisp_Object key, accept_default;
cc0a8174
JB
974{
975 Lisp_Object *modes, *maps;
976 int nmaps;
977 Lisp_Object binding;
978 int i, j;
21a0d7a0 979 struct gcpro gcpro1, gcpro2;
cc0a8174
JB
980
981 nmaps = current_minor_maps (&modes, &maps);
21a0d7a0
RS
982 /* Note that all these maps are GCPRO'd
983 in the places where we found them. */
984
985 binding = Qnil;
986 GCPRO2 (key, binding);
cc0a8174
JB
987
988 for (i = j = 0; i < nmaps; i++)
265a9e55 989 if (! NILP (maps[i])
7c140252 990 && ! NILP (binding = Flookup_key (maps[i], key, accept_default))
416349ec 991 && !INTEGERP (binding))
cc0a8174 992 {
d09b2024 993 if (! NILP (get_keymap (binding)))
cc0a8174
JB
994 maps[j++] = Fcons (modes[i], binding);
995 else if (j == 0)
21a0d7a0 996 RETURN_UNGCPRO (Fcons (Fcons (modes[i], binding), Qnil));
cc0a8174
JB
997 }
998
21a0d7a0 999 UNGCPRO;
cc0a8174
JB
1000 return Flist (j, maps);
1001}
1002
2c6f1a39
JB
1003DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2,
1004 "kSet key globally: \nCSet key %s to command: ",
1005 "Give KEY a global binding as COMMAND.\n\
1006COMMAND is a symbol naming an interactively-callable function.\n\
2fa8c0b5 1007KEY is a key sequence (a string or vector of characters or event types).\n\
c818754b
RS
1008Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
1009can be included if you use a vector.\n\
2c6f1a39
JB
1010Note that if KEY has a local binding in the current buffer\n\
1011that local binding will continue to shadow any global binding.")
1012 (keys, function)
1013 Lisp_Object keys, function;
1014{
416349ec 1015 if (!VECTORP (keys) && !STRINGP (keys))
2c6f1a39
JB
1016 keys = wrong_type_argument (Qarrayp, keys);
1017
1018 Fdefine_key (current_global_map, keys, function);
1019 return Qnil;
1020}
1021
1022DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2,
1023 "kSet key locally: \nCSet key %s locally to command: ",
1024 "Give KEY a local binding as COMMAND.\n\
1025COMMAND is a symbol naming an interactively-callable function.\n\
2fa8c0b5 1026KEY is a key sequence (a string or vector of characters or event types).\n\
c818754b
RS
1027Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
1028can be included if you use a vector.\n\
2c6f1a39 1029The binding goes in the current buffer's local map,\n\
af1d6f09 1030which in most cases is shared with all other buffers in the same major mode.")
2c6f1a39
JB
1031 (keys, function)
1032 Lisp_Object keys, function;
1033{
1034 register Lisp_Object map;
1035 map = current_buffer->keymap;
265a9e55 1036 if (NILP (map))
2c6f1a39 1037 {
ce6e5d0b 1038 map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
1039 current_buffer->keymap = map;
1040 }
1041
416349ec 1042 if (!VECTORP (keys) && !STRINGP (keys))
2c6f1a39
JB
1043 keys = wrong_type_argument (Qarrayp, keys);
1044
1045 Fdefine_key (map, keys, function);
1046 return Qnil;
1047}
1048
1049DEFUN ("global-unset-key", Fglobal_unset_key, Sglobal_unset_key,
1050 1, 1, "kUnset key globally: ",
1051 "Remove global binding of KEY.\n\
1052KEY is a string representing a sequence of keystrokes.")
1053 (keys)
1054 Lisp_Object keys;
1055{
1056 return Fglobal_set_key (keys, Qnil);
1057}
1058
1059DEFUN ("local-unset-key", Flocal_unset_key, Slocal_unset_key, 1, 1,
1060 "kUnset key locally: ",
1061 "Remove local binding of KEY.\n\
1062KEY is a string representing a sequence of keystrokes.")
1063 (keys)
1064 Lisp_Object keys;
1065{
265a9e55 1066 if (!NILP (current_buffer->keymap))
2c6f1a39
JB
1067 Flocal_set_key (keys, Qnil);
1068 return Qnil;
1069}
1070
1071DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 2, 0,
cd8520b9 1072 "Define COMMAND as a prefix command. COMMAND should be a symbol.\n\
2c6f1a39 1073A new sparse keymap is stored as COMMAND's function definition and its value.\n\
1d8d96fa
JB
1074If a second optional argument MAPVAR is given, the map is stored as\n\
1075its value instead of as COMMAND's value; but COMMAND is still defined\n\
1076as a function.")
2c6f1a39
JB
1077 (name, mapvar)
1078 Lisp_Object name, mapvar;
1079{
1080 Lisp_Object map;
ce6e5d0b 1081 map = Fmake_sparse_keymap (Qnil);
2c6f1a39 1082 Ffset (name, map);
265a9e55 1083 if (!NILP (mapvar))
2c6f1a39
JB
1084 Fset (mapvar, map);
1085 else
1086 Fset (name, map);
1087 return name;
1088}
1089
1090DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0,
1091 "Select KEYMAP as the global keymap.")
1092 (keymap)
1093 Lisp_Object keymap;
1094{
1095 keymap = get_keymap (keymap);
1096 current_global_map = keymap;
6f27e7a2
RS
1097 record_asynch_buffer_change ();
1098
2c6f1a39
JB
1099 return Qnil;
1100}
1101
1102DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0,
1103 "Select KEYMAP as the local keymap.\n\
1104If KEYMAP is nil, that means no local keymap.")
1105 (keymap)
1106 Lisp_Object keymap;
1107{
265a9e55 1108 if (!NILP (keymap))
2c6f1a39
JB
1109 keymap = get_keymap (keymap);
1110
1111 current_buffer->keymap = keymap;
6f27e7a2 1112 record_asynch_buffer_change ();
2c6f1a39
JB
1113
1114 return Qnil;
1115}
1116
1117DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0,
1118 "Return current buffer's local keymap, or nil if it has none.")
1119 ()
1120{
1121 return current_buffer->keymap;
1122}
1123
1124DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0,
1125 "Return the current global keymap.")
1126 ()
1127{
1128 return current_global_map;
1129}
cc0a8174
JB
1130
1131DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0,
1132 "Return a list of keymaps for the minor modes of the current buffer.")
1133 ()
1134{
1135 Lisp_Object *maps;
1136 int nmaps = current_minor_maps (0, &maps);
1137
1138 return Flist (nmaps, maps);
1139}
2c6f1a39 1140\f
cc0a8174
JB
1141/* Help functions for describing and documenting keymaps. */
1142
21a0d7a0
RS
1143/* This function cannot GC. */
1144
2c6f1a39 1145DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps,
53c8f9fa 1146 1, 2, 0,
2c6f1a39
JB
1147 "Find all keymaps accessible via prefix characters from KEYMAP.\n\
1148Returns a list of elements of the form (KEYS . MAP), where the sequence\n\
1149KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\
f66ef185
RS
1150so that the KEYS increase in length. The first element is (\"\" . KEYMAP).\n\
1151An optional argument PREFIX, if non-nil, should be a key sequence;\n\
1152then the value includes only maps for prefixes that start with PREFIX.")
53c8f9fa
RS
1153 (startmap, prefix)
1154 Lisp_Object startmap, prefix;
2c6f1a39 1155{
53c8f9fa
RS
1156 Lisp_Object maps, good_maps, tail;
1157 int prefixlen = 0;
1158
21a0d7a0
RS
1159 /* no need for gcpro because we don't autoload any keymaps. */
1160
53c8f9fa
RS
1161 if (!NILP (prefix))
1162 prefixlen = XINT (Flength (prefix));
2c6f1a39 1163
44a4a59b
RS
1164 if (!NILP (prefix))
1165 {
1166 /* If a prefix was specified, start with the keymap (if any) for
1167 that prefix, so we don't waste time considering other prefixes. */
1168 Lisp_Object tem;
1169 tem = Flookup_key (startmap, prefix, Qt);
1ae2097f
RS
1170 /* Flookup_key may give us nil, or a number,
1171 if the prefix is not defined in this particular map.
1172 It might even give us a list that isn't a keymap. */
1173 tem = get_keymap_1 (tem, 0, 0);
44a4a59b 1174 if (!NILP (tem))
1ae2097f 1175 maps = Fcons (Fcons (prefix, tem), Qnil);
44a4a59b
RS
1176 else
1177 return Qnil;
1178 }
1179 else
1180 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil),
1181 get_keymap (startmap)),
1182 Qnil);
2c6f1a39
JB
1183
1184 /* For each map in the list maps,
1185 look at any other maps it points to,
1186 and stick them at the end if they are not already in the list.
1187
1188 This is a breadth-first traversal, where tail is the queue of
1189 nodes, and maps accumulates a list of all nodes visited. */
1190
f5b79c1c 1191 for (tail = maps; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 1192 {
e9b6dfb0
KH
1193 register Lisp_Object thisseq, thismap;
1194 Lisp_Object last;
2c6f1a39 1195 /* Does the current sequence end in the meta-prefix-char? */
e9b6dfb0
KH
1196 int is_metized;
1197
1198 thisseq = Fcar (Fcar (tail));
1199 thismap = Fcdr (Fcar (tail));
1200 last = make_number (XINT (Flength (thisseq)) - 1);
1201 is_metized = (XINT (last) >= 0
1202 && EQ (Faref (thisseq, last), meta_prefix_char));
2c6f1a39 1203
f5b79c1c 1204 for (; CONSP (thismap); thismap = XCONS (thismap)->cdr)
2c6f1a39 1205 {
e9b6dfb0
KH
1206 Lisp_Object elt;
1207
1208 elt = XCONS (thismap)->car;
2c6f1a39 1209
f5b79c1c
JB
1210 QUIT;
1211
416349ec 1212 if (VECTORP (elt))
2c6f1a39
JB
1213 {
1214 register int i;
1215
1216 /* Vector keymap. Scan all the elements. */
db6f9d95 1217 for (i = 0; i < XVECTOR (elt)->size; i++)
2c6f1a39
JB
1218 {
1219 register Lisp_Object tem;
1220 register Lisp_Object cmd;
1221
224a16e8 1222 cmd = get_keyelt (XVECTOR (elt)->contents[i], 0);
265a9e55 1223 if (NILP (cmd)) continue;
2c6f1a39 1224 tem = Fkeymapp (cmd);
265a9e55 1225 if (!NILP (tem))
2c6f1a39
JB
1226 {
1227 cmd = get_keymap (cmd);
1228 /* Ignore keymaps that are already added to maps. */
1229 tem = Frassq (cmd, maps);
265a9e55 1230 if (NILP (tem))
2c6f1a39
JB
1231 {
1232 /* If the last key in thisseq is meta-prefix-char,
1233 turn it into a meta-ized keystroke. We know
1234 that the event we're about to append is an
f5b79c1c
JB
1235 ascii keystroke since we're processing a
1236 keymap table. */
2c6f1a39
JB
1237 if (is_metized)
1238 {
0b8fc2d4 1239 int meta_bit = meta_modifier;
2c6f1a39 1240 tem = Fcopy_sequence (thisseq);
0b8fc2d4
RS
1241
1242 Faset (tem, last, make_number (i | meta_bit));
2c6f1a39
JB
1243
1244 /* This new sequence is the same length as
1245 thisseq, so stick it in the list right
1246 after this one. */
0b8fc2d4
RS
1247 XCONS (tail)->cdr
1248 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
2c6f1a39
JB
1249 }
1250 else
1251 {
1252 tem = append_key (thisseq, make_number (i));
1253 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil));
1254 }
1255 }
1256 }
1257 }
f5b79c1c
JB
1258 }
1259 else if (CONSP (elt))
2c6f1a39 1260 {
e9b6dfb0 1261 register Lisp_Object cmd, tem, filter;
2c6f1a39 1262
224a16e8 1263 cmd = get_keyelt (XCONS (elt)->cdr, 0);
2c6f1a39
JB
1264 /* Ignore definitions that aren't keymaps themselves. */
1265 tem = Fkeymapp (cmd);
265a9e55 1266 if (!NILP (tem))
2c6f1a39
JB
1267 {
1268 /* Ignore keymaps that have been seen already. */
1269 cmd = get_keymap (cmd);
1270 tem = Frassq (cmd, maps);
265a9e55 1271 if (NILP (tem))
2c6f1a39 1272 {
53c8f9fa 1273 /* Let elt be the event defined by this map entry. */
2c6f1a39
JB
1274 elt = XCONS (elt)->car;
1275
1276 /* If the last key in thisseq is meta-prefix-char, and
1277 this entry is a binding for an ascii keystroke,
1278 turn it into a meta-ized keystroke. */
416349ec 1279 if (is_metized && INTEGERP (elt))
2c6f1a39
JB
1280 {
1281 tem = Fcopy_sequence (thisseq);
0b8fc2d4
RS
1282 Faset (tem, last,
1283 make_number (XINT (elt) | meta_modifier));
2c6f1a39
JB
1284
1285 /* This new sequence is the same length as
1286 thisseq, so stick it in the list right
1287 after this one. */
53c8f9fa
RS
1288 XCONS (tail)->cdr
1289 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr);
2c6f1a39
JB
1290 }
1291 else
1292 nconc2 (tail,
1293 Fcons (Fcons (append_key (thisseq, elt), cmd),
1294 Qnil));
1295 }
1296 }
1297 }
2c6f1a39 1298 }
2c6f1a39
JB
1299 }
1300
53c8f9fa
RS
1301 if (NILP (prefix))
1302 return maps;
1303
1304 /* Now find just the maps whose access prefixes start with PREFIX. */
1305
1306 good_maps = Qnil;
1307 for (; CONSP (maps); maps = XCONS (maps)->cdr)
1308 {
1309 Lisp_Object elt, thisseq;
1310 elt = XCONS (maps)->car;
1311 thisseq = XCONS (elt)->car;
1312 /* The access prefix must be at least as long as PREFIX,
1313 and the first elements must match those of PREFIX. */
1314 if (XINT (Flength (thisseq)) >= prefixlen)
1315 {
1316 int i;
1317 for (i = 0; i < prefixlen; i++)
1318 {
1319 Lisp_Object i1;
6e344130 1320 XSETFASTINT (i1, i);
53c8f9fa
RS
1321 if (!EQ (Faref (thisseq, i1), Faref (prefix, i1)))
1322 break;
1323 }
1324 if (i == prefixlen)
1325 good_maps = Fcons (elt, good_maps);
1326 }
1327 }
1328
1329 return Fnreverse (good_maps);
2c6f1a39
JB
1330}
1331
1332Lisp_Object Qsingle_key_description, Qkey_description;
1333
21a0d7a0
RS
1334/* This function cannot GC. */
1335
2c6f1a39
JB
1336DEFUN ("key-description", Fkey_description, Skey_description, 1, 1, 0,
1337 "Return a pretty description of key-sequence KEYS.\n\
1338Control characters turn into \"C-foo\" sequences, meta into \"M-foo\"\n\
1339spaces are put between sequence elements, etc.")
1340 (keys)
1341 Lisp_Object keys;
1342{
4c7d5f13
RS
1343 int len;
1344 int i;
1345 Lisp_Object sep;
1346 Lisp_Object *args;
1347
47684cd9 1348 if (STRINGP (keys))
6ba6e250
RS
1349 {
1350 Lisp_Object vector;
6ba6e250
RS
1351 vector = Fmake_vector (Flength (keys), Qnil);
1352 for (i = 0; i < XSTRING (keys)->size; i++)
1353 {
1354 if (XSTRING (keys)->data[i] & 0x80)
6e344130
KH
1355 XSETFASTINT (XVECTOR (vector)->contents[i],
1356 meta_modifier | (XSTRING (keys)->data[i] & ~0x80));
6ba6e250 1357 else
6e344130
KH
1358 XSETFASTINT (XVECTOR (vector)->contents[i],
1359 XSTRING (keys)->data[i]);
6ba6e250
RS
1360 }
1361 keys = vector;
1362 }
e283121b 1363 else if (!VECTORP (keys))
47684cd9 1364 keys = wrong_type_argument (Qarrayp, keys);
4c7d5f13
RS
1365
1366 /* In effect, this computes
1367 (mapconcat 'single-key-description keys " ")
1368 but we shouldn't use mapconcat because it can do GC. */
1369
1370 len = XVECTOR (keys)->size;
1371 sep = build_string (" ");
1372 /* This has one extra element at the end that we don't pass to Fconcat. */
1373 args = (Lisp_Object *) alloca (len * 2 * sizeof (Lisp_Object));
1374
1375 for (i = 0; i < len; i++)
1376 {
1377 args[i * 2] = Fsingle_key_description (XVECTOR (keys)->contents[i]);
1378 args[i * 2 + 1] = sep;
1379 }
1380
1381 return Fconcat (len * 2 - 1, args);
2c6f1a39
JB
1382}
1383
1384char *
1385push_key_description (c, p)
1386 register unsigned int c;
1387 register char *p;
1388{
71ac885b
RS
1389 /* Clear all the meaningless bits above the meta bit. */
1390 c &= meta_modifier | ~ - meta_modifier;
1391
6ba6e250
RS
1392 if (c & alt_modifier)
1393 {
1394 *p++ = 'A';
1395 *p++ = '-';
1396 c -= alt_modifier;
1397 }
1398 if (c & ctrl_modifier)
1399 {
1400 *p++ = 'C';
1401 *p++ = '-';
1402 c -= ctrl_modifier;
1403 }
1404 if (c & hyper_modifier)
1405 {
1406 *p++ = 'H';
1407 *p++ = '-';
1408 c -= hyper_modifier;
1409 }
1410 if (c & meta_modifier)
2c6f1a39
JB
1411 {
1412 *p++ = 'M';
1413 *p++ = '-';
6ba6e250
RS
1414 c -= meta_modifier;
1415 }
1416 if (c & shift_modifier)
1417 {
1418 *p++ = 'S';
1419 *p++ = '-';
1420 c -= shift_modifier;
1421 }
1422 if (c & super_modifier)
1423 {
1424 *p++ = 's';
1425 *p++ = '-';
1426 c -= super_modifier;
2c6f1a39
JB
1427 }
1428 if (c < 040)
1429 {
1430 if (c == 033)
1431 {
1432 *p++ = 'E';
1433 *p++ = 'S';
1434 *p++ = 'C';
1435 }
6ba6e250 1436 else if (c == '\t')
2c6f1a39
JB
1437 {
1438 *p++ = 'T';
1439 *p++ = 'A';
1440 *p++ = 'B';
1441 }
1442 else if (c == Ctl('J'))
1443 {
1444 *p++ = 'L';
1445 *p++ = 'F';
1446 *p++ = 'D';
1447 }
1448 else if (c == Ctl('M'))
1449 {
1450 *p++ = 'R';
1451 *p++ = 'E';
1452 *p++ = 'T';
1453 }
1454 else
1455 {
1456 *p++ = 'C';
1457 *p++ = '-';
1458 if (c > 0 && c <= Ctl ('Z'))
1459 *p++ = c + 0140;
1460 else
1461 *p++ = c + 0100;
1462 }
1463 }
1464 else if (c == 0177)
1465 {
1466 *p++ = 'D';
1467 *p++ = 'E';
1468 *p++ = 'L';
1469 }
1470 else if (c == ' ')
1471 {
1472 *p++ = 'S';
1473 *p++ = 'P';
1474 *p++ = 'C';
1475 }
6ba6e250 1476 else if (c < 256)
2c6f1a39 1477 *p++ = c;
6ba6e250
RS
1478 else
1479 {
1480 *p++ = '\\';
1481 *p++ = (7 & (c >> 15)) + '0';
1482 *p++ = (7 & (c >> 12)) + '0';
1483 *p++ = (7 & (c >> 9)) + '0';
1484 *p++ = (7 & (c >> 6)) + '0';
1485 *p++ = (7 & (c >> 3)) + '0';
1486 *p++ = (7 & (c >> 0)) + '0';
1487 }
2c6f1a39
JB
1488
1489 return p;
1490}
1491
21a0d7a0
RS
1492/* This function cannot GC. */
1493
2c6f1a39
JB
1494DEFUN ("single-key-description", Fsingle_key_description, Ssingle_key_description, 1, 1, 0,
1495 "Return a pretty description of command character KEY.\n\
1496Control characters turn into C-whatever, etc.")
1497 (key)
1498 Lisp_Object key;
1499{
6ba6e250 1500 char tem[20];
2c6f1a39 1501
cebd887d 1502 key = EVENT_HEAD (key);
6bbbd9b0 1503
2c6f1a39
JB
1504 switch (XTYPE (key))
1505 {
1506 case Lisp_Int: /* Normal character */
6ba6e250 1507 *push_key_description (XUINT (key), tem) = 0;
2c6f1a39
JB
1508 return build_string (tem);
1509
1510 case Lisp_Symbol: /* Function key or event-symbol */
1511 return Fsymbol_name (key);
1512
1fefcb09
KH
1513 /* Buffer names in the menubar can trigger this. */
1514 case Lisp_String:
1515 return Fcopy_sequence (key);
1516
2c6f1a39 1517 default:
4b04c52e 1518 error ("KEY must be an integer, cons, symbol, or string");
2c6f1a39
JB
1519 }
1520}
1521
1522char *
1523push_text_char_description (c, p)
1524 register unsigned int c;
1525 register char *p;
1526{
1527 if (c >= 0200)
1528 {
1529 *p++ = 'M';
1530 *p++ = '-';
1531 c -= 0200;
1532 }
1533 if (c < 040)
1534 {
1535 *p++ = '^';
1536 *p++ = c + 64; /* 'A' - 1 */
1537 }
1538 else if (c == 0177)
1539 {
1540 *p++ = '^';
1541 *p++ = '?';
1542 }
1543 else
1544 *p++ = c;
1545 return p;
1546}
1547
21a0d7a0
RS
1548/* This function cannot GC. */
1549
2c6f1a39
JB
1550DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
1551 "Return a pretty description of file-character CHAR.\n\
1552Control characters turn into \"^char\", etc.")
1553 (chr)
1554 Lisp_Object chr;
1555{
1556 char tem[6];
1557
1558 CHECK_NUMBER (chr, 0);
1559
1560 *push_text_char_description (XINT (chr) & 0377, tem) = 0;
1561
1562 return build_string (tem);
1563}
2fc66973
JB
1564
1565/* Return non-zero if SEQ contains only ASCII characters, perhaps with
1566 a meta bit. */
1567static int
1568ascii_sequence_p (seq)
1569 Lisp_Object seq;
1570{
6e344130 1571 int i;
2fc66973 1572 int len = XINT (Flength (seq));
ffab2bd6 1573
6e344130 1574 for (i = 0; i < len; i++)
2fc66973 1575 {
6e344130 1576 Lisp_Object ii, elt;
ffab2bd6 1577
6e344130
KH
1578 XSETFASTINT (ii, i);
1579 elt = Faref (seq, ii);
2fc66973 1580
416349ec 1581 if (!INTEGERP (elt)
2fc66973
JB
1582 || (XUINT (elt) & ~CHAR_META) >= 0x80)
1583 return 0;
1584 }
1585
1586 return 1;
1587}
1588
2c6f1a39 1589\f
cc0a8174
JB
1590/* where-is - finding a command in a set of keymaps. */
1591
21a0d7a0
RS
1592/* This function can GC if Flookup_key autoloads any keymaps. */
1593
f0148b5e
RS
1594DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 4, 0,
1595 "Return list of keys that invoke DEFINITION.\n\
1596If KEYMAP is non-nil, search only KEYMAP and the global keymap.\n\
1597If KEYMAP is nil, search all the currently active keymaps.\n\
2c6f1a39 1598\n\
f0148b5e 1599If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,\n\
b8d584f6
RS
1600rather than a list of all possible key sequences.\n\
1601If FIRSTONLY is t, avoid key sequences which use non-ASCII\n\
2fc66973
JB
1602keys and therefore may not be usable on ASCII terminals. If FIRSTONLY\n\
1603is the symbol `non-ascii', return the first binding found, no matter\n\
1604what its components.\n\
2c6f1a39 1605\n\
f0148b5e 1606If optional 4th arg NOINDIRECT is non-nil, don't follow indirections\n\
2c6f1a39
JB
1607to other keymaps or slots. This makes it possible to search for an\n\
1608indirect definition itself.")
f0148b5e
RS
1609 (definition, keymap, firstonly, noindirect)
1610 Lisp_Object definition, keymap;
2c6f1a39
JB
1611 Lisp_Object firstonly, noindirect;
1612{
21a0d7a0
RS
1613 Lisp_Object maps;
1614 Lisp_Object found, sequence;
f0148b5e 1615 int keymap_specified = !NILP (keymap);
21a0d7a0 1616 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2c6f1a39 1617
f0148b5e
RS
1618 if (! keymap_specified)
1619 {
1620#ifdef USE_TEXT_PROPERTIES
1621 keymap = get_local_map (PT, current_buffer);
1622#else
1623 keymap = current_buffer->keymap;
1624#endif
1625 }
2c6f1a39 1626
f0148b5e
RS
1627 if (!NILP (keymap))
1628 maps = nconc2 (Faccessible_keymaps (get_keymap (keymap), Qnil),
1629 Faccessible_keymaps (get_keymap (current_global_map),
1630 Qnil));
2c6f1a39 1631 else
f0148b5e
RS
1632 maps = Faccessible_keymaps (get_keymap (current_global_map), Qnil);
1633
1634 /* Put the minor mode keymaps on the front. */
1635 if (! keymap_specified)
1636 {
1637 Lisp_Object minors;
1638 minors = Fnreverse (Fcurrent_minor_mode_maps ());
1639 while (!NILP (minors))
1640 {
1641 maps = nconc2 (Faccessible_keymaps (get_keymap (XCONS (minors)->car),
1642 Qnil),
1643 maps);
1644 minors = XCONS (minors)->cdr;
1645 }
1646 }
2c6f1a39 1647
21a0d7a0 1648 GCPRO5 (definition, keymap, maps, found, sequence);
2c6f1a39 1649 found = Qnil;
21a0d7a0 1650 sequence = Qnil;
2c6f1a39 1651
265a9e55 1652 for (; !NILP (maps); maps = Fcdr (maps))
2c6f1a39 1653 {
e9b6dfb0
KH
1654 /* Key sequence to reach map, and the map that it reaches */
1655 register Lisp_Object this, map;
f5b79c1c
JB
1656
1657 /* If Fcar (map) is a VECTOR, the current element within that vector. */
1658 int i = 0;
2c6f1a39
JB
1659
1660 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
1661 [M-CHAR] sequences, check if last character of the sequence
1662 is the meta-prefix char. */
e9b6dfb0
KH
1663 Lisp_Object last;
1664 int last_is_meta;
1665
1666 this = Fcar (Fcar (maps));
1667 map = Fcdr (Fcar (maps));
1668 last = make_number (XINT (Flength (this)) - 1);
1669 last_is_meta = (XINT (last) >= 0
1670 && EQ (Faref (this, last), meta_prefix_char));
2c6f1a39 1671
fde3a52f
JB
1672 QUIT;
1673
f5b79c1c 1674 while (CONSP (map))
2c6f1a39 1675 {
f5b79c1c
JB
1676 /* Because the code we want to run on each binding is rather
1677 large, we don't want to have two separate loop bodies for
1678 sparse keymap bindings and tables; we want to iterate one
1679 loop body over both keymap and vector bindings.
1680
1681 For this reason, if Fcar (map) is a vector, we don't
1682 advance map to the next element until i indicates that we
1683 have finished off the vector. */
2c6f1a39 1684
21a0d7a0 1685 Lisp_Object elt, key, binding;
e9b6dfb0 1686 elt = XCONS (map)->car;
f5b79c1c 1687
fde3a52f
JB
1688 QUIT;
1689
f5b79c1c
JB
1690 /* Set key and binding to the current key and binding, and
1691 advance map and i to the next binding. */
416349ec 1692 if (VECTORP (elt))
2c6f1a39
JB
1693 {
1694 /* In a vector, look at each element. */
f5b79c1c 1695 binding = XVECTOR (elt)->contents[i];
6e344130 1696 XSETFASTINT (key, i);
2c6f1a39
JB
1697 i++;
1698
f5b79c1c
JB
1699 /* If we've just finished scanning a vector, advance map
1700 to the next element, and reset i in anticipation of the
1701 next vector we may find. */
db6f9d95 1702 if (i >= XVECTOR (elt)->size)
2c6f1a39 1703 {
f5b79c1c
JB
1704 map = XCONS (map)->cdr;
1705 i = 0;
2c6f1a39 1706 }
f5b79c1c
JB
1707 }
1708 else if (CONSP (elt))
1709 {
2c6f1a39 1710 key = Fcar (Fcar (map));
f5b79c1c
JB
1711 binding = Fcdr (Fcar (map));
1712
1713 map = XCONS (map)->cdr;
2c6f1a39
JB
1714 }
1715 else
f5b79c1c
JB
1716 /* We want to ignore keymap elements that are neither
1717 vectors nor conses. */
fde3a52f
JB
1718 {
1719 map = XCONS (map)->cdr;
1720 continue;
1721 }
2c6f1a39
JB
1722
1723 /* Search through indirections unless that's not wanted. */
265a9e55 1724 if (NILP (noindirect))
224a16e8 1725 binding = get_keyelt (binding, 0);
2c6f1a39
JB
1726
1727 /* End this iteration if this element does not match
1728 the target. */
1729
416349ec 1730 if (CONSP (definition))
2c6f1a39
JB
1731 {
1732 Lisp_Object tem;
1733 tem = Fequal (binding, definition);
265a9e55 1734 if (NILP (tem))
2c6f1a39
JB
1735 continue;
1736 }
1737 else
1738 if (!EQ (binding, definition))
1739 continue;
1740
1741 /* We have found a match.
1742 Construct the key sequence where we found it. */
416349ec 1743 if (INTEGERP (key) && last_is_meta)
2c6f1a39
JB
1744 {
1745 sequence = Fcopy_sequence (this);
0b8fc2d4 1746 Faset (sequence, last, make_number (XINT (key) | meta_modifier));
2c6f1a39
JB
1747 }
1748 else
1749 sequence = append_key (this, key);
1750
1751 /* Verify that this key binding is not shadowed by another
1752 binding for the same key, before we say it exists.
1753
1754 Mechanism: look for local definition of this key and if
1755 it is defined and does not match what we found then
1756 ignore this key.
1757
1758 Either nil or number as value from Flookup_key
1759 means undefined. */
f0148b5e 1760 if (keymap_specified)
2c6f1a39 1761 {
f0148b5e 1762 binding = Flookup_key (keymap, sequence, Qnil);
416349ec 1763 if (!NILP (binding) && !INTEGERP (binding))
2c6f1a39 1764 {
416349ec 1765 if (CONSP (definition))
2c6f1a39
JB
1766 {
1767 Lisp_Object tem;
1768 tem = Fequal (binding, definition);
265a9e55 1769 if (NILP (tem))
2c6f1a39
JB
1770 continue;
1771 }
1772 else
1773 if (!EQ (binding, definition))
1774 continue;
1775 }
1776 }
f0148b5e
RS
1777 else
1778 {
1779 binding = Fkey_binding (sequence, Qnil);
1780 if (!EQ (binding, definition))
1781 continue;
1782 }
2c6f1a39 1783
9fc722de
KH
1784 /* It is a true unshadowed match. Record it, unless it's already
1785 been seen (as could happen when inheriting keymaps). */
1786 if (NILP (Fmember (sequence, found)))
1787 found = Fcons (sequence, found);
2c6f1a39 1788
2fc66973
JB
1789 /* If firstonly is Qnon_ascii, then we can return the first
1790 binding we find. If firstonly is not Qnon_ascii but not
1791 nil, then we should return the first ascii-only binding
1792 we find. */
1793 if (EQ (firstonly, Qnon_ascii))
21a0d7a0 1794 RETURN_UNGCPRO (sequence);
2fc66973 1795 else if (! NILP (firstonly) && ascii_sequence_p (sequence))
21a0d7a0 1796 RETURN_UNGCPRO (sequence);
2c6f1a39
JB
1797 }
1798 }
2fc66973 1799
21a0d7a0
RS
1800 UNGCPRO;
1801
2fc66973
JB
1802 found = Fnreverse (found);
1803
1804 /* firstonly may have been t, but we may have gone all the way through
1805 the keymaps without finding an all-ASCII key sequence. So just
1806 return the best we could find. */
1807 if (! NILP (firstonly))
1808 return Fcar (found);
1809
1810 return found;
2c6f1a39 1811}
2c6f1a39 1812\f
cc0a8174
JB
1813/* describe-bindings - summarizing all the bindings in a set of keymaps. */
1814
53c8f9fa 1815DEFUN ("describe-bindings", Fdescribe_bindings, Sdescribe_bindings, 0, 1, "",
2c6f1a39 1816 "Show a list of all defined keys, and their definitions.\n\
53c8f9fa
RS
1817The list is put in a buffer, which is displayed.\n\
1818An optional argument PREFIX, if non-nil, should be a key sequence;\n\
1819then we display only bindings that start with that prefix.")
1820 (prefix)
1821 Lisp_Object prefix;
2c6f1a39
JB
1822{
1823 register Lisp_Object thisbuf;
bff4ec1f 1824 XSETBUFFER (thisbuf, current_buffer);
2c6f1a39
JB
1825 internal_with_output_to_temp_buffer ("*Help*",
1826 describe_buffer_bindings,
53c8f9fa 1827 Fcons (thisbuf, prefix));
2c6f1a39
JB
1828 return Qnil;
1829}
1830
53c8f9fa
RS
1831/* ARG is (BUFFER . PREFIX). */
1832
2c6f1a39 1833static Lisp_Object
53c8f9fa
RS
1834describe_buffer_bindings (arg)
1835 Lisp_Object arg;
2c6f1a39 1836{
53c8f9fa 1837 Lisp_Object descbuf, prefix, shadow;
d7ab90a9
KH
1838 register Lisp_Object start1;
1839 struct gcpro gcpro1;
2c6f1a39 1840
4726a9f1
JB
1841 char *alternate_heading
1842 = "\
1843Alternate Characters (use anywhere the nominal character is listed):\n\
1844nominal alternate\n\
1845------- ---------\n";
2c6f1a39 1846
53c8f9fa
RS
1847 descbuf = XCONS (arg)->car;
1848 prefix = XCONS (arg)->cdr;
a588e041 1849 shadow = Qnil;
d7ab90a9 1850 GCPRO1 (shadow);
53c8f9fa 1851
2c6f1a39
JB
1852 Fset_buffer (Vstandard_output);
1853
4726a9f1 1854 /* Report on alternates for keys. */
416349ec 1855 if (STRINGP (Vkeyboard_translate_table))
4726a9f1
JB
1856 {
1857 int c;
1858 unsigned char *translate = XSTRING (Vkeyboard_translate_table)->data;
1859 int translate_len = XSTRING (Vkeyboard_translate_table)->size;
1860
1861 for (c = 0; c < translate_len; c++)
1862 if (translate[c] != c)
1863 {
1864 char buf[20];
1865 char *bufend;
1866
1867 if (alternate_heading)
1868 {
1869 insert_string (alternate_heading);
1870 alternate_heading = 0;
1871 }
1872
1873 bufend = push_key_description (translate[c], buf);
1874 insert (buf, bufend - buf);
1875 Findent_to (make_number (16), make_number (1));
1876 bufend = push_key_description (c, buf);
1877 insert (buf, bufend - buf);
1878
1879 insert ("\n", 1);
1880 }
1881
1882 insert ("\n", 1);
1883 }
1884
cc0a8174
JB
1885 {
1886 int i, nmaps;
1887 Lisp_Object *modes, *maps;
1888
4726a9f1
JB
1889 /* Temporarily switch to descbuf, so that we can get that buffer's
1890 minor modes correctly. */
1891 Fset_buffer (descbuf);
7d92e329
RS
1892 if (!NILP (Voverriding_local_map))
1893 nmaps = 0;
1894 else
1895 nmaps = current_minor_maps (&modes, &maps);
4726a9f1
JB
1896 Fset_buffer (Vstandard_output);
1897
53c8f9fa 1898 /* Print the minor mode maps. */
cc0a8174
JB
1899 for (i = 0; i < nmaps; i++)
1900 {
c9b7c53a 1901 /* The title for a minor mode keymap
07f15dfd
RS
1902 is constructed at run time.
1903 We let describe_map_tree do the actual insertion
1904 because it takes care of other features when doing so. */
c9b7c53a 1905 char *title, *p;
07f15dfd 1906
416349ec 1907 if (!SYMBOLP (modes[i]))
d7ab90a9
KH
1908 abort();
1909
1910 p = title = (char *) alloca (40 + XSYMBOL (modes[i])->name->size);
1911 *p++ = '`';
1912 bcopy (XSYMBOL (modes[i])->name->data, p,
1913 XSYMBOL (modes[i])->name->size);
1914 p += XSYMBOL (modes[i])->name->size;
1915 *p++ = '\'';
c9b7c53a
KH
1916 bcopy (" Minor Mode Bindings", p, sizeof (" Minor Mode Bindings") - 1);
1917 p += sizeof (" Minor Mode Bindings") - 1;
07f15dfd
RS
1918 *p = 0;
1919
af1d6f09 1920 describe_map_tree (maps[i], 0, shadow, prefix, title, 0);
53c8f9fa 1921 shadow = Fcons (maps[i], shadow);
cc0a8174
JB
1922 }
1923 }
1924
53c8f9fa 1925 /* Print the (major mode) local map. */
7d92e329
RS
1926 if (!NILP (Voverriding_local_map))
1927 start1 = Voverriding_local_map;
1928 else
1929 start1 = XBUFFER (descbuf)->keymap;
1930
265a9e55 1931 if (!NILP (start1))
2c6f1a39 1932 {
53c8f9fa 1933 describe_map_tree (start1, 0, shadow, prefix,
af1d6f09 1934 "Major Mode Bindings", 0);
53c8f9fa 1935 shadow = Fcons (start1, shadow);
2c6f1a39
JB
1936 }
1937
53c8f9fa 1938 describe_map_tree (current_global_map, 0, shadow, prefix,
af1d6f09 1939 "Global Bindings", 0);
2c6f1a39
JB
1940
1941 Fset_buffer (descbuf);
d7ab90a9 1942 UNGCPRO;
2c6f1a39
JB
1943 return Qnil;
1944}
1945
1946/* Insert a desription of the key bindings in STARTMAP,
1947 followed by those of all maps reachable through STARTMAP.
1948 If PARTIAL is nonzero, omit certain "uninteresting" commands
1949 (such as `undefined').
53c8f9fa
RS
1950 If SHADOW is non-nil, it is a list of maps;
1951 don't mention keys which would be shadowed by any of them.
1952 PREFIX, if non-nil, says mention only keys that start with PREFIX.
07f15dfd 1953 TITLE, if not 0, is a string to insert at the beginning.
af1d6f09
RS
1954 TITLE should not end with a colon or a newline; we supply that.
1955 If NOMENU is not 0, then omit menu-bar commands. */
2c6f1a39
JB
1956
1957void
af1d6f09 1958describe_map_tree (startmap, partial, shadow, prefix, title, nomenu)
53c8f9fa 1959 Lisp_Object startmap, shadow, prefix;
2c6f1a39 1960 int partial;
53c8f9fa 1961 char *title;
af1d6f09 1962 int nomenu;
2c6f1a39 1963{
e3dfcd4e
KH
1964 Lisp_Object maps, seen, sub_shadows;
1965 struct gcpro gcpro1, gcpro2, gcpro3;
07f15dfd 1966 int something = 0;
53c8f9fa
RS
1967 char *key_heading
1968 = "\
1969key binding\n\
1970--- -------\n";
2c6f1a39 1971
53c8f9fa 1972 maps = Faccessible_keymaps (startmap, prefix);
925083d1 1973 seen = Qnil;
e3dfcd4e
KH
1974 sub_shadows = Qnil;
1975 GCPRO3 (maps, seen, sub_shadows);
2c6f1a39 1976
af1d6f09
RS
1977 if (nomenu)
1978 {
1979 Lisp_Object list;
1980
1981 /* Delete from MAPS each element that is for the menu bar. */
1982 for (list = maps; !NILP (list); list = XCONS (list)->cdr)
1983 {
1984 Lisp_Object elt, prefix, tem;
1985
1986 elt = Fcar (list);
1987 prefix = Fcar (elt);
1988 if (XVECTOR (prefix)->size >= 1)
1989 {
1990 tem = Faref (prefix, make_number (0));
1991 if (EQ (tem, Qmenu_bar))
1992 maps = Fdelq (elt, maps);
1993 }
1994 }
1995 }
1996
53c8f9fa
RS
1997 if (!NILP (maps))
1998 {
1999 if (title)
07f15dfd
RS
2000 {
2001 insert_string (title);
2002 if (!NILP (prefix))
2003 {
2004 insert_string (" Starting With ");
2005 insert1 (Fkey_description (prefix));
2006 }
2007 insert_string (":\n");
2008 }
53c8f9fa 2009 insert_string (key_heading);
07f15dfd 2010 something = 1;
53c8f9fa
RS
2011 }
2012
265a9e55 2013 for (; !NILP (maps); maps = Fcdr (maps))
2c6f1a39 2014 {
e3dfcd4e 2015 register Lisp_Object elt, prefix, tail;
53c8f9fa 2016
2c6f1a39 2017 elt = Fcar (maps);
53c8f9fa
RS
2018 prefix = Fcar (elt);
2019
2020 sub_shadows = Qnil;
2021
2022 for (tail = shadow; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39 2023 {
53c8f9fa
RS
2024 Lisp_Object shmap;
2025
2026 shmap = XCONS (tail)->car;
2027
2028 /* If the sequence by which we reach this keymap is zero-length,
2029 then the shadow map for this keymap is just SHADOW. */
416349ec
KH
2030 if ((STRINGP (prefix) && XSTRING (prefix)->size == 0)
2031 || (VECTORP (prefix) && XVECTOR (prefix)->size == 0))
53c8f9fa
RS
2032 ;
2033 /* If the sequence by which we reach this keymap actually has
2034 some elements, then the sequence's definition in SHADOW is
2035 what we should use. */
2036 else
2037 {
98234407 2038 shmap = Flookup_key (shmap, Fcar (elt), Qt);
416349ec 2039 if (INTEGERP (shmap))
53c8f9fa
RS
2040 shmap = Qnil;
2041 }
2042
2043 /* If shmap is not nil and not a keymap,
2044 it completely shadows this map, so don't
2045 describe this map at all. */
2046 if (!NILP (shmap) && NILP (Fkeymapp (shmap)))
2047 goto skip;
2048
2049 if (!NILP (shmap))
2050 sub_shadows = Fcons (shmap, sub_shadows);
2c6f1a39
JB
2051 }
2052
925083d1
KH
2053 describe_map (Fcdr (elt), Fcar (elt), describe_command,
2054 partial, sub_shadows, &seen);
53c8f9fa
RS
2055
2056 skip: ;
2c6f1a39
JB
2057 }
2058
07f15dfd
RS
2059 if (something)
2060 insert_string ("\n");
2061
2c6f1a39
JB
2062 UNGCPRO;
2063}
2064
2065static void
2066describe_command (definition)
2067 Lisp_Object definition;
2068{
2069 register Lisp_Object tem1;
2070
2071 Findent_to (make_number (16), make_number (1));
2072
416349ec 2073 if (SYMBOLP (definition))
2c6f1a39 2074 {
bff4ec1f 2075 XSETSTRING (tem1, XSYMBOL (definition)->name);
2c6f1a39
JB
2076 insert1 (tem1);
2077 insert_string ("\n");
2078 }
24065b9c
RS
2079 else if (STRINGP (definition))
2080 insert_string ("Keyboard Macro\n");
2c6f1a39
JB
2081 else
2082 {
2083 tem1 = Fkeymapp (definition);
265a9e55 2084 if (!NILP (tem1))
2c6f1a39
JB
2085 insert_string ("Prefix Command\n");
2086 else
2087 insert_string ("??\n");
2088 }
2089}
2090
53c8f9fa
RS
2091/* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2092 Returns the first non-nil binding found in any of those maps. */
2093
2094static Lisp_Object
2095shadow_lookup (shadow, key, flag)
2096 Lisp_Object shadow, key, flag;
2097{
2098 Lisp_Object tail, value;
2099
2100 for (tail = shadow; CONSP (tail); tail = XCONS (tail)->cdr)
2101 {
2102 value = Flookup_key (XCONS (tail)->car, key, flag);
2103 if (!NILP (value))
2104 return value;
2105 }
2106 return Qnil;
2107}
2108
c3c0ee93
KH
2109/* Describe the contents of map MAP, assuming that this map itself is
2110 reached by the sequence of prefix keys KEYS (a string or vector).
925083d1 2111 PARTIAL, SHADOW are as in `describe_map_tree' above. */
2c6f1a39
JB
2112
2113static void
925083d1 2114describe_map (map, keys, elt_describer, partial, shadow, seen)
c3c0ee93
KH
2115 register Lisp_Object map;
2116 Lisp_Object keys;
2c6f1a39
JB
2117 int (*elt_describer) ();
2118 int partial;
2119 Lisp_Object shadow;
925083d1 2120 Lisp_Object *seen;
2c6f1a39 2121{
c3c0ee93 2122 Lisp_Object elt_prefix;
53c8f9fa 2123 Lisp_Object tail, definition, event;
99a225a9 2124 Lisp_Object tem;
2c6f1a39
JB
2125 Lisp_Object suppress;
2126 Lisp_Object kludge;
2127 int first = 1;
2128 struct gcpro gcpro1, gcpro2, gcpro3;
2129
c3c0ee93
KH
2130 if (!NILP (keys) && XFASTINT (Flength (keys)) > 0)
2131 {
c3c0ee93
KH
2132 /* Call Fkey_description first, to avoid GC bug for the other string. */
2133 tem = Fkey_description (keys);
2134 elt_prefix = concat2 (tem, build_string (" "));
2135 }
2136 else
2137 elt_prefix = Qnil;
2138
2c6f1a39
JB
2139 if (partial)
2140 suppress = intern ("suppress-keymap");
2141
2142 /* This vector gets used to present single keys to Flookup_key. Since
f5b79c1c 2143 that is done once per keymap element, we don't want to cons up a
2c6f1a39
JB
2144 fresh vector every time. */
2145 kludge = Fmake_vector (make_number (1), Qnil);
99a225a9 2146 definition = Qnil;
2c6f1a39 2147
99a225a9 2148 GCPRO3 (elt_prefix, definition, kludge);
2c6f1a39 2149
925083d1 2150 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr)
2c6f1a39
JB
2151 {
2152 QUIT;
2c6f1a39 2153
416349ec 2154 if (VECTORP (XCONS (tail)->car))
53c8f9fa 2155 describe_vector (XCONS (tail)->car,
f5b79c1c 2156 elt_prefix, elt_describer, partial, shadow);
925083d1 2157 else if (CONSP (XCONS (tail)->car))
2c6f1a39 2158 {
925083d1 2159 event = XCONS (XCONS (tail)->car)->car;
2c3b35b0
RS
2160
2161 /* Ignore bindings whose "keys" are not really valid events.
2162 (We get these in the frames and buffers menu.) */
2163 if (! (SYMBOLP (event) || INTEGERP (event)))
c96dcc01 2164 continue;
2c3b35b0 2165
925083d1 2166 definition = get_keyelt (XCONS (XCONS (tail)->car)->cdr, 0);
2c6f1a39 2167
f5b79c1c 2168 /* Don't show undefined commands or suppressed commands. */
99a225a9 2169 if (NILP (definition)) continue;
416349ec 2170 if (SYMBOLP (definition) && partial)
f5b79c1c 2171 {
99a225a9
RS
2172 tem = Fget (definition, suppress);
2173 if (!NILP (tem))
f5b79c1c
JB
2174 continue;
2175 }
2c6f1a39 2176
f5b79c1c
JB
2177 /* Don't show a command that isn't really visible
2178 because a local definition of the same key shadows it. */
2c6f1a39 2179
99a225a9 2180 XVECTOR (kludge)->contents[0] = event;
f5b79c1c
JB
2181 if (!NILP (shadow))
2182 {
53c8f9fa 2183 tem = shadow_lookup (shadow, kludge, Qt);
f5b79c1c
JB
2184 if (!NILP (tem)) continue;
2185 }
2186
c3c0ee93 2187 tem = Flookup_key (map, kludge, Qt);
99a225a9
RS
2188 if (! EQ (tem, definition)) continue;
2189
f5b79c1c
JB
2190 if (first)
2191 {
2192 insert ("\n", 1);
2193 first = 0;
2194 }
2c6f1a39 2195
f5b79c1c
JB
2196 if (!NILP (elt_prefix))
2197 insert1 (elt_prefix);
2c6f1a39 2198
99a225a9
RS
2199 /* THIS gets the string to describe the character EVENT. */
2200 insert1 (Fsingle_key_description (event));
2c6f1a39 2201
f5b79c1c
JB
2202 /* Print a description of the definition of this character.
2203 elt_describer will take care of spacing out far enough
2204 for alignment purposes. */
99a225a9 2205 (*elt_describer) (definition);
f5b79c1c 2206 }
925083d1
KH
2207 else if (EQ (XCONS (tail)->car, Qkeymap))
2208 {
2209 /* The same keymap might be in the structure twice, if we're
2210 using an inherited keymap. So skip anything we've already
2211 encountered. */
2212 tem = Fassq (tail, *seen);
b5b90d18 2213 if (CONSP (tem) && !NILP (Fequal (XCONS (tem)->car, keys)))
925083d1
KH
2214 break;
2215 *seen = Fcons (Fcons (tail, keys), *seen);
2216 }
2c6f1a39
JB
2217 }
2218
2219 UNGCPRO;
2220}
2221
2222static int
2223describe_vector_princ (elt)
2224 Lisp_Object elt;
2225{
81fa9e2f 2226 Findent_to (make_number (16), make_number (1));
2c6f1a39 2227 Fprinc (elt, Qnil);
ad4ec84a 2228 Fterpri (Qnil);
2c6f1a39
JB
2229}
2230
2231DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 1, 0,
ad4ec84a 2232 "Insert a description of contents of VECTOR.\n\
2c6f1a39
JB
2233This is text showing the elements of vector matched against indices.")
2234 (vector)
2235 Lisp_Object vector;
2236{
ad4ec84a
RS
2237 int count = specpdl_ptr - specpdl;
2238
2239 specbind (Qstandard_output, Fcurrent_buffer ());
2c6f1a39 2240 CHECK_VECTOR (vector, 0);
92cc37e8 2241 describe_vector (vector, Qnil, describe_vector_princ, 0, Qnil);
ad4ec84a
RS
2242
2243 return unbind_to (count, Qnil);
2c6f1a39
JB
2244}
2245
2246describe_vector (vector, elt_prefix, elt_describer, partial, shadow)
2247 register Lisp_Object vector;
2248 Lisp_Object elt_prefix;
2249 int (*elt_describer) ();
2250 int partial;
2251 Lisp_Object shadow;
2252{
2253 Lisp_Object this;
2254 Lisp_Object dummy;
2255 Lisp_Object tem1, tem2;
2256 register int i;
2257 Lisp_Object suppress;
2258 Lisp_Object kludge;
2259 int first = 1;
2260 struct gcpro gcpro1, gcpro2, gcpro3;
2261
2262 tem1 = Qnil;
2263
2264 /* This vector gets used to present single keys to Flookup_key. Since
2265 that is done once per vector element, we don't want to cons up a
2266 fresh vector every time. */
2267 kludge = Fmake_vector (make_number (1), Qnil);
2268 GCPRO3 (elt_prefix, tem1, kludge);
2269
2270 if (partial)
2271 suppress = intern ("suppress-keymap");
2272
db6f9d95 2273 for (i = 0; i < XVECTOR (vector)->size; i++)
2c6f1a39
JB
2274 {
2275 QUIT;
224a16e8 2276 tem1 = get_keyelt (XVECTOR (vector)->contents[i], 0);
2c6f1a39 2277
265a9e55 2278 if (NILP (tem1)) continue;
2c6f1a39
JB
2279
2280 /* Don't mention suppressed commands. */
416349ec 2281 if (SYMBOLP (tem1) && partial)
2c6f1a39
JB
2282 {
2283 this = Fget (tem1, suppress);
265a9e55 2284 if (!NILP (this))
2c6f1a39
JB
2285 continue;
2286 }
2287
2288 /* If this command in this map is shadowed by some other map,
2289 ignore it. */
265a9e55 2290 if (!NILP (shadow))
2c6f1a39
JB
2291 {
2292 Lisp_Object tem;
2293
2294 XVECTOR (kludge)->contents[0] = make_number (i);
53c8f9fa 2295 tem = shadow_lookup (shadow, kludge, Qt);
2c6f1a39 2296
265a9e55 2297 if (!NILP (tem)) continue;
2c6f1a39
JB
2298 }
2299
2300 if (first)
2301 {
2302 insert ("\n", 1);
2303 first = 0;
2304 }
2305
2306 /* Output the prefix that applies to every entry in this map. */
265a9e55 2307 if (!NILP (elt_prefix))
2c6f1a39
JB
2308 insert1 (elt_prefix);
2309
2310 /* Get the string to describe the character I, and print it. */
6e344130 2311 XSETFASTINT (dummy, i);
2c6f1a39
JB
2312
2313 /* THIS gets the string to describe the character DUMMY. */
2314 this = Fsingle_key_description (dummy);
2315 insert1 (this);
2316
2317 /* Find all consecutive characters that have the same definition. */
db6f9d95 2318 while (i + 1 < XVECTOR (vector)->size
224a16e8 2319 && (tem2 = get_keyelt (XVECTOR (vector)->contents[i+1], 0),
2c6f1a39
JB
2320 EQ (tem2, tem1)))
2321 i++;
2322
2323 /* If we have a range of more than one character,
2324 print where the range reaches to. */
2325
2326 if (i != XINT (dummy))
2327 {
2328 insert (" .. ", 4);
265a9e55 2329 if (!NILP (elt_prefix))
2c6f1a39
JB
2330 insert1 (elt_prefix);
2331
6e344130 2332 XSETFASTINT (dummy, i);
2c6f1a39
JB
2333 insert1 (Fsingle_key_description (dummy));
2334 }
2335
2336 /* Print a description of the definition of this character.
2337 elt_describer will take care of spacing out far enough
2338 for alignment purposes. */
2339 (*elt_describer) (tem1);
2340 }
2341
2342 UNGCPRO;
2343}
2344\f
cc0a8174 2345/* Apropos - finding all symbols whose names match a regexp. */
2c6f1a39
JB
2346Lisp_Object apropos_predicate;
2347Lisp_Object apropos_accumulate;
2348
2349static void
2350apropos_accum (symbol, string)
2351 Lisp_Object symbol, string;
2352{
2353 register Lisp_Object tem;
2354
2355 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil);
265a9e55 2356 if (!NILP (tem) && !NILP (apropos_predicate))
2c6f1a39 2357 tem = call1 (apropos_predicate, symbol);
265a9e55 2358 if (!NILP (tem))
2c6f1a39
JB
2359 apropos_accumulate = Fcons (symbol, apropos_accumulate);
2360}
2361
2362DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0,
2363 "Show all symbols whose names contain match for REGEXP.\n\
2364If optional 2nd arg PRED is non-nil, (funcall PRED SYM) is done\n\
2365for each symbol and a symbol is mentioned only if that returns non-nil.\n\
2366Return list of symbols found.")
2367 (string, pred)
2368 Lisp_Object string, pred;
2369{
2370 struct gcpro gcpro1, gcpro2;
2371 CHECK_STRING (string, 0);
2372 apropos_predicate = pred;
2373 GCPRO2 (apropos_predicate, apropos_accumulate);
2374 apropos_accumulate = Qnil;
2375 map_obarray (Vobarray, apropos_accum, string);
2376 apropos_accumulate = Fsort (apropos_accumulate, Qstring_lessp);
2377 UNGCPRO;
2378 return apropos_accumulate;
2379}
2380\f
2381syms_of_keymap ()
2382{
2383 Lisp_Object tem;
2384
2385 Qkeymap = intern ("keymap");
2386 staticpro (&Qkeymap);
2387
2388/* Initialize the keymaps standardly used.
2389 Each one is the value of a Lisp variable, and is also
2390 pointed to by a C variable */
2391
19eaeb86 2392 global_map = Fcons (Qkeymap,
1447c534 2393 Fcons (Fmake_vector (make_number (0400), Qnil), Qnil));
2c6f1a39
JB
2394 Fset (intern ("global-map"), global_map);
2395
ce6e5d0b 2396 meta_map = Fmake_keymap (Qnil);
2c6f1a39
JB
2397 Fset (intern ("esc-map"), meta_map);
2398 Ffset (intern ("ESC-prefix"), meta_map);
2399
ce6e5d0b 2400 control_x_map = Fmake_keymap (Qnil);
2c6f1a39
JB
2401 Fset (intern ("ctl-x-map"), control_x_map);
2402 Ffset (intern ("Control-X-prefix"), control_x_map);
2403
2404 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map,
2405 "Default keymap to use when reading from the minibuffer.");
ce6e5d0b 2406 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
2407
2408 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map,
2409 "Local keymap for the minibuffer when spaces are not allowed.");
ce6e5d0b 2410 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
2411
2412 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map,
2413 "Local keymap for minibuffer input with completion.");
ce6e5d0b 2414 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
2415
2416 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map,
2417 "Local keymap for minibuffer input with completion, for exact match.");
ce6e5d0b 2418 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil);
2c6f1a39
JB
2419
2420 current_global_map = global_map;
2421
cc0a8174
JB
2422 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist,
2423 "Alist of keymaps to use for minor modes.\n\
2424Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read\n\
2425key sequences and look up bindings iff VARIABLE's value is non-nil.\n\
2426If two active keymaps bind the same key, the keymap appearing earlier\n\
2427in the list takes precedence.");
2428 Vminor_mode_map_alist = Qnil;
2429
6bbbd9b0
JB
2430 DEFVAR_LISP ("function-key-map", &Vfunction_key_map,
2431 "Keymap mapping ASCII function key sequences onto their preferred forms.\n\
2432This allows Emacs to recognize function keys sent from ASCII\n\
2433terminals at any point in a key sequence.\n\
2434\n\
1981e886
RS
2435The `read-key-sequence' function replaces any subsequence bound by\n\
2436`function-key-map' with its binding. More precisely, when the active\n\
6bbbd9b0 2437keymaps have no binding for the current key sequence but\n\
1981e886
RS
2438`function-key-map' binds a suffix of the sequence to a vector or string,\n\
2439`read-key-sequence' replaces the matching suffix with its binding, and\n\
6bbbd9b0
JB
2440continues with the new sequence.\n\
2441\n\
1981e886
RS
2442The events that come from bindings in `function-key-map' are not\n\
2443themselves looked up in `function-key-map'.\n\
2444\n\
2445For example, suppose `function-key-map' binds `ESC O P' to [f1].\n\
2446Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing\n\
718ca51e
JB
2447`C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix\n\
2448key, typing `ESC O P x' would return [f1 x].");
ce6e5d0b 2449 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
6bbbd9b0 2450
2c6f1a39
JB
2451 Qsingle_key_description = intern ("single-key-description");
2452 staticpro (&Qsingle_key_description);
2453
2454 Qkey_description = intern ("key-description");
2455 staticpro (&Qkey_description);
2456
2457 Qkeymapp = intern ("keymapp");
2458 staticpro (&Qkeymapp);
2459
2fc66973
JB
2460 Qnon_ascii = intern ("non-ascii");
2461 staticpro (&Qnon_ascii);
2462
2c6f1a39
JB
2463 defsubr (&Skeymapp);
2464 defsubr (&Smake_keymap);
2465 defsubr (&Smake_sparse_keymap);
2466 defsubr (&Scopy_keymap);
2467 defsubr (&Skey_binding);
2468 defsubr (&Slocal_key_binding);
2469 defsubr (&Sglobal_key_binding);
cc0a8174 2470 defsubr (&Sminor_mode_key_binding);
2c6f1a39
JB
2471 defsubr (&Sglobal_set_key);
2472 defsubr (&Slocal_set_key);
2473 defsubr (&Sdefine_key);
2474 defsubr (&Slookup_key);
2475 defsubr (&Sglobal_unset_key);
2476 defsubr (&Slocal_unset_key);
2477 defsubr (&Sdefine_prefix_command);
2478 defsubr (&Suse_global_map);
2479 defsubr (&Suse_local_map);
2480 defsubr (&Scurrent_local_map);
2481 defsubr (&Scurrent_global_map);
cc0a8174 2482 defsubr (&Scurrent_minor_mode_maps);
2c6f1a39
JB
2483 defsubr (&Saccessible_keymaps);
2484 defsubr (&Skey_description);
2485 defsubr (&Sdescribe_vector);
2486 defsubr (&Ssingle_key_description);
2487 defsubr (&Stext_char_description);
2488 defsubr (&Swhere_is_internal);
2c6f1a39
JB
2489 defsubr (&Sdescribe_bindings);
2490 defsubr (&Sapropos_internal);
2491}
2492
2493keys_of_keymap ()
2494{
2495 Lisp_Object tem;
2496
2497 initial_define_key (global_map, 033, "ESC-prefix");
2498 initial_define_key (global_map, Ctl('X'), "Control-X-prefix");
2499}