Mercurial > emacs
annotate src/keymap.c @ 1236:5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Qt.
* keymap.c (Fwhere_is_internal): Don't forget to advance map to
the next element when we find something that is neither a vector
nor a cons. Don't forget to QUIT in the appropriate places,
either.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 28 Sep 1992 02:20:23 +0000 |
parents | 1aa2cd425737 |
children | 6ba9d5aaace6 |
rev | line source |
---|---|
250 | 1 /* Manipulation of keymaps |
647 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc. |
250 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
647 | 8 the Free Software Foundation; either version 2, or (at your option) |
250 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include "config.h" | |
22 #include <stdio.h> | |
23 #undef NULL | |
24 #include "lisp.h" | |
25 #include "commands.h" | |
26 #include "buffer.h" | |
517 | 27 #include "keyboard.h" |
250 | 28 |
29 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
30 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
31 /* The number of elements in keymap vectors. */ |
250 | 32 #define DENSE_TABLE_SIZE (0200) |
33 | |
34 /* Actually allocate storage for these variables */ | |
35 | |
36 Lisp_Object current_global_map; /* Current global keymap */ | |
37 | |
38 Lisp_Object global_map; /* default global key bindings */ | |
39 | |
40 Lisp_Object meta_map; /* The keymap used for globally bound | |
41 ESC-prefixed default commands */ | |
42 | |
43 Lisp_Object control_x_map; /* The keymap used for globally bound | |
44 C-x-prefixed default commands */ | |
45 | |
46 /* was MinibufLocalMap */ | |
47 Lisp_Object Vminibuffer_local_map; | |
48 /* The keymap used by the minibuf for local | |
49 bindings when spaces are allowed in the | |
50 minibuf */ | |
51 | |
52 /* was MinibufLocalNSMap */ | |
53 Lisp_Object Vminibuffer_local_ns_map; | |
54 /* The keymap used by the minibuf for local | |
55 bindings when spaces are not encouraged | |
56 in the minibuf */ | |
57 | |
58 /* keymap used for minibuffers when doing completion */ | |
59 /* was MinibufLocalCompletionMap */ | |
60 Lisp_Object Vminibuffer_local_completion_map; | |
61 | |
62 /* keymap used for minibuffers when doing completion and require a match */ | |
63 /* was MinibufLocalMustMatchMap */ | |
64 Lisp_Object Vminibuffer_local_must_match_map; | |
65 | |
465 | 66 /* Alist of minor mode variables and keymaps. */ |
67 Lisp_Object Vminor_mode_map_alist; | |
68 | |
517 | 69 /* Keymap mapping ASCII function key sequences onto their preferred forms. |
70 Initialized by the terminal-specific lisp files. See DEFVAR for more | |
71 documentation. */ | |
72 Lisp_Object Vfunction_key_map; | |
73 | |
250 | 74 Lisp_Object Qkeymapp, Qkeymap; |
75 | |
76 /* A char over 0200 in a key sequence | |
77 is equivalent to prefixing with this character. */ | |
78 | |
79 extern Lisp_Object meta_prefix_char; | |
80 | |
81 void describe_map_tree (); | |
82 static Lisp_Object describe_buffer_bindings (); | |
83 static void describe_command (); | |
84 static void describe_map (); | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
85 static void describe_map_2 (); |
250 | 86 |
465 | 87 /* Keymap object support - constructors and predicates. */ |
88 | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
89 DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0, |
250 | 90 "Construct and return a new keymap, of the form (keymap VECTOR . ALIST).\n\ |
91 VECTOR is a 128-element vector which holds the bindings for the ASCII\n\ | |
92 characters. ALIST is an assoc-list which holds bindings for function keys,\n\ | |
93 mouse events, and any other things that appear in the input stream.\n\ | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
94 All entries in it are initially nil, meaning \"command undefined\".\n\n\ |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
95 The optional arg STRING supplies a menu name for the keymap\n\ |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
96 in case you use it as a menu with `x-popup-menu'.") |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
97 (string) |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
98 Lisp_Object string; |
250 | 99 { |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
100 Lisp_Object tail; |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
101 if (!NILP (string)) |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
102 tail = Fcons (string, Qnil); |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
103 else |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
104 tail = Qnil; |
250 | 105 return Fcons (Qkeymap, |
106 Fcons (Fmake_vector (make_number (DENSE_TABLE_SIZE), Qnil), | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
107 tail)); |
250 | 108 } |
109 | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
110 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0, |
250 | 111 "Construct and return a new sparse-keymap list.\n\ |
112 Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),\n\ | |
113 which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),\n\ | |
114 which binds the function key or mouse event SYMBOL to DEFINITION.\n\ | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
115 Initially the alist is nil.\n\n\ |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
116 The optional arg STRING supplies a menu name for the keymap\n\ |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
117 in case you use it as a menu with `x-popup-menu'.") |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
118 (string) |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
119 Lisp_Object string; |
250 | 120 { |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
121 if (!NILP (string)) |
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
122 return Fcons (Qkeymap, Fcons (string, Qnil)); |
250 | 123 return Fcons (Qkeymap, Qnil); |
124 } | |
125 | |
126 /* This function is used for installing the standard key bindings | |
127 at initialization time. | |
128 | |
129 For example: | |
130 | |
131 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); | |
132 | |
133 I haven't extended these to allow the initializing code to bind | |
134 function keys and mouse events; since they are called by many files, | |
135 I'd have to fix lots of callers, and nobody right now would be using | |
136 the new functionality, so it seems like a waste of time. But there's | |
137 no technical reason not to. -JimB */ | |
138 | |
139 void | |
140 initial_define_key (keymap, key, defname) | |
141 Lisp_Object keymap; | |
142 int key; | |
143 char *defname; | |
144 { | |
145 store_in_keymap (keymap, make_number (key), intern (defname)); | |
146 } | |
147 | |
148 /* Define character fromchar in map frommap as an alias for character | |
149 tochar in map tomap. Subsequent redefinitions of the latter WILL | |
150 affect the former. */ | |
151 | |
152 #if 0 | |
153 void | |
154 synkey (frommap, fromchar, tomap, tochar) | |
155 struct Lisp_Vector *frommap, *tomap; | |
156 int fromchar, tochar; | |
157 { | |
158 Lisp_Object v, c; | |
159 XSET (v, Lisp_Vector, tomap); | |
160 XFASTINT (c) = tochar; | |
161 frommap->contents[fromchar] = Fcons (v, c); | |
162 } | |
163 #endif /* 0 */ | |
164 | |
165 DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0, | |
166 "Return t if ARG is a keymap.\n\ | |
362 | 167 \n\ |
168 A keymap is list (keymap . ALIST), a list (keymap VECTOR . ALIST),\n\ | |
169 or a symbol whose function definition is a keymap is itself a keymap.\n\ | |
170 ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);\n\ | |
171 VECTOR is a 128-element vector of bindings for ASCII characters.") | |
250 | 172 (object) |
173 Lisp_Object object; | |
174 { | |
485 | 175 return (NILP (get_keymap_1 (object, 0)) ? Qnil : Qt); |
250 | 176 } |
177 | |
178 /* Check that OBJECT is a keymap (after dereferencing through any | |
179 symbols). If it is, return it; otherwise, return nil, or signal an | |
180 error if ERROR != 0. */ | |
181 Lisp_Object | |
182 get_keymap_1 (object, error) | |
183 Lisp_Object object; | |
184 int error; | |
185 { | |
186 register Lisp_Object tem; | |
187 | |
647 | 188 tem = indirect_function (object); |
250 | 189 if (CONSP (tem) && EQ (XCONS (tem)->car, Qkeymap)) |
190 return tem; | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
191 |
250 | 192 if (error) |
193 wrong_type_argument (Qkeymapp, object); | |
465 | 194 else |
195 return Qnil; | |
250 | 196 } |
197 | |
198 Lisp_Object | |
199 get_keymap (object) | |
200 Lisp_Object object; | |
201 { | |
202 return get_keymap_1 (object, 1); | |
203 } | |
204 | |
205 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
206 /* Look up IDX in MAP. IDX may be any sort of event. |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
207 Note that this does only one level of lookup; IDX must be a single |
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
208 event, not a sequence. */ |
250 | 209 |
210 Lisp_Object | |
211 access_keymap (map, idx) | |
212 Lisp_Object map; | |
213 Lisp_Object idx; | |
214 { | |
215 /* If idx is a list (some sort of mouse click, perhaps?), | |
216 the index we want to use is the car of the list, which | |
217 ought to be a symbol. */ | |
517 | 218 if (EVENT_HAS_PARAMETERS (idx)) |
219 idx = EVENT_HEAD (idx); | |
250 | 220 |
221 if (XTYPE (idx) == Lisp_Int | |
222 && (XINT (idx) < 0 || XINT (idx) >= DENSE_TABLE_SIZE)) | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
223 error ("only ASCII characters may used as keymap indices"); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
224 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
225 /* If idx is a symbol, it might have modifiers, which need to |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
226 be put in the canonical order. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
227 else if (XTYPE (idx) == Lisp_Symbol) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
228 idx = reorder_modifiers (idx); |
250 | 229 |
230 { | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
231 Lisp_Object tail; |
250 | 232 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
233 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
234 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
235 Lisp_Object binding = XCONS (tail)->car; |
250 | 236 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
237 switch (XTYPE (binding)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
238 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
239 case Lisp_Cons: |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
240 if (EQ (XCONS (binding)->car, idx)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
241 return XCONS (binding)->cdr; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
242 break; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
243 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
244 case Lisp_Vector: |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
245 if (XVECTOR (binding)->size == DENSE_TABLE_SIZE |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
246 && XTYPE (idx) == Lisp_Int) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
247 return XVECTOR (binding)->contents[XINT (idx)]; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
248 break; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
249 } |
250 | 250 } |
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
251 } |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
252 |
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
253 return Qnil; |
250 | 254 } |
255 | |
256 /* Given OBJECT which was found in a slot in a keymap, | |
257 trace indirect definitions to get the actual definition of that slot. | |
258 An indirect definition is a list of the form | |
259 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one | |
260 and INDEX is the object to look up in KEYMAP to yield the definition. | |
261 | |
262 Also if OBJECT has a menu string as the first element, | |
1160
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
263 remove that. Also remove a menu help string as second element. */ |
250 | 264 |
265 Lisp_Object | |
266 get_keyelt (object) | |
267 register Lisp_Object object; | |
268 { | |
269 while (1) | |
270 { | |
271 register Lisp_Object map, tem; | |
272 | |
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
273 /* If the contents are (KEYMAP . ELEMENT), go indirect. */ |
250 | 274 map = get_keymap_1 (Fcar_safe (object), 0); |
275 tem = Fkeymapp (map); | |
485 | 276 if (!NILP (tem)) |
250 | 277 object = access_keymap (map, Fcdr (object)); |
278 | |
279 /* If the keymap contents looks like (STRING . DEFN), | |
280 use DEFN. | |
281 Keymap alist elements like (CHAR MENUSTRING . DEFN) | |
282 will be used by HierarKey menus. */ | |
283 else if (XTYPE (object) == Lisp_Cons | |
284 && XTYPE (XCONS (object)->car) == Lisp_String) | |
1160
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
285 { |
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
286 object = XCONS (object)->cdr; |
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
287 /* Also remove a menu help string, if any, |
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
288 following the menu item name. */ |
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
289 if (XTYPE (object) == Lisp_Cons |
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
290 && XTYPE (XCONS (object)->car) == Lisp_String) |
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
291 object = XCONS (object)->cdr; |
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
292 } |
250 | 293 |
294 else | |
295 /* Anything else is really the value. */ | |
296 return object; | |
297 } | |
298 } | |
299 | |
300 Lisp_Object | |
301 store_in_keymap (keymap, idx, def) | |
302 Lisp_Object keymap; | |
303 register Lisp_Object idx; | |
304 register Lisp_Object def; | |
305 { | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
306 if (XTYPE (keymap) != Lisp_Cons |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
307 || ! EQ (XCONS (keymap)->car, Qkeymap)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
308 error ("attempt to define a key in a non-keymap"); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
309 |
250 | 310 /* If idx is a list (some sort of mouse click, perhaps?), |
311 the index we want to use is the car of the list, which | |
312 ought to be a symbol. */ | |
517 | 313 if (EVENT_HAS_PARAMETERS (idx)) |
314 idx = EVENT_HEAD (idx); | |
250 | 315 |
316 if (XTYPE (idx) == Lisp_Int | |
317 && (XINT (idx) < 0 || XINT (idx) >= DENSE_TABLE_SIZE)) | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
318 error ("only ASCII characters may be used as keymap indices"); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
319 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
320 /* If idx is a symbol, it might have modifiers, which need to |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
321 be put in the canonical order. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
322 else if (XTYPE (idx) == Lisp_Symbol) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
323 idx = reorder_modifiers (idx); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
324 |
250 | 325 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
326 /* Scan the keymap for a binding of idx. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
327 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
328 Lisp_Object tail; |
250 | 329 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
330 /* The cons after which we should insert new bindings. If the |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
331 keymap has a table element, we record its position here, so new |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
332 bindings will go after it; this way, the table will stay |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
333 towards the front of the alist and character lookups in dense |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
334 keymaps will remain fast. Otherwise, this just points at the |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
335 front of the keymap. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
336 Lisp_Object insertion_point = keymap; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
337 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
338 for (tail = XCONS (keymap)->cdr; CONSP (tail); tail = XCONS (tail)->cdr) |
250 | 339 { |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
340 Lisp_Object elt = XCONS (tail)->car; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
341 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
342 switch (XTYPE (elt)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
343 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
344 case Lisp_Vector: |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
345 if (XTYPE (idx) == Lisp_Int) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
346 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
347 XVECTOR (elt)->contents[XFASTINT (idx)] = def; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
348 return def; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
349 } |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
350 insertion_point = tail; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
351 break; |
250 | 352 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
353 case Lisp_Cons: |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
354 if (EQ (idx, XCONS (elt)->car)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
355 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
356 XCONS (elt)->cdr = def; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
357 return def; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
358 } |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
359 break; |
250 | 360 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
361 case Lisp_Symbol: |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
362 /* If we find a 'keymap' symbol in the spine of KEYMAP, |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
363 then we must have found the start of a second keymap |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
364 being used as the tail of KEYMAP, and a binding for IDX |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
365 should be inserted before it. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
366 if (EQ (elt, Qkeymap)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
367 goto keymap_end; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
368 break; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
369 } |
250 | 370 } |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
371 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
372 keymap_end: |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
373 /* We have scanned the entire keymap, and not found a binding for |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
374 IDX. Let's add one. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
375 XCONS (insertion_point)->cdr = |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
376 Fcons (Fcons (idx, def), XCONS (insertion_point)->cdr); |
250 | 377 } |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
378 |
250 | 379 return def; |
380 } | |
381 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
382 |
250 | 383 DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0, |
384 "Return a copy of the keymap KEYMAP.\n\ | |
385 The copy starts out with the same definitions of KEYMAP,\n\ | |
386 but changing either the copy or KEYMAP does not affect the other.\n\ | |
362 | 387 Any key definitions that are subkeymaps are recursively copied.\n\ |
388 However, a key definition which is a symbol whose definition is a keymap\n\ | |
389 is not copied.") | |
250 | 390 (keymap) |
391 Lisp_Object keymap; | |
392 { | |
393 register Lisp_Object copy, tail; | |
394 | |
395 copy = Fcopy_alist (get_keymap (keymap)); | |
396 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
397 for (tail = copy; CONSP (tail); tail = XCONS (tail)->cdr) |
250 | 398 { |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
399 Lisp_Object elt = XCONS (tail)->car; |
250 | 400 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
401 if (XTYPE (elt) == Lisp_Vector |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
402 && XVECTOR (elt)->size == DENSE_TABLE_SIZE) |
250 | 403 { |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
404 int i; |
250 | 405 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
406 elt = Fcopy_sequence (elt); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
407 XCONS (tail)->car = elt; |
250 | 408 |
409 for (i = 0; i < DENSE_TABLE_SIZE; i++) | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
410 if (XTYPE (XVECTOR (elt)->contents[i]) != Lisp_Symbol |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
411 && Fkeymapp (XVECTOR (elt)->contents[i])) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
412 XVECTOR (elt)->contents[i] = |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
413 Fcopy_keymap (XVECTOR (elt)->contents[i]); |
250 | 414 } |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
415 else if (CONSP (elt) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
416 && XTYPE (XCONS (elt)->cdr) != Lisp_Symbol |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
417 && ! NILP (Fkeymapp (XCONS (elt)->cdr))) |
250 | 418 XCONS (elt)->cdr = Fcopy_keymap (XCONS (elt)->cdr); |
419 } | |
420 | |
421 return copy; | |
422 } | |
423 | |
465 | 424 /* Simple Keymap mutators and accessors. */ |
425 | |
250 | 426 DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0, |
427 "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\ | |
428 KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\ | |
429 meaning a sequence of keystrokes and events.\n\ | |
430 DEF is anything that can be a key's definition:\n\ | |
431 nil (means key is undefined in this keymap),\n\ | |
432 a command (a Lisp function suitable for interactive calling)\n\ | |
433 a string (treated as a keyboard macro),\n\ | |
434 a keymap (to define a prefix key),\n\ | |
435 a symbol. When the key is looked up, the symbol will stand for its\n\ | |
436 function definition, which should at that time be one of the above,\n\ | |
437 or another symbol whose function definition is used, etc.\n\ | |
438 a cons (STRING . DEFN), meaning that DEFN is the definition\n\ | |
439 (DEFN should be a valid definition in its own right),\n\ | |
368 | 440 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.\n\ |
441 \n\ | |
442 If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at\n\ | |
443 the front of KEYMAP.") | |
250 | 444 (keymap, key, def) |
445 register Lisp_Object keymap; | |
446 Lisp_Object key; | |
447 Lisp_Object def; | |
448 { | |
449 register int idx; | |
450 register Lisp_Object c; | |
451 register Lisp_Object tem; | |
452 register Lisp_Object cmd; | |
453 int metized = 0; | |
454 int length; | |
455 | |
456 keymap = get_keymap (keymap); | |
457 | |
458 if (XTYPE (key) != Lisp_Vector | |
459 && XTYPE (key) != Lisp_String) | |
460 key = wrong_type_argument (Qarrayp, key); | |
461 | |
462 length = Flength (key); | |
463 if (length == 0) | |
464 return Qnil; | |
465 | |
466 idx = 0; | |
467 while (1) | |
468 { | |
469 c = Faref (key, make_number (idx)); | |
470 | |
471 if (XTYPE (c) == Lisp_Int | |
472 && XINT (c) >= 0200 | |
473 && !metized) | |
474 { | |
475 c = meta_prefix_char; | |
476 metized = 1; | |
477 } | |
478 else | |
479 { | |
480 if (XTYPE (c) == Lisp_Int) | |
481 XSETINT (c, XINT (c) & 0177); | |
482 | |
483 metized = 0; | |
484 idx++; | |
485 } | |
486 | |
487 if (idx == length) | |
488 return store_in_keymap (keymap, c, def); | |
489 | |
490 cmd = get_keyelt (access_keymap (keymap, c)); | |
491 | |
485 | 492 if (NILP (cmd)) |
250 | 493 { |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
494 cmd = Fmake_sparse_keymap (Qnil); |
250 | 495 store_in_keymap (keymap, c, cmd); |
496 } | |
497 | |
498 tem = Fkeymapp (cmd); | |
485 | 499 if (NILP (tem)) |
250 | 500 error ("Key sequence %s uses invalid prefix characters", |
501 XSTRING (key)->data); | |
502 | |
503 keymap = get_keymap (cmd); | |
504 } | |
505 } | |
506 | |
507 /* Value is number if KEY is too long; NIL if valid but has no definition. */ | |
508 | |
509 DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 2, 0, | |
510 "In keymap KEYMAP, look up key sequence KEY. Return the definition.\n\ | |
511 nil means undefined. See doc of `define-key' for kinds of definitions.\n\ | |
512 A number as value means KEY is \"too long\";\n\ | |
513 that is, characters or symbols in it except for the last one\n\ | |
514 fail to be a valid sequence of prefix characters in KEYMAP.\n\ | |
515 The number is how many characters at the front of KEY\n\ | |
516 it takes to reach a non-prefix command.") | |
517 (keymap, key) | |
518 register Lisp_Object keymap; | |
519 Lisp_Object key; | |
520 { | |
521 register int idx; | |
522 register Lisp_Object tem; | |
523 register Lisp_Object cmd; | |
524 register Lisp_Object c; | |
525 int metized = 0; | |
526 int length; | |
527 | |
528 keymap = get_keymap (keymap); | |
529 | |
530 if (XTYPE (key) != Lisp_Vector | |
531 && XTYPE (key) != Lisp_String) | |
532 key = wrong_type_argument (Qarrayp, key); | |
533 | |
534 length = Flength (key); | |
535 if (length == 0) | |
536 return keymap; | |
537 | |
538 idx = 0; | |
539 while (1) | |
540 { | |
541 c = Faref (key, make_number (idx)); | |
542 | |
543 if (XTYPE (c) == Lisp_Int | |
544 && XINT (c) >= 0200 | |
545 && !metized) | |
546 { | |
547 c = meta_prefix_char; | |
548 metized = 1; | |
549 } | |
550 else | |
551 { | |
552 if (XTYPE (c) == Lisp_Int) | |
553 XSETINT (c, XINT (c) & 0177); | |
554 | |
555 metized = 0; | |
556 idx++; | |
557 } | |
558 | |
559 cmd = get_keyelt (access_keymap (keymap, c)); | |
560 if (idx == length) | |
561 return cmd; | |
562 | |
563 tem = Fkeymapp (cmd); | |
485 | 564 if (NILP (tem)) |
250 | 565 return make_number (idx); |
566 | |
567 keymap = get_keymap (cmd); | |
568 QUIT; | |
569 } | |
570 } | |
571 | |
572 /* Append a key to the end of a key sequence. If key_sequence is a | |
573 string and key is a character, the result will be another string; | |
574 otherwise, it will be a vector. */ | |
575 Lisp_Object | |
576 append_key (key_sequence, key) | |
577 Lisp_Object key_sequence, key; | |
578 { | |
579 Lisp_Object args[2]; | |
580 | |
581 args[0] = key_sequence; | |
582 | |
583 if (XTYPE (key_sequence) == Lisp_String | |
584 && XTYPE (key) == Lisp_Int) | |
585 { | |
586 args[1] = Fchar_to_string (key); | |
587 return Fconcat (2, args); | |
588 } | |
589 else | |
590 { | |
591 args[1] = Fcons (key, Qnil); | |
592 return Fvconcat (2, args); | |
593 } | |
594 } | |
595 | |
596 | |
465 | 597 /* Global, local, and minor mode keymap stuff. */ |
598 | |
485 | 599 /* We can't put these variables inside current_minor_maps, since under |
517 | 600 some systems, static gets macro-defined to be the empty string. |
601 Ickypoo. */ | |
485 | 602 static Lisp_Object *cmm_modes, *cmm_maps; |
603 static int cmm_size; | |
604 | |
465 | 605 /* Store a pointer to an array of the keymaps of the currently active |
606 minor modes in *buf, and return the number of maps it contains. | |
607 | |
608 This function always returns a pointer to the same buffer, and may | |
609 free or reallocate it, so if you want to keep it for a long time or | |
610 hand it out to lisp code, copy it. This procedure will be called | |
611 for every key sequence read, so the nice lispy approach (return a | |
612 new assoclist, list, what have you) for each invocation would | |
613 result in a lot of consing over time. | |
614 | |
615 If we used xrealloc/xmalloc and ran out of memory, they would throw | |
616 back to the command loop, which would try to read a key sequence, | |
617 which would call this function again, resulting in an infinite | |
618 loop. Instead, we'll use realloc/malloc and silently truncate the | |
619 list, let the key sequence be read, and hope some other piece of | |
620 code signals the error. */ | |
621 int | |
622 current_minor_maps (modeptr, mapptr) | |
623 Lisp_Object **modeptr, **mapptr; | |
624 { | |
625 int i = 0; | |
517 | 626 Lisp_Object alist, assoc, var, val; |
465 | 627 |
628 for (alist = Vminor_mode_map_alist; | |
629 CONSP (alist); | |
630 alist = XCONS (alist)->cdr) | |
631 if (CONSP (assoc = XCONS (alist)->car) | |
632 && XTYPE (var = XCONS (assoc)->car) == Lisp_Symbol | |
517 | 633 && ! EQ ((val = find_symbol_value (var)), Qunbound) |
634 && ! NILP (val)) | |
465 | 635 { |
485 | 636 if (i >= cmm_size) |
465 | 637 { |
638 Lisp_Object *newmodes, *newmaps; | |
639 | |
485 | 640 if (cmm_maps) |
465 | 641 { |
485 | 642 newmodes = (Lisp_Object *) realloc (cmm_modes, cmm_size *= 2); |
643 newmaps = (Lisp_Object *) realloc (cmm_maps, cmm_size); | |
465 | 644 } |
645 else | |
646 { | |
485 | 647 newmodes = (Lisp_Object *) malloc (cmm_size = 30); |
648 newmaps = (Lisp_Object *) malloc (cmm_size); | |
465 | 649 } |
650 | |
651 if (newmaps && newmodes) | |
652 { | |
485 | 653 cmm_modes = newmodes; |
654 cmm_maps = newmaps; | |
465 | 655 } |
656 else | |
657 break; | |
658 } | |
485 | 659 cmm_modes[i] = var; |
660 cmm_maps [i] = XCONS (assoc)->cdr; | |
465 | 661 i++; |
662 } | |
663 | |
485 | 664 if (modeptr) *modeptr = cmm_modes; |
665 if (mapptr) *mapptr = cmm_maps; | |
465 | 666 return i; |
667 } | |
668 | |
250 | 669 DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 1, 0, |
670 "Return the binding for command KEY in current keymaps.\n\ | |
671 KEY is a string, a sequence of keystrokes.\n\ | |
672 The binding is probably a symbol with a function definition.") | |
673 (key) | |
674 Lisp_Object key; | |
675 { | |
465 | 676 Lisp_Object *maps, value; |
677 int nmaps, i; | |
678 | |
679 nmaps = current_minor_maps (0, &maps); | |
680 for (i = 0; i < nmaps; i++) | |
485 | 681 if (! NILP (maps[i])) |
465 | 682 { |
683 value = Flookup_key (maps[i], key); | |
485 | 684 if (! NILP (value) && XTYPE (value) != Lisp_Int) |
465 | 685 return value; |
686 } | |
687 | |
485 | 688 if (! NILP (current_buffer->keymap)) |
250 | 689 { |
465 | 690 value = Flookup_key (current_buffer->keymap, key); |
485 | 691 if (! NILP (value) && XTYPE (value) != Lisp_Int) |
250 | 692 return value; |
693 } | |
465 | 694 |
695 value = Flookup_key (current_global_map, key); | |
485 | 696 if (! NILP (value) && XTYPE (value) != Lisp_Int) |
465 | 697 return value; |
698 | |
699 return Qnil; | |
250 | 700 } |
701 | |
702 DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 1, 0, | |
703 "Return the binding for command KEYS in current local keymap only.\n\ | |
704 KEYS is a string, a sequence of keystrokes.\n\ | |
705 The binding is probably a symbol with a function definition.") | |
706 (keys) | |
707 Lisp_Object keys; | |
708 { | |
709 register Lisp_Object map; | |
710 map = current_buffer->keymap; | |
485 | 711 if (NILP (map)) |
250 | 712 return Qnil; |
713 return Flookup_key (map, keys); | |
714 } | |
715 | |
716 DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 1, 0, | |
717 "Return the binding for command KEYS in current global keymap only.\n\ | |
718 KEYS is a string, a sequence of keystrokes.\n\ | |
517 | 719 The binding is probably a symbol with a function definition.\n\ |
720 This function's return values are the same as those of lookup-key\n\ | |
721 (which see).") | |
250 | 722 (keys) |
723 Lisp_Object keys; | |
724 { | |
725 return Flookup_key (current_global_map, keys); | |
726 } | |
727 | |
465 | 728 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 1, 0, |
729 "Find the visible minor mode bindings of KEY.\n\ | |
730 Return an alist of pairs (MODENAME . BINDING), where MODENAME is the\n\ | |
731 the symbol which names the minor mode binding KEY, and BINDING is\n\ | |
732 KEY's definition in that mode. In particular, if KEY has no\n\ | |
733 minor-mode bindings, return nil. If the first binding is a\n\ | |
734 non-prefix, all subsequent bindings will be omitted, since they would\n\ | |
735 be ignored. Similarly, the list doesn't include non-prefix bindings\n\ | |
736 that come after prefix bindings.") | |
737 (key) | |
738 { | |
739 Lisp_Object *modes, *maps; | |
740 int nmaps; | |
741 Lisp_Object binding; | |
742 int i, j; | |
743 | |
744 nmaps = current_minor_maps (&modes, &maps); | |
745 | |
746 for (i = j = 0; i < nmaps; i++) | |
485 | 747 if (! NILP (maps[i]) |
748 && ! NILP (binding = Flookup_key (maps[i], key)) | |
465 | 749 && XTYPE (binding) != Lisp_Int) |
750 { | |
485 | 751 if (! NILP (get_keymap_1 (binding, 0))) |
465 | 752 maps[j++] = Fcons (modes[i], binding); |
753 else if (j == 0) | |
754 return Fcons (Fcons (modes[i], binding), Qnil); | |
755 } | |
756 | |
757 return Flist (j, maps); | |
758 } | |
759 | |
250 | 760 DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2, |
761 "kSet key globally: \nCSet key %s to command: ", | |
762 "Give KEY a global binding as COMMAND.\n\ | |
763 COMMAND is a symbol naming an interactively-callable function.\n\ | |
764 KEY is a string representing a sequence of keystrokes.\n\ | |
765 Note that if KEY has a local binding in the current buffer\n\ | |
766 that local binding will continue to shadow any global binding.") | |
767 (keys, function) | |
768 Lisp_Object keys, function; | |
769 { | |
770 if (XTYPE (keys) != Lisp_Vector | |
771 && XTYPE (keys) != Lisp_String) | |
772 keys = wrong_type_argument (Qarrayp, keys); | |
773 | |
774 Fdefine_key (current_global_map, keys, function); | |
775 return Qnil; | |
776 } | |
777 | |
778 DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2, | |
779 "kSet key locally: \nCSet key %s locally to command: ", | |
780 "Give KEY a local binding as COMMAND.\n\ | |
781 COMMAND is a symbol naming an interactively-callable function.\n\ | |
782 KEY is a string representing a sequence of keystrokes.\n\ | |
783 The binding goes in the current buffer's local map,\n\ | |
784 which is shared with other buffers in the same major mode.") | |
785 (keys, function) | |
786 Lisp_Object keys, function; | |
787 { | |
788 register Lisp_Object map; | |
789 map = current_buffer->keymap; | |
485 | 790 if (NILP (map)) |
250 | 791 { |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
792 map = Fmake_sparse_keymap (Qnil); |
250 | 793 current_buffer->keymap = map; |
794 } | |
795 | |
796 if (XTYPE (keys) != Lisp_Vector | |
797 && XTYPE (keys) != Lisp_String) | |
798 keys = wrong_type_argument (Qarrayp, keys); | |
799 | |
800 Fdefine_key (map, keys, function); | |
801 return Qnil; | |
802 } | |
803 | |
804 DEFUN ("global-unset-key", Fglobal_unset_key, Sglobal_unset_key, | |
805 1, 1, "kUnset key globally: ", | |
806 "Remove global binding of KEY.\n\ | |
807 KEY is a string representing a sequence of keystrokes.") | |
808 (keys) | |
809 Lisp_Object keys; | |
810 { | |
811 return Fglobal_set_key (keys, Qnil); | |
812 } | |
813 | |
814 DEFUN ("local-unset-key", Flocal_unset_key, Slocal_unset_key, 1, 1, | |
815 "kUnset key locally: ", | |
816 "Remove local binding of KEY.\n\ | |
817 KEY is a string representing a sequence of keystrokes.") | |
818 (keys) | |
819 Lisp_Object keys; | |
820 { | |
485 | 821 if (!NILP (current_buffer->keymap)) |
250 | 822 Flocal_set_key (keys, Qnil); |
823 return Qnil; | |
824 } | |
825 | |
826 DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 2, 0, | |
827 "Define COMMAND as a prefix command.\n\ | |
828 A new sparse keymap is stored as COMMAND's function definition and its value.\n\ | |
362 | 829 If a second optional argument MAPVAR is given, the map is stored as\n\ |
830 its value instead of as COMMAND's value; but COMMAND is still defined\n\ | |
831 as a function.") | |
250 | 832 (name, mapvar) |
833 Lisp_Object name, mapvar; | |
834 { | |
835 Lisp_Object map; | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
836 map = Fmake_sparse_keymap (Qnil); |
250 | 837 Ffset (name, map); |
485 | 838 if (!NILP (mapvar)) |
250 | 839 Fset (mapvar, map); |
840 else | |
841 Fset (name, map); | |
842 return name; | |
843 } | |
844 | |
845 DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0, | |
846 "Select KEYMAP as the global keymap.") | |
847 (keymap) | |
848 Lisp_Object keymap; | |
849 { | |
850 keymap = get_keymap (keymap); | |
851 current_global_map = keymap; | |
852 return Qnil; | |
853 } | |
854 | |
855 DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0, | |
856 "Select KEYMAP as the local keymap.\n\ | |
857 If KEYMAP is nil, that means no local keymap.") | |
858 (keymap) | |
859 Lisp_Object keymap; | |
860 { | |
485 | 861 if (!NILP (keymap)) |
250 | 862 keymap = get_keymap (keymap); |
863 | |
864 current_buffer->keymap = keymap; | |
865 | |
866 return Qnil; | |
867 } | |
868 | |
869 DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0, | |
870 "Return current buffer's local keymap, or nil if it has none.") | |
871 () | |
872 { | |
873 return current_buffer->keymap; | |
874 } | |
875 | |
876 DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0, | |
877 "Return the current global keymap.") | |
878 () | |
879 { | |
880 return current_global_map; | |
881 } | |
465 | 882 |
883 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0, | |
884 "Return a list of keymaps for the minor modes of the current buffer.") | |
885 () | |
886 { | |
887 Lisp_Object *maps; | |
888 int nmaps = current_minor_maps (0, &maps); | |
889 | |
890 return Flist (nmaps, maps); | |
891 } | |
250 | 892 |
465 | 893 /* Help functions for describing and documenting keymaps. */ |
894 | |
250 | 895 DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps, |
896 1, 1, 0, | |
897 "Find all keymaps accessible via prefix characters from KEYMAP.\n\ | |
898 Returns a list of elements of the form (KEYS . MAP), where the sequence\n\ | |
899 KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\ | |
900 so that the KEYS increase in length. The first element is (\"\" . KEYMAP).") | |
901 (startmap) | |
902 Lisp_Object startmap; | |
903 { | |
904 Lisp_Object maps, tail; | |
905 | |
906 maps = Fcons (Fcons (build_string (""), get_keymap (startmap)), Qnil); | |
907 | |
908 /* For each map in the list maps, | |
909 look at any other maps it points to, | |
910 and stick them at the end if they are not already in the list. | |
911 | |
912 This is a breadth-first traversal, where tail is the queue of | |
913 nodes, and maps accumulates a list of all nodes visited. */ | |
914 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
915 for (tail = maps; CONSP (tail); tail = XCONS (tail)->cdr) |
250 | 916 { |
917 register Lisp_Object thisseq = Fcar (Fcar (tail)); | |
918 register Lisp_Object thismap = Fcdr (Fcar (tail)); | |
919 Lisp_Object last = make_number (XINT (Flength (thisseq)) - 1); | |
920 | |
921 /* Does the current sequence end in the meta-prefix-char? */ | |
922 int is_metized = (XINT (last) >= 0 | |
923 && EQ (Faref (thisseq, last), meta_prefix_char)); | |
924 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
925 for (; CONSP (thismap); thismap = XCONS (thismap)->cdr) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
926 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
927 Lisp_Object elt = XCONS (thismap)->car; |
250 | 928 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
929 QUIT; |
250 | 930 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
931 if (XTYPE (elt) == Lisp_Vector) |
250 | 932 { |
933 register int i; | |
934 | |
935 /* Vector keymap. Scan all the elements. */ | |
936 for (i = 0; i < DENSE_TABLE_SIZE; i++) | |
937 { | |
938 register Lisp_Object tem; | |
939 register Lisp_Object cmd; | |
940 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
941 cmd = get_keyelt (XVECTOR (elt)->contents[i]); |
485 | 942 if (NILP (cmd)) continue; |
250 | 943 tem = Fkeymapp (cmd); |
485 | 944 if (!NILP (tem)) |
250 | 945 { |
946 cmd = get_keymap (cmd); | |
947 /* Ignore keymaps that are already added to maps. */ | |
948 tem = Frassq (cmd, maps); | |
485 | 949 if (NILP (tem)) |
250 | 950 { |
951 /* If the last key in thisseq is meta-prefix-char, | |
952 turn it into a meta-ized keystroke. We know | |
953 that the event we're about to append is an | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
954 ascii keystroke since we're processing a |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
955 keymap table. */ |
250 | 956 if (is_metized) |
957 { | |
958 tem = Fcopy_sequence (thisseq); | |
959 Faset (tem, last, make_number (i | 0200)); | |
960 | |
961 /* This new sequence is the same length as | |
962 thisseq, so stick it in the list right | |
963 after this one. */ | |
964 XCONS (tail)->cdr = | |
965 Fcons (Fcons (tem, cmd), XCONS (tail)->cdr); | |
966 } | |
967 else | |
968 { | |
969 tem = append_key (thisseq, make_number (i)); | |
970 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil)); | |
971 } | |
972 } | |
973 } | |
974 } | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
975 } |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
976 else if (CONSP (elt)) |
250 | 977 { |
978 register Lisp_Object cmd = get_keyelt (XCONS (elt)->cdr); | |
979 register Lisp_Object tem; | |
980 | |
981 /* Ignore definitions that aren't keymaps themselves. */ | |
982 tem = Fkeymapp (cmd); | |
485 | 983 if (!NILP (tem)) |
250 | 984 { |
985 /* Ignore keymaps that have been seen already. */ | |
986 cmd = get_keymap (cmd); | |
987 tem = Frassq (cmd, maps); | |
485 | 988 if (NILP (tem)) |
250 | 989 { |
990 /* let elt be the event defined by this map entry. */ | |
991 elt = XCONS (elt)->car; | |
992 | |
993 /* If the last key in thisseq is meta-prefix-char, and | |
994 this entry is a binding for an ascii keystroke, | |
995 turn it into a meta-ized keystroke. */ | |
996 if (is_metized && XTYPE (elt) == Lisp_Int) | |
997 { | |
998 tem = Fcopy_sequence (thisseq); | |
999 Faset (tem, last, make_number (XINT (elt) | 0200)); | |
1000 | |
1001 /* This new sequence is the same length as | |
1002 thisseq, so stick it in the list right | |
1003 after this one. */ | |
1004 XCONS (tail)->cdr = | |
1005 Fcons (Fcons (tem, cmd), XCONS (tail)->cdr); | |
1006 } | |
1007 else | |
1008 nconc2 (tail, | |
1009 Fcons (Fcons (append_key (thisseq, elt), cmd), | |
1010 Qnil)); | |
1011 } | |
1012 } | |
1013 } | |
1014 } | |
1015 } | |
1016 | |
1017 return maps; | |
1018 } | |
1019 | |
1020 Lisp_Object Qsingle_key_description, Qkey_description; | |
1021 | |
1022 DEFUN ("key-description", Fkey_description, Skey_description, 1, 1, 0, | |
1023 "Return a pretty description of key-sequence KEYS.\n\ | |
1024 Control characters turn into \"C-foo\" sequences, meta into \"M-foo\"\n\ | |
1025 spaces are put between sequence elements, etc.") | |
1026 (keys) | |
1027 Lisp_Object keys; | |
1028 { | |
1029 return Fmapconcat (Qsingle_key_description, keys, build_string (" ")); | |
1030 } | |
1031 | |
1032 char * | |
1033 push_key_description (c, p) | |
1034 register unsigned int c; | |
1035 register char *p; | |
1036 { | |
1037 if (c >= 0200) | |
1038 { | |
1039 *p++ = 'M'; | |
1040 *p++ = '-'; | |
1041 c -= 0200; | |
1042 } | |
1043 if (c < 040) | |
1044 { | |
1045 if (c == 033) | |
1046 { | |
1047 *p++ = 'E'; | |
1048 *p++ = 'S'; | |
1049 *p++ = 'C'; | |
1050 } | |
1051 else if (c == Ctl('I')) | |
1052 { | |
1053 *p++ = 'T'; | |
1054 *p++ = 'A'; | |
1055 *p++ = 'B'; | |
1056 } | |
1057 else if (c == Ctl('J')) | |
1058 { | |
1059 *p++ = 'L'; | |
1060 *p++ = 'F'; | |
1061 *p++ = 'D'; | |
1062 } | |
1063 else if (c == Ctl('M')) | |
1064 { | |
1065 *p++ = 'R'; | |
1066 *p++ = 'E'; | |
1067 *p++ = 'T'; | |
1068 } | |
1069 else | |
1070 { | |
1071 *p++ = 'C'; | |
1072 *p++ = '-'; | |
1073 if (c > 0 && c <= Ctl ('Z')) | |
1074 *p++ = c + 0140; | |
1075 else | |
1076 *p++ = c + 0100; | |
1077 } | |
1078 } | |
1079 else if (c == 0177) | |
1080 { | |
1081 *p++ = 'D'; | |
1082 *p++ = 'E'; | |
1083 *p++ = 'L'; | |
1084 } | |
1085 else if (c == ' ') | |
1086 { | |
1087 *p++ = 'S'; | |
1088 *p++ = 'P'; | |
1089 *p++ = 'C'; | |
1090 } | |
1091 else | |
1092 *p++ = c; | |
1093 | |
1094 return p; | |
1095 } | |
1096 | |
1097 DEFUN ("single-key-description", Fsingle_key_description, Ssingle_key_description, 1, 1, 0, | |
1098 "Return a pretty description of command character KEY.\n\ | |
1099 Control characters turn into C-whatever, etc.") | |
1100 (key) | |
1101 Lisp_Object key; | |
1102 { | |
1103 register unsigned char c; | |
1104 char tem[6]; | |
1105 | |
517 | 1106 if (EVENT_HAS_PARAMETERS (key)) |
1107 key = EVENT_HEAD (key); | |
1108 | |
250 | 1109 switch (XTYPE (key)) |
1110 { | |
1111 case Lisp_Int: /* Normal character */ | |
1112 c = XINT (key) & 0377; | |
1113 *push_key_description (c, tem) = 0; | |
1114 return build_string (tem); | |
1115 | |
1116 case Lisp_Symbol: /* Function key or event-symbol */ | |
1117 return Fsymbol_name (key); | |
1118 | |
1119 default: | |
1120 error ("KEY must be an integer, cons, or symbol."); | |
1121 } | |
1122 } | |
1123 | |
1124 char * | |
1125 push_text_char_description (c, p) | |
1126 register unsigned int c; | |
1127 register char *p; | |
1128 { | |
1129 if (c >= 0200) | |
1130 { | |
1131 *p++ = 'M'; | |
1132 *p++ = '-'; | |
1133 c -= 0200; | |
1134 } | |
1135 if (c < 040) | |
1136 { | |
1137 *p++ = '^'; | |
1138 *p++ = c + 64; /* 'A' - 1 */ | |
1139 } | |
1140 else if (c == 0177) | |
1141 { | |
1142 *p++ = '^'; | |
1143 *p++ = '?'; | |
1144 } | |
1145 else | |
1146 *p++ = c; | |
1147 return p; | |
1148 } | |
1149 | |
1150 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0, | |
1151 "Return a pretty description of file-character CHAR.\n\ | |
1152 Control characters turn into \"^char\", etc.") | |
1153 (chr) | |
1154 Lisp_Object chr; | |
1155 { | |
1156 char tem[6]; | |
1157 | |
1158 CHECK_NUMBER (chr, 0); | |
1159 | |
1160 *push_text_char_description (XINT (chr) & 0377, tem) = 0; | |
1161 | |
1162 return build_string (tem); | |
1163 } | |
1164 | |
465 | 1165 /* where-is - finding a command in a set of keymaps. */ |
1166 | |
250 | 1167 DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 5, 0, |
1168 "Return list of keys that invoke DEFINITION in KEYMAP or KEYMAP1.\n\ | |
1169 If KEYMAP is nil, search only KEYMAP1.\n\ | |
1170 If KEYMAP1 is nil, use the current global map.\n\ | |
1171 \n\ | |
1172 If optional 4th arg FIRSTONLY is non-nil,\n\ | |
1173 return a string representing the first key sequence found,\n\ | |
1174 rather than a list of all possible key sequences.\n\ | |
1175 \n\ | |
1176 If optional 5th arg NOINDIRECT is non-nil, don't follow indirections\n\ | |
1177 to other keymaps or slots. This makes it possible to search for an\n\ | |
1178 indirect definition itself.") | |
1179 (definition, local_keymap, global_keymap, firstonly, noindirect) | |
1180 Lisp_Object definition, local_keymap, global_keymap; | |
1181 Lisp_Object firstonly, noindirect; | |
1182 { | |
1183 register Lisp_Object maps; | |
1184 Lisp_Object found; | |
1185 | |
485 | 1186 if (NILP (global_keymap)) |
250 | 1187 global_keymap = current_global_map; |
1188 | |
485 | 1189 if (!NILP (local_keymap)) |
250 | 1190 maps = nconc2 (Faccessible_keymaps (get_keymap (local_keymap)), |
1191 Faccessible_keymaps (get_keymap (global_keymap))); | |
1192 else | |
1193 maps = Faccessible_keymaps (get_keymap (global_keymap)); | |
1194 | |
1195 found = Qnil; | |
1196 | |
485 | 1197 for (; !NILP (maps); maps = Fcdr (maps)) |
250 | 1198 { |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1199 /* Key sequence to reach map */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1200 register Lisp_Object this = Fcar (Fcar (maps)); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1201 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1202 /* The map that it reaches */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1203 register Lisp_Object map = Fcdr (Fcar (maps)); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1204 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1205 /* If Fcar (map) is a VECTOR, the current element within that vector. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1206 int i = 0; |
250 | 1207 |
1208 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into | |
1209 [M-CHAR] sequences, check if last character of the sequence | |
1210 is the meta-prefix char. */ | |
1211 Lisp_Object last = make_number (XINT (Flength (this)) - 1); | |
1212 int last_is_meta = (XINT (last) >= 0 | |
1213 && EQ (Faref (this, last), meta_prefix_char)); | |
1214 | |
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1215 QUIT; |
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1216 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1217 while (CONSP (map)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1218 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1219 /* Because the code we want to run on each binding is rather |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1220 large, we don't want to have two separate loop bodies for |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1221 sparse keymap bindings and tables; we want to iterate one |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1222 loop body over both keymap and vector bindings. |
250 | 1223 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1224 For this reason, if Fcar (map) is a vector, we don't |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1225 advance map to the next element until i indicates that we |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1226 have finished off the vector. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1227 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1228 Lisp_Object elt = XCONS (map)->car; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1229 Lisp_Object key, binding, sequence; |
250 | 1230 |
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1231 QUIT; |
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1232 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1233 /* Set key and binding to the current key and binding, and |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1234 advance map and i to the next binding. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1235 if (XTYPE (elt) == Lisp_Vector) |
250 | 1236 { |
1237 /* In a vector, look at each element. */ | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1238 binding = XVECTOR (elt)->contents[i]; |
250 | 1239 XFASTINT (key) = i; |
1240 i++; | |
1241 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1242 /* If we've just finished scanning a vector, advance map |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1243 to the next element, and reset i in anticipation of the |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1244 next vector we may find. */ |
250 | 1245 if (i >= DENSE_TABLE_SIZE) |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1246 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1247 map = XCONS (map)->cdr; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1248 i = 0; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1249 } |
250 | 1250 } |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1251 else if (CONSP (elt)) |
250 | 1252 { |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1253 key = Fcar (Fcar (map)); |
250 | 1254 binding = Fcdr (Fcar (map)); |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1255 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1256 map = XCONS (map)->cdr; |
250 | 1257 } |
1258 else | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1259 /* We want to ignore keymap elements that are neither |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1260 vectors nor conses. */ |
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1261 { |
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1262 map = XCONS (map)->cdr; |
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1263 continue; |
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1264 } |
250 | 1265 |
1266 /* Search through indirections unless that's not wanted. */ | |
485 | 1267 if (NILP (noindirect)) |
250 | 1268 binding = get_keyelt (binding); |
1269 | |
1270 /* End this iteration if this element does not match | |
1271 the target. */ | |
1272 | |
1273 if (XTYPE (definition) == Lisp_Cons) | |
1274 { | |
1275 Lisp_Object tem; | |
1276 tem = Fequal (binding, definition); | |
485 | 1277 if (NILP (tem)) |
250 | 1278 continue; |
1279 } | |
1280 else | |
1281 if (!EQ (binding, definition)) | |
1282 continue; | |
1283 | |
1284 /* We have found a match. | |
1285 Construct the key sequence where we found it. */ | |
1286 if (XTYPE (key) == Lisp_Int && last_is_meta) | |
1287 { | |
1288 sequence = Fcopy_sequence (this); | |
1289 Faset (sequence, last, make_number (XINT (key) | 0200)); | |
1290 } | |
1291 else | |
1292 sequence = append_key (this, key); | |
1293 | |
1294 /* Verify that this key binding is not shadowed by another | |
1295 binding for the same key, before we say it exists. | |
1296 | |
1297 Mechanism: look for local definition of this key and if | |
1298 it is defined and does not match what we found then | |
1299 ignore this key. | |
1300 | |
1301 Either nil or number as value from Flookup_key | |
1302 means undefined. */ | |
485 | 1303 if (!NILP (local_keymap)) |
250 | 1304 { |
1305 binding = Flookup_key (local_keymap, sequence); | |
485 | 1306 if (!NILP (binding) && XTYPE (binding) != Lisp_Int) |
250 | 1307 { |
1308 if (XTYPE (definition) == Lisp_Cons) | |
1309 { | |
1310 Lisp_Object tem; | |
1311 tem = Fequal (binding, definition); | |
485 | 1312 if (NILP (tem)) |
250 | 1313 continue; |
1314 } | |
1315 else | |
1316 if (!EQ (binding, definition)) | |
1317 continue; | |
1318 } | |
1319 } | |
1320 | |
1321 /* It is a true unshadowed match. Record it. */ | |
1322 | |
485 | 1323 if (!NILP (firstonly)) |
250 | 1324 return sequence; |
1325 found = Fcons (sequence, found); | |
1326 } | |
1327 } | |
1328 return Fnreverse (found); | |
1329 } | |
1330 | |
1331 /* Return a string listing the keys and buttons that run DEFINITION. */ | |
1332 | |
1333 static Lisp_Object | |
1334 where_is_string (definition) | |
1335 Lisp_Object definition; | |
1336 { | |
1337 register Lisp_Object keys, keys1; | |
1338 | |
1339 keys = Fwhere_is_internal (definition, | |
1340 current_buffer->keymap, Qnil, Qnil, Qnil); | |
1341 keys1 = Fmapconcat (Qkey_description, keys, build_string (", ")); | |
1342 | |
1343 return keys1; | |
1344 } | |
1345 | |
1346 DEFUN ("where-is", Fwhere_is, Swhere_is, 1, 1, "CWhere is command: ", | |
1347 "Print message listing key sequences that invoke specified command.\n\ | |
1348 Argument is a command definition, usually a symbol with a function definition.") | |
1349 (definition) | |
1350 Lisp_Object definition; | |
1351 { | |
1352 register Lisp_Object string; | |
1353 | |
1354 CHECK_SYMBOL (definition, 0); | |
1355 string = where_is_string (definition); | |
1356 | |
1357 if (XSTRING (string)->size) | |
1358 message ("%s is on %s", XSYMBOL (definition)->name->data, | |
1359 XSTRING (string)->data); | |
1360 else | |
1361 message ("%s is not on any key", XSYMBOL (definition)->name->data); | |
1362 return Qnil; | |
1363 } | |
1364 | |
465 | 1365 /* describe-bindings - summarizing all the bindings in a set of keymaps. */ |
1366 | |
250 | 1367 DEFUN ("describe-bindings", Fdescribe_bindings, Sdescribe_bindings, 0, 0, "", |
1368 "Show a list of all defined keys, and their definitions.\n\ | |
1369 The list is put in a buffer, which is displayed.") | |
1370 () | |
1371 { | |
1372 register Lisp_Object thisbuf; | |
1373 XSET (thisbuf, Lisp_Buffer, current_buffer); | |
1374 internal_with_output_to_temp_buffer ("*Help*", | |
1375 describe_buffer_bindings, | |
1376 thisbuf); | |
1377 return Qnil; | |
1378 } | |
1379 | |
1380 static Lisp_Object | |
1381 describe_buffer_bindings (descbuf) | |
1382 Lisp_Object descbuf; | |
1383 { | |
1384 register Lisp_Object start1, start2; | |
1385 | |
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1386 char *key_heading |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1387 = "\ |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1388 key binding\n\ |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1389 --- -------\n"; |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1390 char *alternate_heading |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1391 = "\ |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1392 Alternate Characters (use anywhere the nominal character is listed):\n\ |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1393 nominal alternate\n\ |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1394 ------- ---------\n"; |
250 | 1395 |
1396 Fset_buffer (Vstandard_output); | |
1397 | |
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1398 /* Report on alternates for keys. */ |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1399 if (XTYPE (Vkeyboard_translate_table) == Lisp_String) |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1400 { |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1401 int c; |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1402 unsigned char *translate = XSTRING (Vkeyboard_translate_table)->data; |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1403 int translate_len = XSTRING (Vkeyboard_translate_table)->size; |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1404 |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1405 for (c = 0; c < translate_len; c++) |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1406 if (translate[c] != c) |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1407 { |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1408 char buf[20]; |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1409 char *bufend; |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1410 |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1411 if (alternate_heading) |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1412 { |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1413 insert_string (alternate_heading); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1414 alternate_heading = 0; |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1415 } |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1416 |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1417 bufend = push_key_description (translate[c], buf); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1418 insert (buf, bufend - buf); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1419 Findent_to (make_number (16), make_number (1)); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1420 bufend = push_key_description (c, buf); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1421 insert (buf, bufend - buf); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1422 |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1423 insert ("\n", 1); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1424 } |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1425 |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1426 insert ("\n", 1); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1427 } |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1428 |
465 | 1429 { |
1430 int i, nmaps; | |
1431 Lisp_Object *modes, *maps; | |
1432 | |
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1433 /* Temporarily switch to descbuf, so that we can get that buffer's |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1434 minor modes correctly. */ |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1435 Fset_buffer (descbuf); |
465 | 1436 nmaps = current_minor_maps (&modes, &maps); |
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1437 Fset_buffer (Vstandard_output); |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1438 |
465 | 1439 for (i = 0; i < nmaps; i++) |
1440 { | |
1441 if (XTYPE (modes[i]) == Lisp_Symbol) | |
1442 { | |
1443 insert_char ('`'); | |
1444 insert_string (XSYMBOL (modes[i])->name->data); | |
1445 insert_char ('\''); | |
1446 } | |
1447 else | |
1448 insert_string ("Strangely Named"); | |
1449 insert_string (" Minor Mode Bindings:\n"); | |
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1450 insert_string (key_heading); |
465 | 1451 describe_map_tree (maps[i], 0, Qnil); |
1452 insert_char ('\n'); | |
1453 } | |
1454 } | |
1455 | |
250 | 1456 start1 = XBUFFER (descbuf)->keymap; |
485 | 1457 if (!NILP (start1)) |
250 | 1458 { |
1459 insert_string ("Local Bindings:\n"); | |
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1460 insert_string (key_heading); |
465 | 1461 describe_map_tree (start1, 0, Qnil); |
250 | 1462 insert_string ("\n"); |
1463 } | |
1464 | |
1465 insert_string ("Global Bindings:\n"); | |
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1466 if (NILP (start1)) |
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1467 insert_string (key_heading); |
250 | 1468 |
465 | 1469 describe_map_tree (current_global_map, 0, XBUFFER (descbuf)->keymap); |
250 | 1470 |
1471 Fset_buffer (descbuf); | |
1472 return Qnil; | |
1473 } | |
1474 | |
1475 /* Insert a desription of the key bindings in STARTMAP, | |
1476 followed by those of all maps reachable through STARTMAP. | |
1477 If PARTIAL is nonzero, omit certain "uninteresting" commands | |
1478 (such as `undefined'). | |
1479 If SHADOW is non-nil, it is another map; | |
1480 don't mention keys which would be shadowed by it. */ | |
1481 | |
1482 void | |
1483 describe_map_tree (startmap, partial, shadow) | |
1484 Lisp_Object startmap, shadow; | |
1485 int partial; | |
1486 { | |
1487 register Lisp_Object elt, sh; | |
1488 Lisp_Object maps; | |
1489 struct gcpro gcpro1; | |
1490 | |
1491 maps = Faccessible_keymaps (startmap); | |
1492 GCPRO1 (maps); | |
1493 | |
485 | 1494 for (; !NILP (maps); maps = Fcdr (maps)) |
250 | 1495 { |
1496 elt = Fcar (maps); | |
1497 sh = Fcar (elt); | |
1498 | |
1499 /* If there is no shadow keymap given, don't shadow. */ | |
485 | 1500 if (NILP (shadow)) |
250 | 1501 sh = Qnil; |
1502 | |
1503 /* If the sequence by which we reach this keymap is zero-length, | |
1504 then the shadow map for this keymap is just SHADOW. */ | |
1505 else if ((XTYPE (sh) == Lisp_String | |
1506 && XSTRING (sh)->size == 0) | |
1507 || (XTYPE (sh) == Lisp_Vector | |
1508 && XVECTOR (sh)->size == 0)) | |
1509 sh = shadow; | |
1510 | |
1511 /* If the sequence by which we reach this keymap actually has | |
1512 some elements, then the sequence's definition in SHADOW is | |
1513 what we should use. */ | |
1514 else | |
1515 { | |
1516 sh = Flookup_key (shadow, Fcar (elt)); | |
1517 if (XTYPE (sh) == Lisp_Int) | |
1518 sh = Qnil; | |
1519 } | |
1520 | |
1521 /* If sh is null (meaning that the current map is not shadowed), | |
1522 or a keymap (meaning that bindings from the current map might | |
1523 show through), describe the map. Otherwise, sh is a command | |
1524 that completely shadows the current map, and we shouldn't | |
1525 bother. */ | |
485 | 1526 if (NILP (sh) || !NILP (Fkeymapp (sh))) |
250 | 1527 describe_map (Fcdr (elt), Fcar (elt), partial, sh); |
1528 } | |
1529 | |
1530 UNGCPRO; | |
1531 } | |
1532 | |
1533 static void | |
1534 describe_command (definition) | |
1535 Lisp_Object definition; | |
1536 { | |
1537 register Lisp_Object tem1; | |
1538 | |
1539 Findent_to (make_number (16), make_number (1)); | |
1540 | |
1541 if (XTYPE (definition) == Lisp_Symbol) | |
1542 { | |
1543 XSET (tem1, Lisp_String, XSYMBOL (definition)->name); | |
1544 insert1 (tem1); | |
1545 insert_string ("\n"); | |
1546 } | |
1547 else | |
1548 { | |
1549 tem1 = Fkeymapp (definition); | |
485 | 1550 if (!NILP (tem1)) |
250 | 1551 insert_string ("Prefix Command\n"); |
1552 else | |
1553 insert_string ("??\n"); | |
1554 } | |
1555 } | |
1556 | |
1557 /* Describe the contents of map MAP, assuming that this map itself is | |
1558 reached by the sequence of prefix keys KEYS (a string or vector). | |
1559 PARTIAL, SHADOW is as in `describe_map_tree' above. */ | |
1560 | |
1561 static void | |
1562 describe_map (map, keys, partial, shadow) | |
1563 Lisp_Object map, keys; | |
1564 int partial; | |
1565 Lisp_Object shadow; | |
1566 { | |
1567 register Lisp_Object keysdesc; | |
1568 | |
485 | 1569 if (!NILP (keys) && Flength (keys) > 0) |
250 | 1570 keysdesc = concat2 (Fkey_description (keys), |
1571 build_string (" ")); | |
1572 else | |
1573 keysdesc = Qnil; | |
1574 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1575 describe_map_2 (map, keysdesc, describe_command, partial, shadow); |
250 | 1576 } |
1577 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1578 /* Insert a description of KEYMAP into the current buffer. */ |
250 | 1579 |
1580 static void | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1581 describe_map_2 (keymap, elt_prefix, elt_describer, partial, shadow) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1582 register Lisp_Object keymap; |
250 | 1583 Lisp_Object elt_prefix; |
1584 int (*elt_describer) (); | |
1585 int partial; | |
1586 Lisp_Object shadow; | |
1587 { | |
1588 Lisp_Object this; | |
1589 Lisp_Object tem1, tem2 = Qnil; | |
1590 Lisp_Object suppress; | |
1591 Lisp_Object kludge; | |
1592 int first = 1; | |
1593 struct gcpro gcpro1, gcpro2, gcpro3; | |
1594 | |
1595 if (partial) | |
1596 suppress = intern ("suppress-keymap"); | |
1597 | |
1598 /* This vector gets used to present single keys to Flookup_key. Since | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1599 that is done once per keymap element, we don't want to cons up a |
250 | 1600 fresh vector every time. */ |
1601 kludge = Fmake_vector (make_number (1), Qnil); | |
1602 | |
1603 GCPRO3 (elt_prefix, tem2, kludge); | |
1604 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1605 for (; CONSP (keymap); keymap = Fcdr (keymap)) |
250 | 1606 { |
1607 QUIT; | |
1608 | |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1609 if (XTYPE (XCONS (keymap)->car) == Lisp_Vector) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1610 describe_vector (XCONS (keymap)->car, |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1611 elt_prefix, elt_describer, partial, shadow); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1612 else |
250 | 1613 { |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1614 tem1 = Fcar_safe (Fcar (keymap)); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1615 tem2 = get_keyelt (Fcdr_safe (Fcar (keymap))); |
250 | 1616 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1617 /* Don't show undefined commands or suppressed commands. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1618 if (NILP (tem2)) continue; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1619 if (XTYPE (tem2) == Lisp_Symbol && partial) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1620 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1621 this = Fget (tem2, suppress); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1622 if (!NILP (this)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1623 continue; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1624 } |
250 | 1625 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1626 /* Don't show a command that isn't really visible |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1627 because a local definition of the same key shadows it. */ |
250 | 1628 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1629 if (!NILP (shadow)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1630 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1631 Lisp_Object tem; |
250 | 1632 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1633 XVECTOR (kludge)->contents[0] = tem1; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1634 tem = Flookup_key (shadow, kludge); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1635 if (!NILP (tem)) continue; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1636 } |
250 | 1637 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1638 if (first) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1639 { |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1640 insert ("\n", 1); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1641 first = 0; |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1642 } |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1643 |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1644 if (!NILP (elt_prefix)) |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1645 insert1 (elt_prefix); |
250 | 1646 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1647 /* THIS gets the string to describe the character TEM1. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1648 this = Fsingle_key_description (tem1); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1649 insert1 (this); |
250 | 1650 |
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1651 /* Print a description of the definition of this character. |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1652 elt_describer will take care of spacing out far enough |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1653 for alignment purposes. */ |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1654 (*elt_describer) (tem2); |
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1655 } |
250 | 1656 } |
1657 | |
1658 UNGCPRO; | |
1659 } | |
1660 | |
1661 static int | |
1662 describe_vector_princ (elt) | |
1663 Lisp_Object elt; | |
1664 { | |
1665 Fprinc (elt, Qnil); | |
1666 } | |
1667 | |
1668 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 1, 0, | |
1669 "Print on `standard-output' a description of contents of VECTOR.\n\ | |
1670 This is text showing the elements of vector matched against indices.") | |
1671 (vector) | |
1672 Lisp_Object vector; | |
1673 { | |
1674 CHECK_VECTOR (vector, 0); | |
1675 describe_vector (vector, Qnil, describe_vector_princ, 0, Qnil, Qnil); | |
1676 } | |
1677 | |
1678 describe_vector (vector, elt_prefix, elt_describer, partial, shadow) | |
1679 register Lisp_Object vector; | |
1680 Lisp_Object elt_prefix; | |
1681 int (*elt_describer) (); | |
1682 int partial; | |
1683 Lisp_Object shadow; | |
1684 { | |
1685 Lisp_Object this; | |
1686 Lisp_Object dummy; | |
1687 Lisp_Object tem1, tem2; | |
1688 register int i; | |
1689 Lisp_Object suppress; | |
1690 Lisp_Object kludge; | |
1691 int first = 1; | |
1692 struct gcpro gcpro1, gcpro2, gcpro3; | |
1693 | |
1694 tem1 = Qnil; | |
1695 | |
1696 /* This vector gets used to present single keys to Flookup_key. Since | |
1697 that is done once per vector element, we don't want to cons up a | |
1698 fresh vector every time. */ | |
1699 kludge = Fmake_vector (make_number (1), Qnil); | |
1700 GCPRO3 (elt_prefix, tem1, kludge); | |
1701 | |
1702 if (partial) | |
1703 suppress = intern ("suppress-keymap"); | |
1704 | |
1705 for (i = 0; i < DENSE_TABLE_SIZE; i++) | |
1706 { | |
1707 QUIT; | |
1708 tem1 = get_keyelt (XVECTOR (vector)->contents[i]); | |
1709 | |
485 | 1710 if (NILP (tem1)) continue; |
250 | 1711 |
1712 /* Don't mention suppressed commands. */ | |
1713 if (XTYPE (tem1) == Lisp_Symbol && partial) | |
1714 { | |
1715 this = Fget (tem1, suppress); | |
485 | 1716 if (!NILP (this)) |
250 | 1717 continue; |
1718 } | |
1719 | |
1720 /* If this command in this map is shadowed by some other map, | |
1721 ignore it. */ | |
485 | 1722 if (!NILP (shadow)) |
250 | 1723 { |
1724 Lisp_Object tem; | |
1725 | |
1726 XVECTOR (kludge)->contents[0] = make_number (i); | |
1727 tem = Flookup_key (shadow, kludge); | |
1728 | |
485 | 1729 if (!NILP (tem)) continue; |
250 | 1730 } |
1731 | |
1732 if (first) | |
1733 { | |
1734 insert ("\n", 1); | |
1735 first = 0; | |
1736 } | |
1737 | |
1738 /* Output the prefix that applies to every entry in this map. */ | |
485 | 1739 if (!NILP (elt_prefix)) |
250 | 1740 insert1 (elt_prefix); |
1741 | |
1742 /* Get the string to describe the character I, and print it. */ | |
1743 XFASTINT (dummy) = i; | |
1744 | |
1745 /* THIS gets the string to describe the character DUMMY. */ | |
1746 this = Fsingle_key_description (dummy); | |
1747 insert1 (this); | |
1748 | |
1749 /* Find all consecutive characters that have the same definition. */ | |
1750 while (i + 1 < DENSE_TABLE_SIZE | |
1751 && (tem2 = get_keyelt (XVECTOR (vector)->contents[i+1]), | |
1752 EQ (tem2, tem1))) | |
1753 i++; | |
1754 | |
1755 /* If we have a range of more than one character, | |
1756 print where the range reaches to. */ | |
1757 | |
1758 if (i != XINT (dummy)) | |
1759 { | |
1760 insert (" .. ", 4); | |
485 | 1761 if (!NILP (elt_prefix)) |
250 | 1762 insert1 (elt_prefix); |
1763 | |
1764 XFASTINT (dummy) = i; | |
1765 insert1 (Fsingle_key_description (dummy)); | |
1766 } | |
1767 | |
1768 /* Print a description of the definition of this character. | |
1769 elt_describer will take care of spacing out far enough | |
1770 for alignment purposes. */ | |
1771 (*elt_describer) (tem1); | |
1772 } | |
1773 | |
1774 UNGCPRO; | |
1775 } | |
1776 | |
465 | 1777 /* Apropos - finding all symbols whose names match a regexp. */ |
250 | 1778 Lisp_Object apropos_predicate; |
1779 Lisp_Object apropos_accumulate; | |
1780 | |
1781 static void | |
1782 apropos_accum (symbol, string) | |
1783 Lisp_Object symbol, string; | |
1784 { | |
1785 register Lisp_Object tem; | |
1786 | |
1787 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil); | |
485 | 1788 if (!NILP (tem) && !NILP (apropos_predicate)) |
250 | 1789 tem = call1 (apropos_predicate, symbol); |
485 | 1790 if (!NILP (tem)) |
250 | 1791 apropos_accumulate = Fcons (symbol, apropos_accumulate); |
1792 } | |
1793 | |
1794 DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0, | |
1795 "Show all symbols whose names contain match for REGEXP.\n\ | |
1796 If optional 2nd arg PRED is non-nil, (funcall PRED SYM) is done\n\ | |
1797 for each symbol and a symbol is mentioned only if that returns non-nil.\n\ | |
1798 Return list of symbols found.") | |
1799 (string, pred) | |
1800 Lisp_Object string, pred; | |
1801 { | |
1802 struct gcpro gcpro1, gcpro2; | |
1803 CHECK_STRING (string, 0); | |
1804 apropos_predicate = pred; | |
1805 GCPRO2 (apropos_predicate, apropos_accumulate); | |
1806 apropos_accumulate = Qnil; | |
1807 map_obarray (Vobarray, apropos_accum, string); | |
1808 apropos_accumulate = Fsort (apropos_accumulate, Qstring_lessp); | |
1809 UNGCPRO; | |
1810 return apropos_accumulate; | |
1811 } | |
1812 | |
1813 syms_of_keymap () | |
1814 { | |
1815 Lisp_Object tem; | |
1816 | |
1817 Qkeymap = intern ("keymap"); | |
1818 staticpro (&Qkeymap); | |
1819 | |
1820 /* Initialize the keymaps standardly used. | |
1821 Each one is the value of a Lisp variable, and is also | |
1822 pointed to by a C variable */ | |
1823 | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1824 global_map = Fmake_keymap (Qnil); |
250 | 1825 Fset (intern ("global-map"), global_map); |
1826 | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1827 meta_map = Fmake_keymap (Qnil); |
250 | 1828 Fset (intern ("esc-map"), meta_map); |
1829 Ffset (intern ("ESC-prefix"), meta_map); | |
1830 | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1831 control_x_map = Fmake_keymap (Qnil); |
250 | 1832 Fset (intern ("ctl-x-map"), control_x_map); |
1833 Ffset (intern ("Control-X-prefix"), control_x_map); | |
1834 | |
1835 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map, | |
1836 "Default keymap to use when reading from the minibuffer."); | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1837 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil); |
250 | 1838 |
1839 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map, | |
1840 "Local keymap for the minibuffer when spaces are not allowed."); | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1841 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil); |
250 | 1842 |
1843 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map, | |
1844 "Local keymap for minibuffer input with completion."); | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1845 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil); |
250 | 1846 |
1847 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map, | |
1848 "Local keymap for minibuffer input with completion, for exact match."); | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1849 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil); |
250 | 1850 |
1851 current_global_map = global_map; | |
1852 | |
465 | 1853 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist, |
1854 "Alist of keymaps to use for minor modes.\n\ | |
1855 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read\n\ | |
1856 key sequences and look up bindings iff VARIABLE's value is non-nil.\n\ | |
1857 If two active keymaps bind the same key, the keymap appearing earlier\n\ | |
1858 in the list takes precedence."); | |
1859 Vminor_mode_map_alist = Qnil; | |
1860 | |
517 | 1861 DEFVAR_LISP ("function-key-map", &Vfunction_key_map, |
1862 "Keymap mapping ASCII function key sequences onto their preferred forms.\n\ | |
1863 This allows Emacs to recognize function keys sent from ASCII\n\ | |
1864 terminals at any point in a key sequence.\n\ | |
1865 \n\ | |
1866 The read-key-sequence function replaces subsequences bound by\n\ | |
1867 function-key-map with their bindings. When the current local and global\n\ | |
1868 keymaps have no binding for the current key sequence but\n\ | |
1869 function-key-map binds a suffix of the sequence to a vector,\n\ | |
1870 read-key-sequence replaces the matching suffix with its binding, and\n\ | |
1871 continues with the new sequence.\n\ | |
1872 \n\ | |
1873 For example, suppose function-key-map binds `ESC O P' to [pf1].\n\ | |
1874 Typing `ESC O P' to read-key-sequence would return [pf1]. Typing\n\ | |
1875 `C-x ESC O P' would return [?\C-x pf1]. If [pf1] were a prefix\n\ | |
1876 key, typing `ESC O P x' would return [pf1 x]."); | |
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1877 Vfunction_key_map = Fmake_sparse_keymap (Qnil); |
517 | 1878 |
250 | 1879 Qsingle_key_description = intern ("single-key-description"); |
1880 staticpro (&Qsingle_key_description); | |
1881 | |
1882 Qkey_description = intern ("key-description"); | |
1883 staticpro (&Qkey_description); | |
1884 | |
1885 Qkeymapp = intern ("keymapp"); | |
1886 staticpro (&Qkeymapp); | |
1887 | |
1888 defsubr (&Skeymapp); | |
1889 defsubr (&Smake_keymap); | |
1890 defsubr (&Smake_sparse_keymap); | |
1891 defsubr (&Scopy_keymap); | |
1892 defsubr (&Skey_binding); | |
1893 defsubr (&Slocal_key_binding); | |
1894 defsubr (&Sglobal_key_binding); | |
465 | 1895 defsubr (&Sminor_mode_key_binding); |
250 | 1896 defsubr (&Sglobal_set_key); |
1897 defsubr (&Slocal_set_key); | |
1898 defsubr (&Sdefine_key); | |
1899 defsubr (&Slookup_key); | |
1900 defsubr (&Sglobal_unset_key); | |
1901 defsubr (&Slocal_unset_key); | |
1902 defsubr (&Sdefine_prefix_command); | |
1903 defsubr (&Suse_global_map); | |
1904 defsubr (&Suse_local_map); | |
1905 defsubr (&Scurrent_local_map); | |
1906 defsubr (&Scurrent_global_map); | |
465 | 1907 defsubr (&Scurrent_minor_mode_maps); |
250 | 1908 defsubr (&Saccessible_keymaps); |
1909 defsubr (&Skey_description); | |
1910 defsubr (&Sdescribe_vector); | |
1911 defsubr (&Ssingle_key_description); | |
1912 defsubr (&Stext_char_description); | |
1913 defsubr (&Swhere_is_internal); | |
1914 defsubr (&Swhere_is); | |
1915 defsubr (&Sdescribe_bindings); | |
1916 defsubr (&Sapropos_internal); | |
1917 } | |
1918 | |
1919 keys_of_keymap () | |
1920 { | |
1921 Lisp_Object tem; | |
1922 | |
1923 initial_define_key (global_map, 033, "ESC-prefix"); | |
1924 initial_define_key (global_map, Ctl('X'), "Control-X-prefix"); | |
1925 } |