1 /* Manipulation of keymaps
2 Copyright (C) 1985, 86,87,88,93,94,95,98,99, 2000, 2001
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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)
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.
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. */
30 #include "termhooks.h"
31 #include "blockinput.h"
33 #include "intervals.h"
35 #define min(a, b) ((a) < (b) ? (a) : (b))
37 /* The number of elements in keymap vectors. */
38 #define DENSE_TABLE_SIZE (0200)
40 /* Actually allocate storage for these variables */
42 Lisp_Object current_global_map
; /* Current global keymap */
44 Lisp_Object global_map
; /* default global key bindings */
46 Lisp_Object meta_map
; /* The keymap used for globally bound
47 ESC-prefixed default commands */
49 Lisp_Object control_x_map
; /* The keymap used for globally bound
50 C-x-prefixed default commands */
52 /* was MinibufLocalMap */
53 Lisp_Object Vminibuffer_local_map
;
54 /* The keymap used by the minibuf for local
55 bindings when spaces are allowed in the
58 /* was MinibufLocalNSMap */
59 Lisp_Object Vminibuffer_local_ns_map
;
60 /* The keymap used by the minibuf for local
61 bindings when spaces are not encouraged
64 /* keymap used for minibuffers when doing completion */
65 /* was MinibufLocalCompletionMap */
66 Lisp_Object Vminibuffer_local_completion_map
;
68 /* keymap used for minibuffers when doing completion and require a match */
69 /* was MinibufLocalMustMatchMap */
70 Lisp_Object Vminibuffer_local_must_match_map
;
72 /* Alist of minor mode variables and keymaps. */
73 Lisp_Object Vminor_mode_map_alist
;
75 /* Alist of major-mode-specific overrides for
76 minor mode variables and keymaps. */
77 Lisp_Object Vminor_mode_overriding_map_alist
;
79 /* Keymap mapping ASCII function key sequences onto their preferred forms.
80 Initialized by the terminal-specific lisp files. See DEFVAR for more
82 Lisp_Object Vfunction_key_map
;
84 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
85 Lisp_Object Vkey_translation_map
;
87 /* A list of all commands given new bindings since a certain time
88 when nil was stored here.
89 This is used to speed up recomputation of menu key equivalents
90 when Emacs starts up. t means don't record anything here. */
91 Lisp_Object Vdefine_key_rebound_commands
;
93 Lisp_Object Qkeymapp
, Qkeymap
, Qnon_ascii
, Qmenu_item
;
95 /* A char with the CHAR_META bit set in a vector or the 0200 bit set
96 in a string key sequence is equivalent to prefixing with this
98 extern Lisp_Object meta_prefix_char
;
100 extern Lisp_Object Voverriding_local_map
;
102 /* Hash table used to cache a reverse-map to speed up calls to where-is. */
103 static Lisp_Object where_is_cache
;
104 /* Which keymaps are reverse-stored in the cache. */
105 static Lisp_Object where_is_cache_keymaps
;
107 static Lisp_Object store_in_keymap
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
));
108 static void fix_submap_inheritance
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
));
110 static Lisp_Object define_as_prefix
P_ ((Lisp_Object
, Lisp_Object
));
111 static Lisp_Object describe_buffer_bindings
P_ ((Lisp_Object
));
112 static void describe_command
P_ ((Lisp_Object
));
113 static void describe_translation
P_ ((Lisp_Object
));
114 static void describe_map
P_ ((Lisp_Object
, Lisp_Object
,
115 void (*) P_ ((Lisp_Object
)),
116 int, Lisp_Object
, Lisp_Object
*, int));
118 /* Keymap object support - constructors and predicates. */
120 DEFUN ("make-keymap", Fmake_keymap
, Smake_keymap
, 0, 1, 0,
121 "Construct and return a new keymap, of the form (keymap CHARTABLE . ALIST).\n\
122 CHARTABLE is a char-table that holds the bindings for the ASCII\n\
123 characters. ALIST is an assoc-list which holds bindings for function keys,\n\
124 mouse events, and any other things that appear in the input stream.\n\
125 All entries in it are initially nil, meaning \"command undefined\".\n\n\
126 The optional arg STRING supplies a menu name for the keymap\n\
127 in case you use it as a menu with `x-popup-menu'.")
133 tail
= Fcons (string
, Qnil
);
136 return Fcons (Qkeymap
,
137 Fcons (Fmake_char_table (Qkeymap
, Qnil
), tail
));
140 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap
, Smake_sparse_keymap
, 0, 1, 0,
141 "Construct and return a new sparse keymap.\n\
142 Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),\n\
143 which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),\n\
144 which binds the function key or mouse event SYMBOL to DEFINITION.\n\
145 Initially the alist is nil.\n\n\
146 The optional arg STRING supplies a menu name for the keymap\n\
147 in case you use it as a menu with `x-popup-menu'.")
152 return Fcons (Qkeymap
, Fcons (string
, Qnil
));
153 return Fcons (Qkeymap
, Qnil
);
156 /* This function is used for installing the standard key bindings
157 at initialization time.
161 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */
164 initial_define_key (keymap
, key
, defname
)
169 store_in_keymap (keymap
, make_number (key
), intern (defname
));
173 initial_define_lispy_key (keymap
, keyname
, defname
)
178 store_in_keymap (keymap
, intern (keyname
), intern (defname
));
181 DEFUN ("keymapp", Fkeymapp
, Skeymapp
, 1, 1, 0,
182 "Return t if OBJECT is a keymap.\n\
184 A keymap is a list (keymap . ALIST),\n\
185 or a symbol whose function definition is itself a keymap.\n\
186 ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);\n\
187 a vector of densely packed bindings for small character codes\n\
188 is also allowed as an element.")
192 return (KEYMAPP (object
) ? Qt
: Qnil
);
195 /* Check that OBJECT is a keymap (after dereferencing through any
196 symbols). If it is, return it.
198 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
199 is an autoload form, do the autoload and try again.
200 If AUTOLOAD is nonzero, callers must assume GC is possible.
202 If the map needs to be autoloaded, but AUTOLOAD is zero (and ERROR
203 is zero as well), return Qt.
205 ERROR controls how we respond if OBJECT isn't a keymap.
206 If ERROR is non-zero, signal an error; otherwise, just return Qnil.
208 Note that most of the time, we don't want to pursue autoloads.
209 Functions like Faccessible_keymaps which scan entire keymap trees
210 shouldn't load every autoloaded keymap. I'm not sure about this,
211 but it seems to me that only read_key_sequence, Flookup_key, and
212 Fdefine_key should cause keymaps to be autoloaded.
214 This function can GC when AUTOLOAD is non-zero, because it calls
215 do_autoload which can GC. */
218 get_keymap (object
, error
, autoload
)
227 if (CONSP (object
) && EQ (XCAR (object
), Qkeymap
))
230 tem
= indirect_function (object
);
233 if (EQ (XCAR (tem
), Qkeymap
))
236 /* Should we do an autoload? Autoload forms for keymaps have
237 Qkeymap as their fifth element. */
238 if ((autoload
|| !error
) && EQ (XCAR (tem
), Qautoload
))
242 tail
= Fnth (make_number (4), tem
);
243 if (EQ (tail
, Qkeymap
))
247 struct gcpro gcpro1
, gcpro2
;
249 GCPRO2 (tem
, object
);
250 do_autoload (tem
, object
);
263 wrong_type_argument (Qkeymapp
, object
);
267 /* Return the parent map of the keymap MAP, or nil if it has none.
268 We assume that MAP is a valid keymap. */
270 DEFUN ("keymap-parent", Fkeymap_parent
, Skeymap_parent
, 1, 1, 0,
271 "Return the parent keymap of KEYMAP.")
277 keymap
= get_keymap (keymap
, 1, 1);
279 /* Skip past the initial element `keymap'. */
280 list
= XCDR (keymap
);
281 for (; CONSP (list
); list
= XCDR (list
))
283 /* See if there is another `keymap'. */
288 return get_keymap (list
, 0, 1);
292 /* Check whether MAP is one of MAPS parents. */
294 keymap_memberp (map
, maps
)
295 Lisp_Object map
, maps
;
297 if (NILP (map
)) return 0;
298 while (KEYMAPP (maps
) && !EQ (map
, maps
))
299 maps
= Fkeymap_parent (maps
);
300 return (EQ (map
, maps
));
303 /* Set the parent keymap of MAP to PARENT. */
305 DEFUN ("set-keymap-parent", Fset_keymap_parent
, Sset_keymap_parent
, 2, 2, 0,
306 "Modify KEYMAP to set its parent map to PARENT.\n\
307 PARENT should be nil or another keymap.")
309 Lisp_Object keymap
, parent
;
311 Lisp_Object list
, prev
;
315 /* Force a keymap flush for the next call to where-is.
316 Since this can be called from within where-is, we don't set where_is_cache
317 directly but only where_is_cache_keymaps, since where_is_cache shouldn't
318 be changed during where-is, while where_is_cache_keymaps is only used at
319 the very beginning of where-is and can thus be changed here without any
321 This is a very minor correctness (rather than safety) issue. */
322 where_is_cache_keymaps
= Qt
;
324 keymap
= get_keymap (keymap
, 1, 1);
329 parent
= get_keymap (parent
, 1, 1);
331 /* Check for cycles. */
332 if (keymap_memberp (keymap
, parent
))
333 error ("Cyclic keymap inheritance");
336 /* Skip past the initial element `keymap'. */
341 /* If there is a parent keymap here, replace it.
342 If we came to the end, add the parent in PREV. */
343 if (! CONSP (list
) || KEYMAPP (list
))
345 /* If we already have the right parent, return now
346 so that we avoid the loops below. */
347 if (EQ (XCDR (prev
), parent
))
348 RETURN_UNGCPRO (parent
);
350 XCDR (prev
) = parent
;
356 /* Scan through for submaps, and set their parents too. */
358 for (list
= XCDR (keymap
); CONSP (list
); list
= XCDR (list
))
360 /* Stop the scan when we come to the parent. */
361 if (EQ (XCAR (list
), Qkeymap
))
364 /* If this element holds a prefix map, deal with it. */
365 if (CONSP (XCAR (list
))
366 && CONSP (XCDR (XCAR (list
))))
367 fix_submap_inheritance (keymap
, XCAR (XCAR (list
)),
370 if (VECTORP (XCAR (list
)))
371 for (i
= 0; i
< XVECTOR (XCAR (list
))->size
; i
++)
372 if (CONSP (XVECTOR (XCAR (list
))->contents
[i
]))
373 fix_submap_inheritance (keymap
, make_number (i
),
374 XVECTOR (XCAR (list
))->contents
[i
]);
376 if (CHAR_TABLE_P (XCAR (list
)))
378 Lisp_Object indices
[3];
380 map_char_table (fix_submap_inheritance
, Qnil
, XCAR (list
),
385 RETURN_UNGCPRO (parent
);
388 /* EVENT is defined in MAP as a prefix, and SUBMAP is its definition.
389 if EVENT is also a prefix in MAP's parent,
390 make sure that SUBMAP inherits that definition as its own parent. */
393 fix_submap_inheritance (map
, event
, submap
)
394 Lisp_Object map
, event
, submap
;
396 Lisp_Object map_parent
, parent_entry
;
398 /* SUBMAP is a cons that we found as a key binding.
399 Discard the other things found in a menu key binding. */
401 submap
= get_keymap (get_keyelt (submap
, 0), 0, 0);
403 /* If it isn't a keymap now, there's no work to do. */
407 map_parent
= Fkeymap_parent (map
);
408 if (!NILP (map_parent
))
410 get_keymap (access_keymap (map_parent
, event
, 0, 0, 0), 0, 0);
414 /* If MAP's parent has something other than a keymap,
415 our own submap shadows it completely. */
416 if (!CONSP (parent_entry
))
419 if (! EQ (parent_entry
, submap
))
421 Lisp_Object submap_parent
;
422 submap_parent
= submap
;
427 tem
= Fkeymap_parent (submap_parent
);
431 if (keymap_memberp (tem
, parent_entry
))
432 /* Fset_keymap_parent could create a cycle. */
439 Fset_keymap_parent (submap_parent
, parent_entry
);
443 /* Look up IDX in MAP. IDX may be any sort of event.
444 Note that this does only one level of lookup; IDX must be a single
445 event, not a sequence.
447 If T_OK is non-zero, bindings for Qt are treated as default
448 bindings; any key left unmentioned by other tables and bindings is
449 given the binding of Qt.
451 If T_OK is zero, bindings for Qt are not treated specially.
453 If NOINHERIT, don't accept a subkeymap found in an inherited keymap. */
456 access_keymap (map
, idx
, t_ok
, noinherit
, autoload
)
466 /* If idx is a list (some sort of mouse click, perhaps?),
467 the index we want to use is the car of the list, which
468 ought to be a symbol. */
469 idx
= EVENT_HEAD (idx
);
471 /* If idx is a symbol, it might have modifiers, which need to
472 be put in the canonical order. */
474 idx
= reorder_modifiers (idx
);
475 else if (INTEGERP (idx
))
476 /* Clobber the high bits that can be present on a machine
477 with more than 24 bits of integer. */
478 XSETFASTINT (idx
, XINT (idx
) & (CHAR_META
| (CHAR_META
- 1)));
480 /* Handle the special meta -> esc mapping. */
481 if (INTEGERP (idx
) && XUINT (idx
) & meta_modifier
)
483 /* See if there is a meta-map. If there's none, there is
484 no binding for IDX, unless a default binding exists in MAP. */
485 Lisp_Object meta_map
=
486 get_keymap (access_keymap (map
, meta_prefix_char
,
487 t_ok
, noinherit
, autoload
),
489 if (CONSP (meta_map
))
492 idx
= make_number (XUINT (idx
) & ~meta_modifier
);
495 /* Set IDX to t, so that we only find a default binding. */
498 /* We know there is no binding. */
504 Lisp_Object t_binding
;
505 Lisp_Object generic_binding
;
508 generic_binding
= Qnil
;
510 for (tail
= XCDR (map
);
512 || (tail
= get_keymap (tail
, 0, autoload
), CONSP (tail
)));
517 binding
= XCAR (tail
);
518 if (SYMBOLP (binding
))
520 /* If NOINHERIT, stop finding prefix definitions
521 after we pass a second occurrence of the `keymap' symbol. */
522 if (noinherit
&& EQ (binding
, Qkeymap
))
525 else if (CONSP (binding
))
527 Lisp_Object key
= XCAR (binding
);
532 val
= XCDR (binding
);
533 if (noprefix
&& KEYMAPP (val
))
536 fix_submap_inheritance (map
, idx
, val
);
537 return get_keyelt (val
, autoload
);
539 else if (INTEGERP (idx
)
540 && (XINT (idx
) & CHAR_MODIFIER_MASK
) == 0
542 && (XINT (key
) & CHAR_MODIFIER_MASK
) == 0
543 && !SINGLE_BYTE_CHAR_P (XINT (idx
))
544 && !SINGLE_BYTE_CHAR_P (XINT (key
))
545 && CHAR_VALID_P (XINT (key
), 1)
546 && !CHAR_VALID_P (XINT (key
), 0)
547 && (CHAR_CHARSET (XINT (key
))
548 == CHAR_CHARSET (XINT (idx
))))
550 /* KEY is the generic character of the charset of IDX.
551 Use KEY's binding if there isn't a binding for IDX
553 generic_binding
= binding
;
555 else if (t_ok
&& EQ (XCAR (binding
), Qt
))
556 t_binding
= XCDR (binding
);
558 else if (VECTORP (binding
))
560 if (NATNUMP (idx
) && XFASTINT (idx
) < XVECTOR (binding
)->size
)
562 val
= XVECTOR (binding
)->contents
[XFASTINT (idx
)];
563 if (noprefix
&& KEYMAPP (val
))
566 fix_submap_inheritance (map
, idx
, val
);
567 return get_keyelt (val
, autoload
);
570 else if (CHAR_TABLE_P (binding
))
572 /* Character codes with modifiers
573 are not included in a char-table.
574 All character codes without modifiers are included. */
576 && (XFASTINT (idx
) & CHAR_MODIFIER_MASK
) == 0)
578 val
= Faref (binding
, idx
);
579 if (noprefix
&& KEYMAPP (val
))
582 fix_submap_inheritance (map
, idx
, val
);
583 return get_keyelt (val
, autoload
);
590 if (!NILP (generic_binding
))
591 return get_keyelt (generic_binding
, autoload
);
593 return get_keyelt (t_binding
, autoload
);
597 /* Given OBJECT which was found in a slot in a keymap,
598 trace indirect definitions to get the actual definition of that slot.
599 An indirect definition is a list of the form
600 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
601 and INDEX is the object to look up in KEYMAP to yield the definition.
603 Also if OBJECT has a menu string as the first element,
604 remove that. Also remove a menu help string as second element.
606 If AUTOLOAD is nonzero, load autoloadable keymaps
607 that are referred to with indirection. */
610 get_keyelt (object
, autoload
)
611 register Lisp_Object object
;
616 if (!(CONSP (object
)))
617 /* This is really the value. */
620 /* If the keymap contents looks like (keymap ...) or (lambda ...)
622 else if (EQ (XCAR (object
), Qkeymap
) || EQ (XCAR (object
), Qlambda
))
625 /* If the keymap contents looks like (menu-item name . DEFN)
626 or (menu-item name DEFN ...) then use DEFN.
627 This is a new format menu item. */
628 else if (EQ (XCAR (object
), Qmenu_item
))
630 if (CONSP (XCDR (object
)))
634 object
= XCDR (XCDR (object
));
637 object
= XCAR (object
);
639 /* If there's a `:filter FILTER', apply FILTER to the
640 menu-item's definition to get the real definition to
642 for (; CONSP (tem
) && CONSP (XCDR (tem
)); tem
= XCDR (tem
))
643 if (EQ (XCAR (tem
), QCfilter
) && autoload
)
646 filter
= XCAR (XCDR (tem
));
647 filter
= list2 (filter
, list2 (Qquote
, object
));
648 object
= menu_item_eval_property (filter
);
657 /* If the keymap contents looks like (STRING . DEFN), use DEFN.
658 Keymap alist elements like (CHAR MENUSTRING . DEFN)
659 will be used by HierarKey menus. */
660 else if (STRINGP (XCAR (object
)))
662 object
= XCDR (object
);
663 /* Also remove a menu help string, if any,
664 following the menu item name. */
665 if (CONSP (object
) && STRINGP (XCAR (object
)))
666 object
= XCDR (object
);
667 /* Also remove the sublist that caches key equivalences, if any. */
668 if (CONSP (object
) && CONSP (XCAR (object
)))
671 carcar
= XCAR (XCAR (object
));
672 if (NILP (carcar
) || VECTORP (carcar
))
673 object
= XCDR (object
);
677 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
681 map
= get_keymap (Fcar_safe (object
), 0, autoload
);
682 return (!CONSP (map
) ? object
/* Invalid keymap */
683 : access_keymap (map
, Fcdr (object
), 0, 0, autoload
));
689 store_in_keymap (keymap
, idx
, def
)
691 register Lisp_Object idx
;
692 register Lisp_Object def
;
694 /* Flush any reverse-map cache. */
695 where_is_cache
= Qnil
;
696 where_is_cache_keymaps
= Qt
;
698 /* If we are preparing to dump, and DEF is a menu element
699 with a menu item indicator, copy it to ensure it is not pure. */
700 if (CONSP (def
) && PURE_P (def
)
701 && (EQ (XCAR (def
), Qmenu_item
) || STRINGP (XCAR (def
))))
702 def
= Fcons (XCAR (def
), XCDR (def
));
704 if (!CONSP (keymap
) || ! EQ (XCAR (keymap
), Qkeymap
))
705 error ("attempt to define a key in a non-keymap");
707 /* If idx is a list (some sort of mouse click, perhaps?),
708 the index we want to use is the car of the list, which
709 ought to be a symbol. */
710 idx
= EVENT_HEAD (idx
);
712 /* If idx is a symbol, it might have modifiers, which need to
713 be put in the canonical order. */
715 idx
= reorder_modifiers (idx
);
716 else if (INTEGERP (idx
))
717 /* Clobber the high bits that can be present on a machine
718 with more than 24 bits of integer. */
719 XSETFASTINT (idx
, XINT (idx
) & (CHAR_META
| (CHAR_META
- 1)));
721 /* Scan the keymap for a binding of idx. */
725 /* The cons after which we should insert new bindings. If the
726 keymap has a table element, we record its position here, so new
727 bindings will go after it; this way, the table will stay
728 towards the front of the alist and character lookups in dense
729 keymaps will remain fast. Otherwise, this just points at the
730 front of the keymap. */
731 Lisp_Object insertion_point
;
733 insertion_point
= keymap
;
734 for (tail
= XCDR (keymap
); CONSP (tail
); tail
= XCDR (tail
))
741 if (NATNUMP (idx
) && XFASTINT (idx
) < ASIZE (elt
))
743 ASET (elt
, XFASTINT (idx
), def
);
746 insertion_point
= tail
;
748 else if (CHAR_TABLE_P (elt
))
750 /* Character codes with modifiers
751 are not included in a char-table.
752 All character codes without modifiers are included. */
755 & (CHAR_ALT
| CHAR_SUPER
| CHAR_HYPER
756 | CHAR_SHIFT
| CHAR_CTL
| CHAR_META
)))
758 Faset (elt
, idx
, def
);
761 insertion_point
= tail
;
763 else if (CONSP (elt
))
765 if (EQ (idx
, XCAR (elt
)))
771 else if (EQ (elt
, Qkeymap
))
772 /* If we find a 'keymap' symbol in the spine of KEYMAP,
773 then we must have found the start of a second keymap
774 being used as the tail of KEYMAP, and a binding for IDX
775 should be inserted before it. */
782 /* We have scanned the entire keymap, and not found a binding for
783 IDX. Let's add one. */
784 XCDR (insertion_point
)
785 = Fcons (Fcons (idx
, def
), XCDR (insertion_point
));
792 copy_keymap_1 (chartable
, idx
, elt
)
793 Lisp_Object chartable
, idx
, elt
;
795 if (CONSP (elt
) && EQ (XCAR (elt
), Qkeymap
))
796 Faset (chartable
, idx
, Fcopy_keymap (elt
));
799 DEFUN ("copy-keymap", Fcopy_keymap
, Scopy_keymap
, 1, 1, 0,
800 "Return a copy of the keymap KEYMAP.\n\
801 The copy starts out with the same definitions of KEYMAP,\n\
802 but changing either the copy or KEYMAP does not affect the other.\n\
803 Any key definitions that are subkeymaps are recursively copied.\n\
804 However, a key definition which is a symbol whose definition is a keymap\n\
809 register Lisp_Object copy
, tail
;
811 copy
= Fcopy_alist (get_keymap (keymap
, 1, 0));
813 for (tail
= copy
; CONSP (tail
); tail
= XCDR (tail
))
818 if (CHAR_TABLE_P (elt
))
820 Lisp_Object indices
[3];
822 elt
= Fcopy_sequence (elt
);
825 map_char_table (copy_keymap_1
, Qnil
, elt
, elt
, 0, indices
);
827 else if (VECTORP (elt
))
831 elt
= Fcopy_sequence (elt
);
834 for (i
= 0; i
< ASIZE (elt
); i
++)
835 if (CONSP (AREF (elt
, i
)) && EQ (XCAR (AREF (elt
, i
)), Qkeymap
))
836 ASET (elt
, i
, Fcopy_keymap (AREF (elt
, i
)));
838 else if (CONSP (elt
) && CONSP (XCDR (elt
)))
843 /* Is this a new format menu item. */
844 if (EQ (XCAR (tem
),Qmenu_item
))
846 /* Copy cell with menu-item marker. */
848 = Fcons (XCAR (tem
), XCDR (tem
));
853 /* Copy cell with menu-item name. */
855 = Fcons (XCAR (tem
), XCDR (tem
));
861 /* Copy cell with binding and if the binding is a keymap,
864 = Fcons (XCAR (tem
), XCDR (tem
));
867 if (CONSP (tem
) && EQ (XCAR (tem
), Qkeymap
))
868 XCAR (elt
) = Fcopy_keymap (tem
);
870 if (CONSP (tem
) && CONSP (XCAR (tem
)))
871 /* Delete cache for key equivalences. */
872 XCDR (elt
) = XCDR (tem
);
877 /* It may be an old fomat menu item.
878 Skip the optional menu string.
880 if (STRINGP (XCAR (tem
)))
882 /* Copy the cell, since copy-alist didn't go this deep. */
884 = Fcons (XCAR (tem
), XCDR (tem
));
887 /* Also skip the optional menu help string. */
888 if (CONSP (tem
) && STRINGP (XCAR (tem
)))
891 = Fcons (XCAR (tem
), XCDR (tem
));
895 /* There may also be a list that caches key equivalences.
896 Just delete it for the new keymap. */
898 && CONSP (XCAR (tem
))
899 && (NILP (XCAR (XCAR (tem
)))
900 || VECTORP (XCAR (XCAR (tem
)))))
901 XCDR (elt
) = XCDR (tem
);
904 && CONSP (XCDR (elt
))
905 && EQ (XCAR (XCDR (elt
)), Qkeymap
))
906 XCDR (elt
) = Fcopy_keymap (XCDR (elt
));
915 /* Simple Keymap mutators and accessors. */
917 /* GC is possible in this function if it autoloads a keymap. */
919 DEFUN ("define-key", Fdefine_key
, Sdefine_key
, 3, 3, 0,
920 "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\
921 KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\
922 meaning a sequence of keystrokes and events.\n\
923 Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\
924 can be included if you use a vector.\n\
925 DEF is anything that can be a key's definition:\n\
926 nil (means key is undefined in this keymap),\n\
927 a command (a Lisp function suitable for interactive calling)\n\
928 a string (treated as a keyboard macro),\n\
929 a keymap (to define a prefix key),\n\
930 a symbol. When the key is looked up, the symbol will stand for its\n\
931 function definition, which should at that time be one of the above,\n\
932 or another symbol whose function definition is used, etc.\n\
933 a cons (STRING . DEFN), meaning that DEFN is the definition\n\
934 (DEFN should be a valid definition in its own right),\n\
935 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.\n\
937 If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at\n\
938 the front of KEYMAP.")
945 register Lisp_Object c
;
946 register Lisp_Object cmd
;
950 struct gcpro gcpro1
, gcpro2
, gcpro3
;
952 keymap
= get_keymap (keymap
, 1, 1);
954 if (!VECTORP (key
) && !STRINGP (key
))
955 key
= wrong_type_argument (Qarrayp
, key
);
957 length
= XFASTINT (Flength (key
));
961 if (SYMBOLP (def
) && !EQ (Vdefine_key_rebound_commands
, Qt
))
962 Vdefine_key_rebound_commands
= Fcons (def
, Vdefine_key_rebound_commands
);
964 GCPRO3 (keymap
, key
, def
);
967 meta_bit
= meta_modifier
;
974 c
= Faref (key
, make_number (idx
));
976 if (CONSP (c
) && lucid_event_type_list_p (c
))
977 c
= Fevent_convert_list (c
);
980 && (XINT (c
) & meta_bit
)
983 c
= meta_prefix_char
;
989 XSETINT (c
, XINT (c
) & ~meta_bit
);
995 if (! INTEGERP (c
) && ! SYMBOLP (c
) && ! CONSP (c
))
996 error ("Key sequence contains invalid events");
999 RETURN_UNGCPRO (store_in_keymap (keymap
, c
, def
));
1001 cmd
= access_keymap (keymap
, c
, 0, 1, 1);
1003 /* If this key is undefined, make it a prefix. */
1005 cmd
= define_as_prefix (keymap
, c
);
1007 keymap
= get_keymap (cmd
, 0, 1);
1008 if (!CONSP (keymap
))
1009 /* We must use Fkey_description rather than just passing key to
1010 error; key might be a vector, not a string. */
1011 error ("Key sequence %s uses invalid prefix characters",
1012 XSTRING (Fkey_description (key
))->data
);
1016 /* Value is number if KEY is too long; NIL if valid but has no definition. */
1017 /* GC is possible in this function if it autoloads a keymap. */
1019 DEFUN ("lookup-key", Flookup_key
, Slookup_key
, 2, 3, 0,
1020 "In keymap KEYMAP, look up key sequence KEY. Return the definition.\n\
1021 nil means undefined. See doc of `define-key' for kinds of definitions.\n\
1023 A number as value means KEY is \"too long\";\n\
1024 that is, characters or symbols in it except for the last one\n\
1025 fail to be a valid sequence of prefix characters in KEYMAP.\n\
1026 The number is how many characters at the front of KEY\n\
1027 it takes to reach a non-prefix command.\n\
1029 Normally, `lookup-key' ignores bindings for t, which act as default\n\
1030 bindings, used when nothing else in the keymap applies; this makes it\n\
1031 usable as a general function for probing keymaps. However, if the\n\
1032 third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will\n\
1033 recognize the default bindings, just as `read-key-sequence' does.")
1034 (keymap
, key
, accept_default
)
1035 register Lisp_Object keymap
;
1037 Lisp_Object accept_default
;
1040 register Lisp_Object cmd
;
1041 register Lisp_Object c
;
1043 int t_ok
= ! NILP (accept_default
);
1044 struct gcpro gcpro1
;
1046 keymap
= get_keymap (keymap
, 1, 1);
1048 if (!VECTORP (key
) && !STRINGP (key
))
1049 key
= wrong_type_argument (Qarrayp
, key
);
1051 length
= XFASTINT (Flength (key
));
1060 c
= Faref (key
, make_number (idx
++));
1062 if (CONSP (c
) && lucid_event_type_list_p (c
))
1063 c
= Fevent_convert_list (c
);
1065 /* Turn the 8th bit of string chars into a meta modifier. */
1066 if (XINT (c
) & 0x80 && STRINGP (key
))
1067 XSETINT (c
, (XINT (c
) | meta_modifier
) & ~0x80);
1069 cmd
= access_keymap (keymap
, c
, t_ok
, 0, 1);
1071 RETURN_UNGCPRO (cmd
);
1073 keymap
= get_keymap (cmd
, 0, 1);
1074 if (!CONSP (keymap
))
1075 RETURN_UNGCPRO (make_number (idx
));
1081 /* Make KEYMAP define event C as a keymap (i.e., as a prefix).
1082 Assume that currently it does not define C at all.
1083 Return the keymap. */
1086 define_as_prefix (keymap
, c
)
1087 Lisp_Object keymap
, c
;
1091 cmd
= Fmake_sparse_keymap (Qnil
);
1092 /* If this key is defined as a prefix in an inherited keymap,
1093 make it a prefix in this map, and make its definition
1094 inherit the other prefix definition. */
1095 cmd
= nconc2 (cmd
, access_keymap (keymap
, c
, 0, 0, 0));
1096 store_in_keymap (keymap
, c
, cmd
);
1101 /* Append a key to the end of a key sequence. We always make a vector. */
1104 append_key (key_sequence
, key
)
1105 Lisp_Object key_sequence
, key
;
1107 Lisp_Object args
[2];
1109 args
[0] = key_sequence
;
1111 args
[1] = Fcons (key
, Qnil
);
1112 return Fvconcat (2, args
);
1116 /* Global, local, and minor mode keymap stuff. */
1118 /* We can't put these variables inside current_minor_maps, since under
1119 some systems, static gets macro-defined to be the empty string.
1121 static Lisp_Object
*cmm_modes
, *cmm_maps
;
1122 static int cmm_size
;
1124 /* Error handler used in current_minor_maps. */
1126 current_minor_maps_error ()
1131 /* Store a pointer to an array of the keymaps of the currently active
1132 minor modes in *buf, and return the number of maps it contains.
1134 This function always returns a pointer to the same buffer, and may
1135 free or reallocate it, so if you want to keep it for a long time or
1136 hand it out to lisp code, copy it. This procedure will be called
1137 for every key sequence read, so the nice lispy approach (return a
1138 new assoclist, list, what have you) for each invocation would
1139 result in a lot of consing over time.
1141 If we used xrealloc/xmalloc and ran out of memory, they would throw
1142 back to the command loop, which would try to read a key sequence,
1143 which would call this function again, resulting in an infinite
1144 loop. Instead, we'll use realloc/malloc and silently truncate the
1145 list, let the key sequence be read, and hope some other piece of
1146 code signals the error. */
1148 current_minor_maps (modeptr
, mapptr
)
1149 Lisp_Object
**modeptr
, **mapptr
;
1152 int list_number
= 0;
1153 Lisp_Object alist
, assoc
, var
, val
;
1154 Lisp_Object lists
[2];
1156 lists
[0] = Vminor_mode_overriding_map_alist
;
1157 lists
[1] = Vminor_mode_map_alist
;
1159 for (list_number
= 0; list_number
< 2; list_number
++)
1160 for (alist
= lists
[list_number
];
1162 alist
= XCDR (alist
))
1163 if ((assoc
= XCAR (alist
), CONSP (assoc
))
1164 && (var
= XCAR (assoc
), SYMBOLP (var
))
1165 && (val
= find_symbol_value (var
), ! EQ (val
, Qunbound
))
1170 /* If a variable has an entry in Vminor_mode_overriding_map_alist,
1171 and also an entry in Vminor_mode_map_alist,
1172 ignore the latter. */
1173 if (list_number
== 1)
1175 val
= assq_no_quit (var
, lists
[0]);
1182 Lisp_Object
*newmodes
, *newmaps
;
1184 /* Use malloc/realloc here. See the comment above
1191 = (Lisp_Object
*) realloc (cmm_modes
,
1192 cmm_size
* sizeof *newmodes
);
1194 = (Lisp_Object
*) realloc (cmm_maps
,
1195 cmm_size
* sizeof *newmaps
);
1203 = (Lisp_Object
*) malloc (cmm_size
* sizeof *newmodes
);
1205 = (Lisp_Object
*) malloc (cmm_size
* sizeof *newmaps
);
1210 cmm_modes
= newmodes
;
1214 if (newmodes
== NULL
|| newmaps
== NULL
)
1218 /* Get the keymap definition--or nil if it is not defined. */
1219 temp
= internal_condition_case_1 (Findirect_function
,
1221 Qerror
, current_minor_maps_error
);
1225 cmm_maps
[i
] = temp
;
1230 if (modeptr
) *modeptr
= cmm_modes
;
1231 if (mapptr
) *mapptr
= cmm_maps
;
1235 /* GC is possible in this function if it autoloads a keymap. */
1237 DEFUN ("key-binding", Fkey_binding
, Skey_binding
, 1, 2, 0,
1238 "Return the binding for command KEY in current keymaps.\n\
1239 KEY is a string or vector, a sequence of keystrokes.\n\
1240 The binding is probably a symbol with a function definition.\n\
1242 Normally, `key-binding' ignores bindings for t, which act as default\n\
1243 bindings, used when nothing else in the keymap applies; this makes it\n\
1244 usable as a general function for probing keymaps. However, if the\n\
1245 optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does\n\
1246 recognize the default bindings, just as `read-key-sequence' does.")
1247 (key
, accept_default
)
1248 Lisp_Object key
, accept_default
;
1250 Lisp_Object
*maps
, value
;
1252 struct gcpro gcpro1
;
1256 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
1258 value
= Flookup_key (current_kboard
->Voverriding_terminal_local_map
,
1259 key
, accept_default
);
1260 if (! NILP (value
) && !INTEGERP (value
))
1261 RETURN_UNGCPRO (value
);
1263 else if (!NILP (Voverriding_local_map
))
1265 value
= Flookup_key (Voverriding_local_map
, key
, accept_default
);
1266 if (! NILP (value
) && !INTEGERP (value
))
1267 RETURN_UNGCPRO (value
);
1273 nmaps
= current_minor_maps (0, &maps
);
1274 /* Note that all these maps are GCPRO'd
1275 in the places where we found them. */
1277 for (i
= 0; i
< nmaps
; i
++)
1278 if (! NILP (maps
[i
]))
1280 value
= Flookup_key (maps
[i
], key
, accept_default
);
1281 if (! NILP (value
) && !INTEGERP (value
))
1282 RETURN_UNGCPRO (value
);
1285 local
= get_local_map (PT
, current_buffer
, Qkeymap
);
1288 value
= Flookup_key (local
, key
, accept_default
);
1289 if (! NILP (value
) && !INTEGERP (value
))
1290 RETURN_UNGCPRO (value
);
1293 local
= get_local_map (PT
, current_buffer
, Qlocal_map
);
1297 value
= Flookup_key (local
, key
, accept_default
);
1298 if (! NILP (value
) && !INTEGERP (value
))
1299 RETURN_UNGCPRO (value
);
1303 value
= Flookup_key (current_global_map
, key
, accept_default
);
1305 if (! NILP (value
) && !INTEGERP (value
))
1311 /* GC is possible in this function if it autoloads a keymap. */
1313 DEFUN ("local-key-binding", Flocal_key_binding
, Slocal_key_binding
, 1, 2, 0,
1314 "Return the binding for command KEYS in current local keymap only.\n\
1315 KEYS is a string, a sequence of keystrokes.\n\
1316 The binding is probably a symbol with a function definition.\n\
1318 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1319 bindings; see the description of `lookup-key' for more details about this.")
1320 (keys
, accept_default
)
1321 Lisp_Object keys
, accept_default
;
1323 register Lisp_Object map
;
1324 map
= current_buffer
->keymap
;
1327 return Flookup_key (map
, keys
, accept_default
);
1330 /* GC is possible in this function if it autoloads a keymap. */
1332 DEFUN ("global-key-binding", Fglobal_key_binding
, Sglobal_key_binding
, 1, 2, 0,
1333 "Return the binding for command KEYS in current global keymap only.\n\
1334 KEYS is a string, a sequence of keystrokes.\n\
1335 The binding is probably a symbol with a function definition.\n\
1336 This function's return values are the same as those of lookup-key\n\
1339 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1340 bindings; see the description of `lookup-key' for more details about this.")
1341 (keys
, accept_default
)
1342 Lisp_Object keys
, accept_default
;
1344 return Flookup_key (current_global_map
, keys
, accept_default
);
1347 /* GC is possible in this function if it autoloads a keymap. */
1349 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding
, Sminor_mode_key_binding
, 1, 2, 0,
1350 "Find the visible minor mode bindings of KEY.\n\
1351 Return an alist of pairs (MODENAME . BINDING), where MODENAME is the\n\
1352 the symbol which names the minor mode binding KEY, and BINDING is\n\
1353 KEY's definition in that mode. In particular, if KEY has no\n\
1354 minor-mode bindings, return nil. If the first binding is a\n\
1355 non-prefix, all subsequent bindings will be omitted, since they would\n\
1356 be ignored. Similarly, the list doesn't include non-prefix bindings\n\
1357 that come after prefix bindings.\n\
1359 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\
1360 bindings; see the description of `lookup-key' for more details about this.")
1361 (key
, accept_default
)
1362 Lisp_Object key
, accept_default
;
1364 Lisp_Object
*modes
, *maps
;
1366 Lisp_Object binding
;
1368 struct gcpro gcpro1
, gcpro2
;
1370 nmaps
= current_minor_maps (&modes
, &maps
);
1371 /* Note that all these maps are GCPRO'd
1372 in the places where we found them. */
1375 GCPRO2 (key
, binding
);
1377 for (i
= j
= 0; i
< nmaps
; i
++)
1379 && !NILP (binding
= Flookup_key (maps
[i
], key
, accept_default
))
1380 && !INTEGERP (binding
))
1382 if (KEYMAPP (binding
))
1383 maps
[j
++] = Fcons (modes
[i
], binding
);
1385 RETURN_UNGCPRO (Fcons (Fcons (modes
[i
], binding
), Qnil
));
1389 return Flist (j
, maps
);
1392 DEFUN ("define-prefix-command", Fdefine_prefix_command
, Sdefine_prefix_command
, 1, 3, 0,
1393 "Define COMMAND as a prefix command. COMMAND should be a symbol.\n\
1394 A new sparse keymap is stored as COMMAND's function definition and its value.\n\
1395 If a second optional argument MAPVAR is given, the map is stored as\n\
1396 its value instead of as COMMAND's value; but COMMAND is still defined\n\
1398 The third optional argument NAME, if given, supplies a menu name\n\
1399 string for the map. This is required to use the keymap as a menu.")
1400 (command
, mapvar
, name
)
1401 Lisp_Object command
, mapvar
, name
;
1404 map
= Fmake_sparse_keymap (name
);
1405 Ffset (command
, map
);
1409 Fset (command
, map
);
1413 DEFUN ("use-global-map", Fuse_global_map
, Suse_global_map
, 1, 1, 0,
1414 "Select KEYMAP as the global keymap.")
1418 keymap
= get_keymap (keymap
, 1, 1);
1419 current_global_map
= keymap
;
1424 DEFUN ("use-local-map", Fuse_local_map
, Suse_local_map
, 1, 1, 0,
1425 "Select KEYMAP as the local keymap.\n\
1426 If KEYMAP is nil, that means no local keymap.")
1431 keymap
= get_keymap (keymap
, 1, 1);
1433 current_buffer
->keymap
= keymap
;
1438 DEFUN ("current-local-map", Fcurrent_local_map
, Scurrent_local_map
, 0, 0, 0,
1439 "Return current buffer's local keymap, or nil if it has none.")
1442 return current_buffer
->keymap
;
1445 DEFUN ("current-global-map", Fcurrent_global_map
, Scurrent_global_map
, 0, 0, 0,
1446 "Return the current global keymap.")
1449 return current_global_map
;
1452 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps
, Scurrent_minor_mode_maps
, 0, 0, 0,
1453 "Return a list of keymaps for the minor modes of the current buffer.")
1457 int nmaps
= current_minor_maps (0, &maps
);
1459 return Flist (nmaps
, maps
);
1462 /* Help functions for describing and documenting keymaps. */
1464 static void accessible_keymaps_char_table
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
));
1466 /* This function cannot GC. */
1468 DEFUN ("accessible-keymaps", Faccessible_keymaps
, Saccessible_keymaps
,
1470 "Find all keymaps accessible via prefix characters from KEYMAP.\n\
1471 Returns a list of elements of the form (KEYS . MAP), where the sequence\n\
1472 KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\
1473 so that the KEYS increase in length. The first element is ([] . KEYMAP).\n\
1474 An optional argument PREFIX, if non-nil, should be a key sequence;\n\
1475 then the value includes only maps for prefixes that start with PREFIX.")
1477 Lisp_Object keymap
, prefix
;
1479 Lisp_Object maps
, good_maps
, tail
;
1482 /* no need for gcpro because we don't autoload any keymaps. */
1485 prefixlen
= XINT (Flength (prefix
));
1489 /* If a prefix was specified, start with the keymap (if any) for
1490 that prefix, so we don't waste time considering other prefixes. */
1492 tem
= Flookup_key (keymap
, prefix
, Qt
);
1493 /* Flookup_key may give us nil, or a number,
1494 if the prefix is not defined in this particular map.
1495 It might even give us a list that isn't a keymap. */
1496 tem
= get_keymap (tem
, 0, 0);
1499 /* Convert PREFIX to a vector now, so that later on
1500 we don't have to deal with the possibility of a string. */
1501 if (STRINGP (prefix
))
1506 copy
= Fmake_vector (make_number (XSTRING (prefix
)->size
), Qnil
);
1507 for (i
= 0, i_byte
= 0; i
< XSTRING (prefix
)->size
;)
1511 FETCH_STRING_CHAR_ADVANCE (c
, prefix
, i
, i_byte
);
1512 if (SINGLE_BYTE_CHAR_P (c
) && (c
& 0200))
1513 c
^= 0200 | meta_modifier
;
1514 ASET (copy
, i_before
, make_number (c
));
1518 maps
= Fcons (Fcons (prefix
, tem
), Qnil
);
1524 maps
= Fcons (Fcons (Fmake_vector (make_number (0), Qnil
),
1525 get_keymap (keymap
, 1, 0)),
1528 /* For each map in the list maps,
1529 look at any other maps it points to,
1530 and stick them at the end if they are not already in the list.
1532 This is a breadth-first traversal, where tail is the queue of
1533 nodes, and maps accumulates a list of all nodes visited. */
1535 for (tail
= maps
; CONSP (tail
); tail
= XCDR (tail
))
1537 register Lisp_Object thisseq
, thismap
;
1539 /* Does the current sequence end in the meta-prefix-char? */
1542 thisseq
= Fcar (Fcar (tail
));
1543 thismap
= Fcdr (Fcar (tail
));
1544 last
= make_number (XINT (Flength (thisseq
)) - 1);
1545 is_metized
= (XINT (last
) >= 0
1546 /* Don't metize the last char of PREFIX. */
1547 && XINT (last
) >= prefixlen
1548 && EQ (Faref (thisseq
, last
), meta_prefix_char
));
1550 for (; CONSP (thismap
); thismap
= XCDR (thismap
))
1554 elt
= XCAR (thismap
);
1558 if (CHAR_TABLE_P (elt
))
1560 Lisp_Object indices
[3];
1562 map_char_table (accessible_keymaps_char_table
, Qnil
,
1563 elt
, Fcons (Fcons (maps
, make_number (is_metized
)),
1564 Fcons (tail
, thisseq
)),
1567 else if (VECTORP (elt
))
1571 /* Vector keymap. Scan all the elements. */
1572 for (i
= 0; i
< ASIZE (elt
); i
++)
1574 register Lisp_Object tem
;
1575 register Lisp_Object cmd
;
1577 cmd
= get_keyelt (AREF (elt
, i
), 0);
1578 if (NILP (cmd
)) continue;
1579 tem
= get_keymap (cmd
, 0, 0);
1583 /* Ignore keymaps that are already added to maps. */
1584 tem
= Frassq (cmd
, maps
);
1587 /* If the last key in thisseq is meta-prefix-char,
1588 turn it into a meta-ized keystroke. We know
1589 that the event we're about to append is an
1590 ascii keystroke since we're processing a
1594 int meta_bit
= meta_modifier
;
1595 tem
= Fcopy_sequence (thisseq
);
1597 Faset (tem
, last
, make_number (i
| meta_bit
));
1599 /* This new sequence is the same length as
1600 thisseq, so stick it in the list right
1603 = Fcons (Fcons (tem
, cmd
), XCDR (tail
));
1607 tem
= append_key (thisseq
, make_number (i
));
1608 nconc2 (tail
, Fcons (Fcons (tem
, cmd
), Qnil
));
1614 else if (CONSP (elt
))
1616 register Lisp_Object cmd
, tem
;
1618 cmd
= get_keyelt (XCDR (elt
), 0);
1619 /* Ignore definitions that aren't keymaps themselves. */
1620 tem
= get_keymap (cmd
, 0, 0);
1623 /* Ignore keymaps that have been seen already. */
1625 tem
= Frassq (cmd
, maps
);
1628 /* Let elt be the event defined by this map entry. */
1631 /* If the last key in thisseq is meta-prefix-char, and
1632 this entry is a binding for an ascii keystroke,
1633 turn it into a meta-ized keystroke. */
1634 if (is_metized
&& INTEGERP (elt
))
1636 Lisp_Object element
;
1639 tem
= Fvconcat (1, &element
);
1640 XSETFASTINT (AREF (tem
, XINT (last
)),
1641 XINT (elt
) | meta_modifier
);
1643 /* This new sequence is the same length as
1644 thisseq, so stick it in the list right
1647 = Fcons (Fcons (tem
, cmd
), XCDR (tail
));
1651 Fcons (Fcons (append_key (thisseq
, elt
), cmd
),
1662 /* Now find just the maps whose access prefixes start with PREFIX. */
1665 for (; CONSP (maps
); maps
= XCDR (maps
))
1667 Lisp_Object elt
, thisseq
;
1669 thisseq
= XCAR (elt
);
1670 /* The access prefix must be at least as long as PREFIX,
1671 and the first elements must match those of PREFIX. */
1672 if (XINT (Flength (thisseq
)) >= prefixlen
)
1675 for (i
= 0; i
< prefixlen
; i
++)
1678 XSETFASTINT (i1
, i
);
1679 if (!EQ (Faref (thisseq
, i1
), Faref (prefix
, i1
)))
1683 good_maps
= Fcons (elt
, good_maps
);
1687 return Fnreverse (good_maps
);
1691 accessible_keymaps_char_table (args
, index
, cmd
)
1692 Lisp_Object args
, index
, cmd
;
1695 Lisp_Object maps
, tail
, thisseq
;
1698 cmd
= get_keyelt (cmd
, 0);
1702 maps
= XCAR (XCAR (args
));
1703 is_metized
= XINT (XCDR (XCAR (args
)));
1704 tail
= XCAR (XCDR (args
));
1705 thisseq
= XCDR (XCDR (args
));
1707 tem
= get_keymap (cmd
, 0, 0);
1711 /* Ignore keymaps that are already added to maps. */
1712 tem
= Frassq (cmd
, maps
);
1715 /* If the last key in thisseq is meta-prefix-char,
1716 turn it into a meta-ized keystroke. We know
1717 that the event we're about to append is an
1718 ascii keystroke since we're processing a
1722 int meta_bit
= meta_modifier
;
1723 Lisp_Object last
= make_number (XINT (Flength (thisseq
)) - 1);
1724 tem
= Fcopy_sequence (thisseq
);
1726 Faset (tem
, last
, make_number (XINT (index
) | meta_bit
));
1728 /* This new sequence is the same length as
1729 thisseq, so stick it in the list right
1732 = Fcons (Fcons (tem
, cmd
), XCDR (tail
));
1736 tem
= append_key (thisseq
, index
);
1737 nconc2 (tail
, Fcons (Fcons (tem
, cmd
), Qnil
));
1743 Lisp_Object Qsingle_key_description
, Qkey_description
;
1745 /* This function cannot GC. */
1747 DEFUN ("key-description", Fkey_description
, Skey_description
, 1, 1, 0,
1748 "Return a pretty description of key-sequence KEYS.\n\
1749 Control characters turn into \"C-foo\" sequences, meta into \"M-foo\"\n\
1750 spaces are put between sequence elements, etc.")
1757 Lisp_Object
*args
= NULL
;
1762 vector
= Fmake_vector (Flength (keys
), Qnil
);
1763 for (i
= 0, i_byte
= 0; i
< XSTRING (keys
)->size
; )
1768 FETCH_STRING_CHAR_ADVANCE (c
, keys
, i
, i_byte
);
1769 if (SINGLE_BYTE_CHAR_P (c
) && (c
& 0200))
1770 c
^= 0200 | meta_modifier
;
1771 XSETFASTINT (AREF (vector
, i_before
), c
);
1778 /* In effect, this computes
1779 (mapconcat 'single-key-description keys " ")
1780 but we shouldn't use mapconcat because it can do GC. */
1782 len
= XVECTOR (keys
)->size
;
1783 sep
= build_string (" ");
1784 /* This has one extra element at the end that we don't pass to Fconcat. */
1785 args
= (Lisp_Object
*) alloca (len
* 2 * sizeof (Lisp_Object
));
1787 for (i
= 0; i
< len
; i
++)
1789 args
[i
* 2] = Fsingle_key_description (AREF (keys
, i
), Qnil
);
1790 args
[i
* 2 + 1] = sep
;
1793 else if (CONSP (keys
))
1795 /* In effect, this computes
1796 (mapconcat 'single-key-description keys " ")
1797 but we shouldn't use mapconcat because it can do GC. */
1799 len
= XFASTINT (Flength (keys
));
1800 sep
= build_string (" ");
1801 /* This has one extra element at the end that we don't pass to Fconcat. */
1802 args
= (Lisp_Object
*) alloca (len
* 2 * sizeof (Lisp_Object
));
1804 for (i
= 0; i
< len
; i
++)
1806 args
[i
* 2] = Fsingle_key_description (XCAR (keys
), Qnil
);
1807 args
[i
* 2 + 1] = sep
;
1812 keys
= wrong_type_argument (Qarrayp
, keys
);
1815 return build_string ("");
1816 return Fconcat (len
* 2 - 1, args
);
1820 push_key_description (c
, p
, force_multibyte
)
1821 register unsigned int c
;
1823 int force_multibyte
;
1827 /* Clear all the meaningless bits above the meta bit. */
1828 c
&= meta_modifier
| ~ - meta_modifier
;
1829 c2
= c
& ~(alt_modifier
| ctrl_modifier
| hyper_modifier
1830 | meta_modifier
| shift_modifier
| super_modifier
);
1832 if (c
& alt_modifier
)
1838 if ((c
& ctrl_modifier
) != 0
1839 || (c2
< ' ' && c2
!= 27 && c2
!= '\t' && c2
!= Ctl ('M')))
1843 c
&= ~ctrl_modifier
;
1845 if (c
& hyper_modifier
)
1849 c
-= hyper_modifier
;
1851 if (c
& meta_modifier
)
1857 if (c
& shift_modifier
)
1861 c
-= shift_modifier
;
1863 if (c
& super_modifier
)
1867 c
-= super_modifier
;
1883 else if (c
== Ctl ('M'))
1891 /* `C-' already added above. */
1892 if (c
> 0 && c
<= Ctl ('Z'))
1911 || (NILP (current_buffer
->enable_multibyte_characters
)
1912 && SINGLE_BYTE_CHAR_P (c
)
1913 && !force_multibyte
))
1919 int valid_p
= SINGLE_BYTE_CHAR_P (c
) || char_valid_p (c
, 0);
1921 if (force_multibyte
&& valid_p
)
1923 if (SINGLE_BYTE_CHAR_P (c
))
1924 c
= unibyte_char_to_multibyte (c
);
1925 p
+= CHAR_STRING (c
, p
);
1927 else if (NILP (current_buffer
->enable_multibyte_characters
)
1932 /* The biggest character code uses 19 bits. */
1933 for (bit_offset
= 18; bit_offset
>= 0; bit_offset
-= 3)
1935 if (c
>= (1 << bit_offset
))
1936 *p
++ = ((c
& (7 << bit_offset
)) >> bit_offset
) + '0';
1940 p
+= CHAR_STRING (c
, p
);
1946 /* This function cannot GC. */
1948 DEFUN ("single-key-description", Fsingle_key_description
,
1949 Ssingle_key_description
, 1, 2, 0,
1950 "Return a pretty description of command character KEY.\n\
1951 Control characters turn into C-whatever, etc.\n\
1952 Optional argument NO-ANGLES non-nil means don't put angle brackets\n\
1953 around function keys and event symbols.")
1955 Lisp_Object key
, no_angles
;
1957 if (CONSP (key
) && lucid_event_type_list_p (key
))
1958 key
= Fevent_convert_list (key
);
1960 key
= EVENT_HEAD (key
);
1962 if (INTEGERP (key
)) /* Normal character */
1964 unsigned int charset
, c1
, c2
;
1965 int without_bits
= XINT (key
) & ~((-1) << CHARACTERBITS
);
1967 if (SINGLE_BYTE_CHAR_P (without_bits
))
1970 SPLIT_CHAR (without_bits
, charset
, c1
, c2
);
1973 && CHARSET_DEFINED_P (charset
)
1974 && ((c1
>= 0 && c1
< 32)
1975 || (c2
>= 0 && c2
< 32)))
1977 /* Handle a generic character. */
1979 name
= CHARSET_TABLE_INFO (charset
, CHARSET_LONG_NAME_IDX
);
1980 CHECK_STRING (name
, 0);
1981 return concat2 (build_string ("Character set "), name
);
1985 char tem
[KEY_DESCRIPTION_SIZE
], *end
;
1989 end
= push_key_description (XUINT (key
), tem
, 1);
1991 nchars
= multibyte_chars_in_text (tem
, nbytes
);
1992 if (nchars
== nbytes
)
1995 string
= build_string (tem
);
1998 string
= make_multibyte_string (tem
, nchars
, nbytes
);
2002 else if (SYMBOLP (key
)) /* Function key or event-symbol */
2004 if (NILP (no_angles
))
2007 = (char *) alloca (STRING_BYTES (XSYMBOL (key
)->name
) + 5);
2008 sprintf (buffer
, "<%s>", XSYMBOL (key
)->name
->data
);
2009 return build_string (buffer
);
2012 return Fsymbol_name (key
);
2014 else if (STRINGP (key
)) /* Buffer names in the menubar. */
2015 return Fcopy_sequence (key
);
2017 error ("KEY must be an integer, cons, symbol, or string");
2022 push_text_char_description (c
, p
)
2023 register unsigned int c
;
2035 *p
++ = c
+ 64; /* 'A' - 1 */
2047 /* This function cannot GC. */
2049 DEFUN ("text-char-description", Ftext_char_description
, Stext_char_description
, 1, 1, 0,
2050 "Return a pretty description of file-character CHARACTER.\n\
2051 Control characters turn into \"^char\", etc.")
2053 Lisp_Object character
;
2055 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */
2056 unsigned char str
[6];
2059 CHECK_NUMBER (character
, 0);
2061 c
= XINT (character
);
2062 if (!SINGLE_BYTE_CHAR_P (c
))
2064 int len
= CHAR_STRING (c
, str
);
2066 return make_multibyte_string (str
, 1, len
);
2069 *push_text_char_description (c
& 0377, str
) = 0;
2071 return build_string (str
);
2074 /* Return non-zero if SEQ contains only ASCII characters, perhaps with
2077 ascii_sequence_p (seq
)
2081 int len
= XINT (Flength (seq
));
2083 for (i
= 0; i
< len
; i
++)
2085 Lisp_Object ii
, elt
;
2087 XSETFASTINT (ii
, i
);
2088 elt
= Faref (seq
, ii
);
2091 || (XUINT (elt
) & ~CHAR_META
) >= 0x80)
2099 /* where-is - finding a command in a set of keymaps. */
2101 static Lisp_Object
where_is_internal_1 ();
2102 static void where_is_internal_2 ();
2104 /* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2105 Returns the first non-nil binding found in any of those maps. */
2108 shadow_lookup (shadow
, key
, flag
)
2109 Lisp_Object shadow
, key
, flag
;
2111 Lisp_Object tail
, value
;
2113 for (tail
= shadow
; CONSP (tail
); tail
= XCDR (tail
))
2115 value
= Flookup_key (XCAR (tail
), key
, flag
);
2116 if (!NILP (value
) && !NATNUMP (value
))
2122 /* This function can GC if Flookup_key autoloads any keymaps. */
2125 where_is_internal (definition
, keymaps
, firstonly
, noindirect
)
2126 Lisp_Object definition
, keymaps
;
2127 Lisp_Object firstonly
, noindirect
;
2129 Lisp_Object maps
= Qnil
;
2130 Lisp_Object found
, sequences
;
2131 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
2132 /* 1 means ignore all menu bindings entirely. */
2133 int nomenus
= !NILP (firstonly
) && !EQ (firstonly
, Qnon_ascii
);
2136 while (CONSP (found
))
2140 Faccessible_keymaps (get_keymap (XCAR (found
), 1, 0), Qnil
));
2141 found
= XCDR (found
);
2144 GCPRO5 (definition
, keymaps
, maps
, found
, sequences
);
2148 for (; !NILP (maps
); maps
= Fcdr (maps
))
2150 /* Key sequence to reach map, and the map that it reaches */
2151 register Lisp_Object
this, map
;
2153 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into
2154 [M-CHAR] sequences, check if last character of the sequence
2155 is the meta-prefix char. */
2159 this = Fcar (Fcar (maps
));
2160 map
= Fcdr (Fcar (maps
));
2161 last
= make_number (XINT (Flength (this)) - 1);
2162 last_is_meta
= (XINT (last
) >= 0
2163 && EQ (Faref (this, last
), meta_prefix_char
));
2165 /* if (nomenus && !ascii_sequence_p (this)) */
2166 if (nomenus
&& XINT (last
) >= 0
2167 && !INTEGERP (Faref (this, make_number (0))))
2168 /* If no menu entries should be returned, skip over the
2169 keymaps bound to `menu-bar' and `tool-bar' and other
2170 non-ascii prefixes like `C-down-mouse-2'. */
2177 /* Because the code we want to run on each binding is rather
2178 large, we don't want to have two separate loop bodies for
2179 sparse keymap bindings and tables; we want to iterate one
2180 loop body over both keymap and vector bindings.
2182 For this reason, if Fcar (map) is a vector, we don't
2183 advance map to the next element until i indicates that we
2184 have finished off the vector. */
2185 Lisp_Object elt
, key
, binding
;
2193 /* Set key and binding to the current key and binding, and
2194 advance map and i to the next binding. */
2197 Lisp_Object sequence
;
2199 /* In a vector, look at each element. */
2200 for (i
= 0; i
< XVECTOR (elt
)->size
; i
++)
2202 binding
= AREF (elt
, i
);
2203 XSETFASTINT (key
, i
);
2204 sequence
= where_is_internal_1 (binding
, key
, definition
,
2206 last
, nomenus
, last_is_meta
);
2207 if (!NILP (sequence
))
2208 sequences
= Fcons (sequence
, sequences
);
2211 else if (CHAR_TABLE_P (elt
))
2213 Lisp_Object indices
[3];
2216 args
= Fcons (Fcons (Fcons (definition
, noindirect
),
2217 Qnil
), /* Result accumulator. */
2218 Fcons (Fcons (this, last
),
2219 Fcons (make_number (nomenus
),
2220 make_number (last_is_meta
))));
2221 map_char_table (where_is_internal_2
, Qnil
, elt
, args
,
2223 sequences
= XCDR (XCAR (args
));
2225 else if (CONSP (elt
))
2227 Lisp_Object sequence
;
2230 binding
= XCDR (elt
);
2232 sequence
= where_is_internal_1 (binding
, key
, definition
,
2234 last
, nomenus
, last_is_meta
);
2235 if (!NILP (sequence
))
2236 sequences
= Fcons (sequence
, sequences
);
2240 for (; ! NILP (sequences
); sequences
= XCDR (sequences
))
2242 Lisp_Object sequence
;
2244 sequence
= XCAR (sequences
);
2246 /* Verify that this key binding is not shadowed by another
2247 binding for the same key, before we say it exists.
2249 Mechanism: look for local definition of this key and if
2250 it is defined and does not match what we found then
2253 Either nil or number as value from Flookup_key
2255 if (!EQ (shadow_lookup (keymaps
, sequence
, Qnil
), definition
))
2258 /* It is a true unshadowed match. Record it, unless it's already
2259 been seen (as could happen when inheriting keymaps). */
2260 if (NILP (Fmember (sequence
, found
)))
2261 found
= Fcons (sequence
, found
);
2263 /* If firstonly is Qnon_ascii, then we can return the first
2264 binding we find. If firstonly is not Qnon_ascii but not
2265 nil, then we should return the first ascii-only binding
2267 if (EQ (firstonly
, Qnon_ascii
))
2268 RETURN_UNGCPRO (sequence
);
2269 else if (! NILP (firstonly
) && ascii_sequence_p (sequence
))
2270 RETURN_UNGCPRO (sequence
);
2277 found
= Fnreverse (found
);
2279 /* firstonly may have been t, but we may have gone all the way through
2280 the keymaps without finding an all-ASCII key sequence. So just
2281 return the best we could find. */
2282 if (! NILP (firstonly
))
2283 return Fcar (found
);
2288 DEFUN ("where-is-internal", Fwhere_is_internal
, Swhere_is_internal
, 1, 4, 0,
2289 "Return list of keys that invoke DEFINITION.\n\
2290 If KEYMAP is non-nil, search only KEYMAP and the global keymap.\n\
2291 If KEYMAP is nil, search all the currently active keymaps.\n\
2292 If KEYMAP is a list of keymaps, search only those keymaps.\n\
2294 If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,\n\
2295 rather than a list of all possible key sequences.\n\
2296 If FIRSTONLY is the symbol `non-ascii', return the first binding found,\n\
2297 no matter what it is.\n\
2298 If FIRSTONLY has another non-nil value, prefer sequences of ASCII characters,\n\
2299 and entirely reject menu bindings.\n\
2301 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections\n\
2302 to other keymaps or slots. This makes it possible to search for an\n\
2303 indirect definition itself.")
2304 (definition
, keymap
, firstonly
, noindirect
)
2305 Lisp_Object definition
, keymap
;
2306 Lisp_Object firstonly
, noindirect
;
2308 Lisp_Object sequences
, keymaps
;
2309 /* 1 means ignore all menu bindings entirely. */
2310 int nomenus
= !NILP (firstonly
) && !EQ (firstonly
, Qnon_ascii
);
2313 /* Find the relevant keymaps. */
2314 if (CONSP (keymap
) && KEYMAPP (XCAR (keymap
)))
2316 else if (! NILP (keymap
))
2317 keymaps
= Fcons (keymap
, Fcons (current_global_map
, Qnil
));
2321 nconc2 (Fcurrent_minor_mode_maps (),
2322 Fcons (get_local_map (PT
, current_buffer
, Qkeymap
),
2323 Fcons (get_local_map (PT
, current_buffer
,
2325 Fcons (current_global_map
, Qnil
)))));
2327 /* Only use caching for the menubar (i.e. called with (def nil t nil).
2328 We don't really need to check `keymap'. */
2329 if (nomenus
&& NILP (noindirect
) && NILP (keymap
))
2333 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2335 /* Check heuristic-consistency of the cache. */
2336 if (NILP (Fequal (keymaps
, where_is_cache_keymaps
)))
2337 where_is_cache
= Qnil
;
2339 if (NILP (where_is_cache
))
2341 /* We need to create the cache. */
2342 Lisp_Object args
[2];
2343 where_is_cache
= Fmake_hash_table (0, args
);
2344 where_is_cache_keymaps
= Qt
;
2346 /* Fill in the cache. */
2347 GCPRO4 (definition
, keymaps
, firstonly
, noindirect
);
2348 where_is_internal (definition
, keymaps
, firstonly
, noindirect
);
2351 where_is_cache_keymaps
= keymaps
;
2354 /* We want to process definitions from the last to the first.
2355 Instead of consing, copy definitions to a vector and step
2356 over that vector. */
2357 sequences
= Fgethash (definition
, where_is_cache
, Qnil
);
2358 n
= XINT (Flength (sequences
));
2359 defns
= (Lisp_Object
*) alloca (n
* sizeof *defns
);
2360 for (i
= 0; CONSP (sequences
); sequences
= XCDR (sequences
))
2361 defns
[i
++] = XCAR (sequences
);
2363 /* Verify that the key bindings are not shadowed. Note that
2364 the following can GC. */
2365 GCPRO2 (definition
, keymaps
);
2368 for (i
= n
- 1; i
>= 0; --i
)
2369 if (EQ (shadow_lookup (keymaps
, defns
[i
], Qnil
), definition
))
2371 if (ascii_sequence_p (defns
[i
]))
2377 result
= i
>= 0 ? defns
[i
] : (j
>= 0 ? defns
[j
] : Qnil
);
2382 /* Kill the cache so that where_is_internal_1 doesn't think
2383 we're filling it up. */
2384 where_is_cache
= Qnil
;
2385 result
= where_is_internal (definition
, keymaps
, firstonly
, noindirect
);
2391 /* This is the function that Fwhere_is_internal calls using map_char_table.
2393 (((DEFINITION . NOINDIRECT) . (KEYMAP . RESULT))
2395 ((THIS . LAST) . (NOMENUS . LAST_IS_META)))
2396 Since map_char_table doesn't really use the return value from this function,
2397 we the result append to RESULT, the slot in ARGS.
2399 This function can GC because it calls where_is_internal_1 which can
2403 where_is_internal_2 (args
, key
, binding
)
2404 Lisp_Object args
, key
, binding
;
2406 Lisp_Object definition
, noindirect
, this, last
;
2407 Lisp_Object result
, sequence
;
2408 int nomenus
, last_is_meta
;
2409 struct gcpro gcpro1
, gcpro2
, gcpro3
;
2411 GCPRO3 (args
, key
, binding
);
2412 result
= XCDR (XCAR (args
));
2413 definition
= XCAR (XCAR (XCAR (args
)));
2414 noindirect
= XCDR (XCAR (XCAR (args
)));
2415 this = XCAR (XCAR (XCDR (args
)));
2416 last
= XCDR (XCAR (XCDR (args
)));
2417 nomenus
= XFASTINT (XCAR (XCDR (XCDR (args
))));
2418 last_is_meta
= XFASTINT (XCDR (XCDR (XCDR (args
))));
2420 sequence
= where_is_internal_1 (binding
, key
, definition
, noindirect
,
2421 this, last
, nomenus
, last_is_meta
);
2423 if (!NILP (sequence
))
2424 XCDR (XCAR (args
)) = Fcons (sequence
, result
);
2430 /* This function cannot GC. */
2433 where_is_internal_1 (binding
, key
, definition
, noindirect
, this, last
,
2434 nomenus
, last_is_meta
)
2435 Lisp_Object binding
, key
, definition
, noindirect
, this, last
;
2436 int nomenus
, last_is_meta
;
2438 Lisp_Object sequence
;
2440 /* Search through indirections unless that's not wanted. */
2441 if (NILP (noindirect
))
2442 binding
= get_keyelt (binding
, 0);
2444 /* End this iteration if this element does not match
2447 if (!(!NILP (where_is_cache
) /* everything "matches" during cache-fill. */
2448 || EQ (binding
, definition
)
2449 || (CONSP (definition
) && !NILP (Fequal (binding
, definition
)))))
2450 /* Doesn't match. */
2453 /* We have found a match. Construct the key sequence where we found it. */
2454 if (INTEGERP (key
) && last_is_meta
)
2456 sequence
= Fcopy_sequence (this);
2457 Faset (sequence
, last
, make_number (XINT (key
) | meta_modifier
));
2460 sequence
= append_key (this, key
);
2462 if (!NILP (where_is_cache
))
2464 Lisp_Object sequences
= Fgethash (binding
, where_is_cache
, Qnil
);
2465 Fputhash (binding
, Fcons (sequence
, sequences
), where_is_cache
);
2472 /* describe-bindings - summarizing all the bindings in a set of keymaps. */
2474 DEFUN ("describe-bindings-internal", Fdescribe_bindings_internal
, Sdescribe_bindings_internal
, 0, 2, "",
2475 "Show a list of all defined keys, and their definitions.\n\
2476 We put that list in a buffer, and display the buffer.\n\
2478 The optional argument MENUS, if non-nil, says to mention menu bindings.\n\
2479 \(Ordinarily these are omitted from the output.)\n\
2480 The optional argument PREFIX, if non-nil, should be a key sequence;\n\
2481 then we display only bindings that start with that prefix.")
2483 Lisp_Object menus
, prefix
;
2485 register Lisp_Object thisbuf
;
2486 XSETBUFFER (thisbuf
, current_buffer
);
2487 internal_with_output_to_temp_buffer ("*Help*",
2488 describe_buffer_bindings
,
2489 list3 (thisbuf
, prefix
, menus
));
2493 /* ARG is (BUFFER PREFIX MENU-FLAG). */
2496 describe_buffer_bindings (arg
)
2499 Lisp_Object descbuf
, prefix
, shadow
;
2501 register Lisp_Object start1
;
2502 struct gcpro gcpro1
;
2504 char *alternate_heading
2506 Keyboard translations:\n\n\
2507 You type Translation\n\
2508 -------- -----------\n";
2510 descbuf
= XCAR (arg
);
2512 prefix
= XCAR (arg
);
2514 nomenu
= NILP (XCAR (arg
));
2519 Fset_buffer (Vstandard_output
);
2521 /* Report on alternates for keys. */
2522 if (STRINGP (Vkeyboard_translate_table
) && !NILP (prefix
))
2525 unsigned char *translate
= XSTRING (Vkeyboard_translate_table
)->data
;
2526 int translate_len
= XSTRING (Vkeyboard_translate_table
)->size
;
2528 for (c
= 0; c
< translate_len
; c
++)
2529 if (translate
[c
] != c
)
2531 char buf
[KEY_DESCRIPTION_SIZE
];
2534 if (alternate_heading
)
2536 insert_string (alternate_heading
);
2537 alternate_heading
= 0;
2540 bufend
= push_key_description (translate
[c
], buf
, 1);
2541 insert (buf
, bufend
- buf
);
2542 Findent_to (make_number (16), make_number (1));
2543 bufend
= push_key_description (c
, buf
, 1);
2544 insert (buf
, bufend
- buf
);
2552 if (!NILP (Vkey_translation_map
))
2553 describe_map_tree (Vkey_translation_map
, 0, Qnil
, prefix
,
2554 "Key translations", nomenu
, 1, 0);
2558 Lisp_Object
*modes
, *maps
;
2560 /* Temporarily switch to descbuf, so that we can get that buffer's
2561 minor modes correctly. */
2562 Fset_buffer (descbuf
);
2564 if (!NILP (current_kboard
->Voverriding_terminal_local_map
)
2565 || !NILP (Voverriding_local_map
))
2568 nmaps
= current_minor_maps (&modes
, &maps
);
2569 Fset_buffer (Vstandard_output
);
2571 /* Print the minor mode maps. */
2572 for (i
= 0; i
< nmaps
; i
++)
2574 /* The title for a minor mode keymap
2575 is constructed at run time.
2576 We let describe_map_tree do the actual insertion
2577 because it takes care of other features when doing so. */
2580 if (!SYMBOLP (modes
[i
]))
2583 p
= title
= (char *) alloca (42 + XSYMBOL (modes
[i
])->name
->size
);
2587 bcopy (XSYMBOL (modes
[i
])->name
->data
, p
,
2588 XSYMBOL (modes
[i
])->name
->size
);
2589 p
+= XSYMBOL (modes
[i
])->name
->size
;
2591 bcopy (" Minor Mode Bindings", p
, sizeof (" Minor Mode Bindings") - 1);
2592 p
+= sizeof (" Minor Mode Bindings") - 1;
2595 describe_map_tree (maps
[i
], 1, shadow
, prefix
, title
, nomenu
, 0, 0);
2596 shadow
= Fcons (maps
[i
], shadow
);
2600 /* Print the (major mode) local map. */
2601 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
2602 start1
= current_kboard
->Voverriding_terminal_local_map
;
2603 else if (!NILP (Voverriding_local_map
))
2604 start1
= Voverriding_local_map
;
2606 start1
= XBUFFER (descbuf
)->keymap
;
2610 describe_map_tree (start1
, 1, shadow
, prefix
,
2611 "\f\nMajor Mode Bindings", nomenu
, 0, 0);
2612 shadow
= Fcons (start1
, shadow
);
2615 describe_map_tree (current_global_map
, 1, shadow
, prefix
,
2616 "\f\nGlobal Bindings", nomenu
, 0, 1);
2618 /* Print the function-key-map translations under this prefix. */
2619 if (!NILP (Vfunction_key_map
))
2620 describe_map_tree (Vfunction_key_map
, 0, Qnil
, prefix
,
2621 "\f\nFunction key map translations", nomenu
, 1, 0);
2623 call0 (intern ("help-mode"));
2624 Fset_buffer (descbuf
);
2629 /* Insert a description of the key bindings in STARTMAP,
2630 followed by those of all maps reachable through STARTMAP.
2631 If PARTIAL is nonzero, omit certain "uninteresting" commands
2632 (such as `undefined').
2633 If SHADOW is non-nil, it is a list of maps;
2634 don't mention keys which would be shadowed by any of them.
2635 PREFIX, if non-nil, says mention only keys that start with PREFIX.
2636 TITLE, if not 0, is a string to insert at the beginning.
2637 TITLE should not end with a colon or a newline; we supply that.
2638 If NOMENU is not 0, then omit menu-bar commands.
2640 If TRANSL is nonzero, the definitions are actually key translations
2641 so print strings and vectors differently.
2643 If ALWAYS_TITLE is nonzero, print the title even if there are no maps
2647 describe_map_tree (startmap
, partial
, shadow
, prefix
, title
, nomenu
, transl
,
2649 Lisp_Object startmap
, shadow
, prefix
;
2656 Lisp_Object maps
, orig_maps
, seen
, sub_shadows
;
2657 struct gcpro gcpro1
, gcpro2
, gcpro3
;
2664 orig_maps
= maps
= Faccessible_keymaps (startmap
, prefix
);
2667 GCPRO3 (maps
, seen
, sub_shadows
);
2673 /* Delete from MAPS each element that is for the menu bar. */
2674 for (list
= maps
; !NILP (list
); list
= XCDR (list
))
2676 Lisp_Object elt
, prefix
, tem
;
2679 prefix
= Fcar (elt
);
2680 if (XVECTOR (prefix
)->size
>= 1)
2682 tem
= Faref (prefix
, make_number (0));
2683 if (EQ (tem
, Qmenu_bar
))
2684 maps
= Fdelq (elt
, maps
);
2689 if (!NILP (maps
) || always_title
)
2693 insert_string (title
);
2696 insert_string (" Starting With ");
2697 insert1 (Fkey_description (prefix
));
2699 insert_string (":\n");
2701 insert_string (key_heading
);
2705 for (; !NILP (maps
); maps
= Fcdr (maps
))
2707 register Lisp_Object elt
, prefix
, tail
;
2710 prefix
= Fcar (elt
);
2714 for (tail
= shadow
; CONSP (tail
); tail
= XCDR (tail
))
2718 shmap
= XCAR (tail
);
2720 /* If the sequence by which we reach this keymap is zero-length,
2721 then the shadow map for this keymap is just SHADOW. */
2722 if ((STRINGP (prefix
) && XSTRING (prefix
)->size
== 0)
2723 || (VECTORP (prefix
) && XVECTOR (prefix
)->size
== 0))
2725 /* If the sequence by which we reach this keymap actually has
2726 some elements, then the sequence's definition in SHADOW is
2727 what we should use. */
2730 shmap
= Flookup_key (shmap
, Fcar (elt
), Qt
);
2731 if (INTEGERP (shmap
))
2735 /* If shmap is not nil and not a keymap,
2736 it completely shadows this map, so don't
2737 describe this map at all. */
2738 if (!NILP (shmap
) && !KEYMAPP (shmap
))
2742 sub_shadows
= Fcons (shmap
, sub_shadows
);
2745 /* Maps we have already listed in this loop shadow this map. */
2746 for (tail
= orig_maps
; ! EQ (tail
, maps
); tail
= XCDR (tail
))
2749 tem
= Fequal (Fcar (XCAR (tail
)), prefix
);
2751 sub_shadows
= Fcons (XCDR (XCAR (tail
)), sub_shadows
);
2754 describe_map (Fcdr (elt
), prefix
,
2755 transl
? describe_translation
: describe_command
,
2756 partial
, sub_shadows
, &seen
, nomenu
);
2762 insert_string ("\n");
2767 static int previous_description_column
;
2770 describe_command (definition
)
2771 Lisp_Object definition
;
2773 register Lisp_Object tem1
;
2774 int column
= current_column ();
2775 int description_column
;
2777 /* If column 16 is no good, go to col 32;
2778 but don't push beyond that--go to next line instead. */
2782 description_column
= 32;
2784 else if (column
> 14 || (column
> 10 && previous_description_column
== 32))
2785 description_column
= 32;
2787 description_column
= 16;
2789 Findent_to (make_number (description_column
), make_number (1));
2790 previous_description_column
= description_column
;
2792 if (SYMBOLP (definition
))
2794 XSETSTRING (tem1
, XSYMBOL (definition
)->name
);
2796 insert_string ("\n");
2798 else if (STRINGP (definition
) || VECTORP (definition
))
2799 insert_string ("Keyboard Macro\n");
2800 else if (KEYMAPP (definition
))
2801 insert_string ("Prefix Command\n");
2803 insert_string ("??\n");
2807 describe_translation (definition
)
2808 Lisp_Object definition
;
2810 register Lisp_Object tem1
;
2812 Findent_to (make_number (16), make_number (1));
2814 if (SYMBOLP (definition
))
2816 XSETSTRING (tem1
, XSYMBOL (definition
)->name
);
2818 insert_string ("\n");
2820 else if (STRINGP (definition
) || VECTORP (definition
))
2822 insert1 (Fkey_description (definition
));
2823 insert_string ("\n");
2825 else if (KEYMAPP (definition
))
2826 insert_string ("Prefix Command\n");
2828 insert_string ("??\n");
2831 /* Describe the contents of map MAP, assuming that this map itself is
2832 reached by the sequence of prefix keys KEYS (a string or vector).
2833 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
2836 describe_map (map
, keys
, elt_describer
, partial
, shadow
, seen
, nomenu
)
2837 register Lisp_Object map
;
2839 void (*elt_describer
) P_ ((Lisp_Object
));
2845 Lisp_Object elt_prefix
;
2846 Lisp_Object tail
, definition
, event
;
2848 Lisp_Object suppress
;
2851 struct gcpro gcpro1
, gcpro2
, gcpro3
;
2855 if (!NILP (keys
) && XFASTINT (Flength (keys
)) > 0)
2857 /* Call Fkey_description first, to avoid GC bug for the other string. */
2858 tem
= Fkey_description (keys
);
2859 elt_prefix
= concat2 (tem
, build_string (" "));
2865 suppress
= intern ("suppress-keymap");
2867 /* This vector gets used to present single keys to Flookup_key. Since
2868 that is done once per keymap element, we don't want to cons up a
2869 fresh vector every time. */
2870 kludge
= Fmake_vector (make_number (1), Qnil
);
2873 GCPRO3 (elt_prefix
, definition
, kludge
);
2875 for (tail
= map
; CONSP (tail
); tail
= XCDR (tail
))
2879 if (VECTORP (XCAR (tail
))
2880 || CHAR_TABLE_P (XCAR (tail
)))
2881 describe_vector (XCAR (tail
),
2882 elt_prefix
, elt_describer
, partial
, shadow
, map
,
2884 else if (CONSP (XCAR (tail
)))
2886 event
= XCAR (XCAR (tail
));
2888 /* Ignore bindings whose "keys" are not really valid events.
2889 (We get these in the frames and buffers menu.) */
2890 if (! (SYMBOLP (event
) || INTEGERP (event
)))
2893 if (nomenu
&& EQ (event
, Qmenu_bar
))
2896 definition
= get_keyelt (XCDR (XCAR (tail
)), 0);
2898 /* Don't show undefined commands or suppressed commands. */
2899 if (NILP (definition
)) continue;
2900 if (SYMBOLP (definition
) && partial
)
2902 tem
= Fget (definition
, suppress
);
2907 /* Don't show a command that isn't really visible
2908 because a local definition of the same key shadows it. */
2910 ASET (kludge
, 0, event
);
2913 tem
= shadow_lookup (shadow
, kludge
, Qt
);
2914 if (!NILP (tem
)) continue;
2917 tem
= Flookup_key (map
, kludge
, Qt
);
2918 if (! EQ (tem
, definition
)) continue;
2922 previous_description_column
= 0;
2927 if (!NILP (elt_prefix
))
2928 insert1 (elt_prefix
);
2930 /* THIS gets the string to describe the character EVENT. */
2931 insert1 (Fsingle_key_description (event
, Qnil
));
2933 /* Print a description of the definition of this character.
2934 elt_describer will take care of spacing out far enough
2935 for alignment purposes. */
2936 (*elt_describer
) (definition
);
2938 else if (EQ (XCAR (tail
), Qkeymap
))
2940 /* The same keymap might be in the structure twice, if we're
2941 using an inherited keymap. So skip anything we've already
2943 tem
= Fassq (tail
, *seen
);
2944 if (CONSP (tem
) && !NILP (Fequal (XCAR (tem
), keys
)))
2946 *seen
= Fcons (Fcons (tail
, keys
), *seen
);
2954 describe_vector_princ (elt
)
2957 Findent_to (make_number (16), make_number (1));
2962 DEFUN ("describe-vector", Fdescribe_vector
, Sdescribe_vector
, 1, 1, 0,
2963 "Insert a description of contents of VECTOR.\n\
2964 This is text showing the elements of vector matched against indices.")
2968 int count
= specpdl_ptr
- specpdl
;
2970 specbind (Qstandard_output
, Fcurrent_buffer ());
2971 CHECK_VECTOR_OR_CHAR_TABLE (vector
, 0);
2972 describe_vector (vector
, Qnil
, describe_vector_princ
, 0,
2973 Qnil
, Qnil
, (int *)0, 0);
2975 return unbind_to (count
, Qnil
);
2978 /* Insert in the current buffer a description of the contents of VECTOR.
2979 We call ELT_DESCRIBER to insert the description of one value found
2982 ELT_PREFIX describes what "comes before" the keys or indices defined
2983 by this vector. This is a human-readable string whose size
2984 is not necessarily related to the situation.
2986 If the vector is in a keymap, ELT_PREFIX is a prefix key which
2987 leads to this keymap.
2989 If the vector is a chartable, ELT_PREFIX is the vector
2990 of bytes that lead to the character set or portion of a character
2991 set described by this chartable.
2993 If PARTIAL is nonzero, it means do not mention suppressed commands
2994 (that assumes the vector is in a keymap).
2996 SHADOW is a list of keymaps that shadow this map.
2997 If it is non-nil, then we look up the key in those maps
2998 and we don't mention it now if it is defined by any of them.
3000 ENTIRE_MAP is the keymap in which this vector appears.
3001 If the definition in effect in the whole map does not match
3002 the one in this vector, we ignore this one.
3004 When describing a sub-char-table, INDICES is a list of
3005 indices at higher levels in this char-table,
3006 and CHAR_TABLE_DEPTH says how many levels down we have gone. */
3009 describe_vector (vector
, elt_prefix
, elt_describer
,
3010 partial
, shadow
, entire_map
,
3011 indices
, char_table_depth
)
3012 register Lisp_Object vector
;
3013 Lisp_Object elt_prefix
;
3014 void (*elt_describer
) P_ ((Lisp_Object
));
3017 Lisp_Object entire_map
;
3019 int char_table_depth
;
3021 Lisp_Object definition
;
3024 Lisp_Object suppress
;
3027 struct gcpro gcpro1
, gcpro2
, gcpro3
;
3028 /* Range of elements to be handled. */
3030 /* A flag to tell if a leaf in this level of char-table is not a
3031 generic character (i.e. a complete multibyte character). */
3039 indices
= (int *) alloca (3 * sizeof (int));
3043 /* This vector gets used to present single keys to Flookup_key. Since
3044 that is done once per vector element, we don't want to cons up a
3045 fresh vector every time. */
3046 kludge
= Fmake_vector (make_number (1), Qnil
);
3047 GCPRO3 (elt_prefix
, definition
, kludge
);
3050 suppress
= intern ("suppress-keymap");
3052 if (CHAR_TABLE_P (vector
))
3054 if (char_table_depth
== 0)
3056 /* VECTOR is a top level char-table. */
3059 to
= CHAR_TABLE_ORDINARY_SLOTS
;
3063 /* VECTOR is a sub char-table. */
3064 if (char_table_depth
>= 3)
3065 /* A char-table is never that deep. */
3066 error ("Too deep char table");
3069 = (CHARSET_VALID_P (indices
[0])
3070 && ((CHARSET_DIMENSION (indices
[0]) == 1
3071 && char_table_depth
== 1)
3072 || char_table_depth
== 2));
3074 /* Meaningful elements are from 32th to 127th. */
3076 to
= SUB_CHAR_TABLE_ORDINARY_SLOTS
;
3081 /* This does the right thing for ordinary vectors. */
3085 to
= XVECTOR (vector
)->size
;
3088 for (i
= from
; i
< to
; i
++)
3092 if (CHAR_TABLE_P (vector
))
3094 if (char_table_depth
== 0 && i
>= CHAR_TABLE_SINGLE_BYTE_SLOTS
)
3097 if (i
>= CHAR_TABLE_SINGLE_BYTE_SLOTS
3098 && !CHARSET_DEFINED_P (i
- 128))
3102 = get_keyelt (XCHAR_TABLE (vector
)->contents
[i
], 0);
3105 definition
= get_keyelt (AREF (vector
, i
), 0);
3107 if (NILP (definition
)) continue;
3109 /* Don't mention suppressed commands. */
3110 if (SYMBOLP (definition
) && partial
)
3114 tem
= Fget (definition
, suppress
);
3116 if (!NILP (tem
)) continue;
3119 /* Set CHARACTER to the character this entry describes, if any.
3120 Also update *INDICES. */
3121 if (CHAR_TABLE_P (vector
))
3123 indices
[char_table_depth
] = i
;
3125 if (char_table_depth
== 0)
3128 indices
[0] = i
- 128;
3130 else if (complete_char
)
3132 character
= MAKE_CHAR (indices
[0], indices
[1], indices
[2]);
3140 /* If this binding is shadowed by some other map, ignore it. */
3141 if (!NILP (shadow
) && complete_char
)
3145 ASET (kludge
, 0, make_number (character
));
3146 tem
= shadow_lookup (shadow
, kludge
, Qt
);
3148 if (!NILP (tem
)) continue;
3151 /* Ignore this definition if it is shadowed by an earlier
3152 one in the same keymap. */
3153 if (!NILP (entire_map
) && complete_char
)
3157 ASET (kludge
, 0, make_number (character
));
3158 tem
= Flookup_key (entire_map
, kludge
, Qt
);
3160 if (! EQ (tem
, definition
))
3166 if (char_table_depth
== 0)
3171 /* For a sub char-table, show the depth by indentation.
3172 CHAR_TABLE_DEPTH can be greater than 0 only for a char-table. */
3173 if (char_table_depth
> 0)
3174 insert (" ", char_table_depth
* 2); /* depth is 1 or 2. */
3176 /* Output the prefix that applies to every entry in this map. */
3177 if (!NILP (elt_prefix
))
3178 insert1 (elt_prefix
);
3180 /* Insert or describe the character this slot is for,
3181 or a description of what it is for. */
3182 if (SUB_CHAR_TABLE_P (vector
))
3185 insert_char (character
);
3188 /* We need an octal representation for this block of
3191 sprintf (work
, "(row %d)", i
);
3192 insert (work
, strlen (work
));
3195 else if (CHAR_TABLE_P (vector
))
3198 insert1 (Fsingle_key_description (make_number (character
), Qnil
));
3201 /* Print the information for this character set. */
3202 insert_string ("<");
3203 tem2
= CHARSET_TABLE_INFO (i
- 128, CHARSET_SHORT_NAME_IDX
);
3205 insert_from_string (tem2
, 0, 0, XSTRING (tem2
)->size
,
3206 STRING_BYTES (XSTRING (tem2
)), 0);
3214 insert1 (Fsingle_key_description (make_number (character
), Qnil
));
3217 /* If we find a sub char-table within a char-table,
3218 scan it recursively; it defines the details for
3219 a character set or a portion of a character set. */
3220 if (CHAR_TABLE_P (vector
) && SUB_CHAR_TABLE_P (definition
))
3223 describe_vector (definition
, elt_prefix
, elt_describer
,
3224 partial
, shadow
, entire_map
,
3225 indices
, char_table_depth
+ 1);
3231 /* Find all consecutive characters or rows that have the same
3232 definition. But, for elements of a top level char table, if
3233 they are for charsets, we had better describe one by one even
3234 if they have the same definition. */
3235 if (CHAR_TABLE_P (vector
))
3239 if (char_table_depth
== 0)
3240 limit
= CHAR_TABLE_SINGLE_BYTE_SLOTS
;
3242 while (i
+ 1 < limit
3243 && (tem2
= get_keyelt (XCHAR_TABLE (vector
)->contents
[i
+ 1], 0),
3245 && !NILP (Fequal (tem2
, definition
)))
3250 && (tem2
= get_keyelt (AREF (vector
, i
+ 1), 0),
3252 && !NILP (Fequal (tem2
, definition
)))
3256 /* If we have a range of more than one character,
3257 print where the range reaches to. */
3259 if (i
!= starting_i
)
3263 if (!NILP (elt_prefix
))
3264 insert1 (elt_prefix
);
3266 if (CHAR_TABLE_P (vector
))
3268 if (char_table_depth
== 0)
3270 insert1 (Fsingle_key_description (make_number (i
), Qnil
));
3272 else if (complete_char
)
3274 indices
[char_table_depth
] = i
;
3275 character
= MAKE_CHAR (indices
[0], indices
[1], indices
[2]);
3276 insert_char (character
);
3280 /* We need an octal representation for this block of
3283 sprintf (work
, "(row %d)", i
);
3284 insert (work
, strlen (work
));
3289 insert1 (Fsingle_key_description (make_number (i
), Qnil
));
3293 /* Print a description of the definition of this character.
3294 elt_describer will take care of spacing out far enough
3295 for alignment purposes. */
3296 (*elt_describer
) (definition
);
3299 /* For (sub) char-table, print `defalt' slot at last. */
3300 if (CHAR_TABLE_P (vector
) && !NILP (XCHAR_TABLE (vector
)->defalt
))
3302 insert (" ", char_table_depth
* 2);
3303 insert_string ("<<default>>");
3304 (*elt_describer
) (XCHAR_TABLE (vector
)->defalt
);
3310 /* Apropos - finding all symbols whose names match a regexp. */
3311 Lisp_Object apropos_predicate
;
3312 Lisp_Object apropos_accumulate
;
3315 apropos_accum (symbol
, string
)
3316 Lisp_Object symbol
, string
;
3318 register Lisp_Object tem
;
3320 tem
= Fstring_match (string
, Fsymbol_name (symbol
), Qnil
);
3321 if (!NILP (tem
) && !NILP (apropos_predicate
))
3322 tem
= call1 (apropos_predicate
, symbol
);
3324 apropos_accumulate
= Fcons (symbol
, apropos_accumulate
);
3327 DEFUN ("apropos-internal", Fapropos_internal
, Sapropos_internal
, 1, 2, 0,
3328 "Show all symbols whose names contain match for REGEXP.\n\
3329 If optional 2nd arg PREDICATE is non-nil, (funcall PREDICATE SYMBOL) is done\n\
3330 for each symbol and a symbol is mentioned only if that returns non-nil.\n\
3331 Return list of symbols found.")
3333 Lisp_Object regexp
, predicate
;
3335 struct gcpro gcpro1
, gcpro2
;
3336 CHECK_STRING (regexp
, 0);
3337 apropos_predicate
= predicate
;
3338 GCPRO2 (apropos_predicate
, apropos_accumulate
);
3339 apropos_accumulate
= Qnil
;
3340 map_obarray (Vobarray
, apropos_accum
, regexp
);
3341 apropos_accumulate
= Fsort (apropos_accumulate
, Qstring_lessp
);
3343 return apropos_accumulate
;
3349 Qkeymap
= intern ("keymap");
3350 staticpro (&Qkeymap
);
3352 /* Now we are ready to set up this property, so we can
3353 create char tables. */
3354 Fput (Qkeymap
, Qchar_table_extra_slots
, make_number (0));
3356 /* Initialize the keymaps standardly used.
3357 Each one is the value of a Lisp variable, and is also
3358 pointed to by a C variable */
3360 global_map
= Fmake_keymap (Qnil
);
3361 Fset (intern ("global-map"), global_map
);
3363 current_global_map
= global_map
;
3364 staticpro (&global_map
);
3365 staticpro (¤t_global_map
);
3367 meta_map
= Fmake_keymap (Qnil
);
3368 Fset (intern ("esc-map"), meta_map
);
3369 Ffset (intern ("ESC-prefix"), meta_map
);
3371 control_x_map
= Fmake_keymap (Qnil
);
3372 Fset (intern ("ctl-x-map"), control_x_map
);
3373 Ffset (intern ("Control-X-prefix"), control_x_map
);
3375 DEFVAR_LISP ("define-key-rebound-commands", &Vdefine_key_rebound_commands
,
3376 "List of commands given new key bindings recently.\n\
3377 This is used for internal purposes during Emacs startup;\n\
3378 don't alter it yourself.");
3379 Vdefine_key_rebound_commands
= Qt
;
3381 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map
,
3382 "Default keymap to use when reading from the minibuffer.");
3383 Vminibuffer_local_map
= Fmake_sparse_keymap (Qnil
);
3385 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map
,
3386 "Local keymap for the minibuffer when spaces are not allowed.");
3387 Vminibuffer_local_ns_map
= Fmake_sparse_keymap (Qnil
);
3389 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map
,
3390 "Local keymap for minibuffer input with completion.");
3391 Vminibuffer_local_completion_map
= Fmake_sparse_keymap (Qnil
);
3393 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map
,
3394 "Local keymap for minibuffer input with completion, for exact match.");
3395 Vminibuffer_local_must_match_map
= Fmake_sparse_keymap (Qnil
);
3397 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist
,
3398 "Alist of keymaps to use for minor modes.\n\
3399 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read\n\
3400 key sequences and look up bindings iff VARIABLE's value is non-nil.\n\
3401 If two active keymaps bind the same key, the keymap appearing earlier\n\
3402 in the list takes precedence.");
3403 Vminor_mode_map_alist
= Qnil
;
3405 DEFVAR_LISP ("minor-mode-overriding-map-alist", &Vminor_mode_overriding_map_alist
,
3406 "Alist of keymaps to use for minor modes, in current major mode.\n\
3407 This variable is a alist just like `minor-mode-map-alist', and it is\n\
3408 used the same way (and before `minor-mode-map-alist'); however,\n\
3409 it is provided for major modes to bind locally.");
3410 Vminor_mode_overriding_map_alist
= Qnil
;
3412 DEFVAR_LISP ("function-key-map", &Vfunction_key_map
,
3413 "Keymap mapping ASCII function key sequences onto their preferred forms.\n\
3414 This allows Emacs to recognize function keys sent from ASCII\n\
3415 terminals at any point in a key sequence.\n\
3417 The `read-key-sequence' function replaces any subsequence bound by\n\
3418 `function-key-map' with its binding. More precisely, when the active\n\
3419 keymaps have no binding for the current key sequence but\n\
3420 `function-key-map' binds a suffix of the sequence to a vector or string,\n\
3421 `read-key-sequence' replaces the matching suffix with its binding, and\n\
3422 continues with the new sequence.\n\
3424 The events that come from bindings in `function-key-map' are not\n\
3425 themselves looked up in `function-key-map'.\n\
3427 For example, suppose `function-key-map' binds `ESC O P' to [f1].\n\
3428 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing\n\
3429 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix\n\
3430 key, typing `ESC O P x' would return [f1 x].");
3431 Vfunction_key_map
= Fmake_sparse_keymap (Qnil
);
3433 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map
,
3434 "Keymap of key translations that can override keymaps.\n\
3435 This keymap works like `function-key-map', but comes after that,\n\
3436 and applies even for keys that have ordinary bindings.");
3437 Vkey_translation_map
= Qnil
;
3439 Qsingle_key_description
= intern ("single-key-description");
3440 staticpro (&Qsingle_key_description
);
3442 Qkey_description
= intern ("key-description");
3443 staticpro (&Qkey_description
);
3445 Qkeymapp
= intern ("keymapp");
3446 staticpro (&Qkeymapp
);
3448 Qnon_ascii
= intern ("non-ascii");
3449 staticpro (&Qnon_ascii
);
3451 Qmenu_item
= intern ("menu-item");
3452 staticpro (&Qmenu_item
);
3454 where_is_cache_keymaps
= Qt
;
3455 where_is_cache
= Qnil
;
3456 staticpro (&where_is_cache
);
3457 staticpro (&where_is_cache_keymaps
);
3459 defsubr (&Skeymapp
);
3460 defsubr (&Skeymap_parent
);
3461 defsubr (&Sset_keymap_parent
);
3462 defsubr (&Smake_keymap
);
3463 defsubr (&Smake_sparse_keymap
);
3464 defsubr (&Scopy_keymap
);
3465 defsubr (&Skey_binding
);
3466 defsubr (&Slocal_key_binding
);
3467 defsubr (&Sglobal_key_binding
);
3468 defsubr (&Sminor_mode_key_binding
);
3469 defsubr (&Sdefine_key
);
3470 defsubr (&Slookup_key
);
3471 defsubr (&Sdefine_prefix_command
);
3472 defsubr (&Suse_global_map
);
3473 defsubr (&Suse_local_map
);
3474 defsubr (&Scurrent_local_map
);
3475 defsubr (&Scurrent_global_map
);
3476 defsubr (&Scurrent_minor_mode_maps
);
3477 defsubr (&Saccessible_keymaps
);
3478 defsubr (&Skey_description
);
3479 defsubr (&Sdescribe_vector
);
3480 defsubr (&Ssingle_key_description
);
3481 defsubr (&Stext_char_description
);
3482 defsubr (&Swhere_is_internal
);
3483 defsubr (&Sdescribe_bindings_internal
);
3484 defsubr (&Sapropos_internal
);
3490 initial_define_key (global_map
, 033, "ESC-prefix");
3491 initial_define_key (global_map
, Ctl('X'), "Control-X-prefix");