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