Mercurial > hg > xemacs-beta
annotate src/keymap.c @ 5713:8b5bdc8aebfd
Added tag r21-5-33 for changeset bee2e2568828
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Sat, 05 Jan 2013 02:11:23 +0900 |
parents | 4d15e903800b |
children | f9e4d44504a4 |
rev | line source |
---|---|
428 | 1 /* Manipulation of keymaps |
2 Copyright (C) 1985, 1991-1995 Free Software Foundation, Inc. | |
3 Copyright (C) 1995 Board of Trustees, University of Illinois. | |
4 Copyright (C) 1995 Sun Microsystems, Inc. | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
5 Copyright (C) 2001, 2002, 2010 Ben Wing. |
428 | 6 Totally redesigned by jwz in 1991. |
7 | |
8 This file is part of XEmacs. | |
9 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5191
diff
changeset
|
10 XEmacs is free software: you can redistribute it and/or modify it |
428 | 11 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5191
diff
changeset
|
12 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5191
diff
changeset
|
13 option) any later version. |
428 | 14 |
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
18 for more details. | |
19 | |
20 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5191
diff
changeset
|
21 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
428 | 22 |
23 /* Synched up with: Mule 2.0. Not synched with FSF. Substantially | |
24 different from FSF. */ | |
25 | |
26 | |
27 #include <config.h> | |
28 #include "lisp.h" | |
29 | |
30 #include "buffer.h" | |
31 #include "bytecode.h" | |
872 | 32 #include "console-impl.h" |
428 | 33 #include "elhash.h" |
34 #include "events.h" | |
872 | 35 #include "extents.h" |
428 | 36 #include "frame.h" |
37 #include "insdel.h" | |
38 #include "keymap.h" | |
39 #include "window.h" | |
40 | |
41 | |
42 /* A keymap contains six slots: | |
43 | |
44 parents Ordered list of keymaps to search after | |
45 this one if no match is found. | |
46 Keymaps can thus be arranged in a hierarchy. | |
47 | |
48 table A hash table, hashing keysyms to their bindings. | |
49 It will be one of the following: | |
50 | |
3025 | 51 -- a symbol, e.g. `home' |
428 | 52 -- a character, representing something printable |
53 (not ?\C-c meaning C-c, for instance) | |
54 -- an integer representing a modifier combination | |
55 | |
56 inverse_table A hash table, hashing bindings to the list of keysyms | |
57 in this keymap which are bound to them. This is to make | |
58 the Fwhere_is_internal() function be fast. It needs to be | |
59 fast because we want to be able to call it in realtime to | |
60 update the keyboard-equivalents on the pulldown menus. | |
61 Values of the table are either atoms (keysyms) | |
62 or a dotted list of keysyms. | |
63 | |
64 sub_maps_cache An alist; for each entry in this keymap whose binding is | |
65 a keymap (that is, Fkeymapp()) this alist associates that | |
66 keysym with that binding. This is used to optimize both | |
67 Fwhere_is_internal() and Faccessible_keymaps(). This slot | |
68 gets set to the symbol `t' every time a change is made to | |
69 this keymap, causing it to be recomputed when next needed. | |
70 | |
71 prompt See `set-keymap-prompt'. | |
72 | |
73 default_binding See `set-keymap-default-binding'. | |
74 | |
75 Sequences of keys are stored in the obvious way: if the sequence of keys | |
76 "abc" was bound to some command `foo', the hierarchy would look like | |
77 | |
78 keymap-1: associates "a" with keymap-2 | |
79 keymap-2: associates "b" with keymap-3 | |
80 keymap-3: associates "c" with foo | |
81 | |
82 However, bucky bits ("modifiers" to the X-minded) are represented in the | |
83 keymap hierarchy as well. (This lets us use EQable objects as hash keys.) | |
84 Each combination of modifiers (e.g. control-hyper) gets its own submap | |
85 off of the main map. The hash key for a modifier combination is | |
86 an integer, computed by MAKE_MODIFIER_HASH_KEY(). | |
87 | |
88 If the key `C-a' was bound to some command, the hierarchy would look like | |
89 | |
442 | 90 keymap-1: associates the integer XEMACS_MOD_CONTROL with keymap-2 |
428 | 91 keymap-2: associates "a" with the command |
92 | |
93 Similarly, if the key `C-H-a' was bound to some command, the hierarchy | |
94 would look like | |
95 | |
442 | 96 keymap-1: associates the integer (XEMACS_MOD_CONTROL | XEMACS_MOD_HYPER) |
428 | 97 with keymap-2 |
98 keymap-2: associates "a" with the command | |
99 | |
100 Note that a special exception is made for the meta modifier, in order | |
101 to deal with ESC/meta lossage. Any key combination containing the | |
102 meta modifier is first indexed off of the main map into the meta | |
442 | 103 submap (with hash key XEMACS_MOD_META) and then indexed off of the |
428 | 104 meta submap with the meta modifier removed from the key combination. |
105 For example, when associating a command with C-M-H-a, we'd have | |
106 | |
442 | 107 keymap-1: associates the integer XEMACS_MOD_META with keymap-2 |
108 keymap-2: associates the integer (XEMACS_MOD_CONTROL | XEMACS_MOD_HYPER) | |
428 | 109 with keymap-3 |
110 keymap-3: associates "a" with the command | |
111 | |
112 Note that keymap-2 might have normal bindings in it; these would be | |
113 for key combinations containing only the meta modifier, such as | |
114 M-y or meta-backspace. | |
115 | |
116 If the command that "a" was bound to in keymap-3 was itself a keymap, | |
117 then that would make the key "C-M-H-a" be a prefix character. | |
118 | |
119 Note that this new model of keymaps takes much of the magic away from | |
120 the Escape key: the value of the variable `esc-map' is no longer indexed | |
121 in the `global-map' under the ESC key. It's indexed under the integer | |
442 | 122 XEMACS_MOD_META. This is not user-visible, however; none of the "bucky" |
428 | 123 maps are. |
124 | |
125 There is a hack in Flookup_key() that makes (lookup-key global-map "\^[") | |
126 and (define-key some-random-map "\^[" my-esc-map) work as before, for | |
127 compatibility. | |
128 | |
129 Since keymaps are opaque, the only way to extract information from them | |
130 is with the functions lookup-key, key-binding, local-key-binding, and | |
131 global-key-binding, which work just as before, and the new function | |
440 | 132 map-keymap, which is roughly analogous to maphash. |
428 | 133 |
134 Note that map-keymap perpetuates the illusion that the "bucky" submaps | |
135 don't exist: if you map over a keymap with bucky submaps, it will also | |
136 map over those submaps. It does not, however, map over other random | |
137 submaps of the keymap, just the bucky ones. | |
138 | |
139 One implication of this is that when you map over `global-map', you will | |
140 also map over `esc-map'. It is merely for compatibility that the esc-map | |
141 is accessible at all; I think that's a bad thing, since it blurs the | |
142 distinction between ESC and "meta" even more. "M-x" is no more a two- | |
143 key sequence than "C-x" is. | |
144 | |
145 */ | |
146 | |
440 | 147 struct Lisp_Keymap |
428 | 148 { |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
149 NORMAL_LISP_OBJECT_HEADER header; |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
150 #define MARKED_SLOT(x) Lisp_Object x; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
151 #include "keymap-slots.h" |
440 | 152 }; |
428 | 153 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
154 #define MAKE_MODIFIER_HASH_KEY(modifier) make_fixnum (modifier) |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
155 #define MODIFIER_HASH_KEY_BITS(x) (FIXNUMP (x) ? XFIXNUM (x) : 0) |
428 | 156 |
157 | |
158 | |
159 /* Actually allocate storage for these variables */ | |
160 | |
440 | 161 Lisp_Object Vcurrent_global_map; /* Always a keymap */ |
428 | 162 |
771 | 163 static Lisp_Object Vglobal_tty_map, Vglobal_window_system_map; |
164 | |
428 | 165 static Lisp_Object Vmouse_grabbed_buffer; |
166 | |
167 /* Alist of minor mode variables and keymaps. */ | |
168 static Lisp_Object Qminor_mode_map_alist; | |
169 | |
170 static Lisp_Object Voverriding_local_map; | |
171 | |
172 static Lisp_Object Vkey_translation_map; | |
173 | |
174 static Lisp_Object Vvertical_divider_map; | |
175 | |
176 /* This is incremented whenever a change is made to a keymap. This is | |
177 so that things which care (such as the menubar code) can recompute | |
178 privately-cached data when the user has changed keybindings. | |
179 */ | |
458 | 180 Fixnum keymap_tick; |
428 | 181 |
182 /* Prefixing a key with this character is the same as sending a meta bit. */ | |
183 Lisp_Object Vmeta_prefix_char; | |
184 | |
185 Lisp_Object Qkeymapp; | |
186 Lisp_Object Vsingle_space_string; | |
187 Lisp_Object Qsuppress_keymap; | |
188 Lisp_Object Qmodeline_map; | |
189 Lisp_Object Qtoolbar_map; | |
190 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
191 Lisp_Object Qremap; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
192 Lisp_Object Qxemacs_command_remapping; /* Uninterned, so there's no conflict |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
193 with any key named remap. */ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
194 |
428 | 195 EXFUN (Fkeymap_fullness, 1); |
196 EXFUN (Fset_keymap_name, 2); | |
197 EXFUN (Fsingle_key_description, 1); | |
5681
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
198 |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
199 static Lisp_Object remap_command (Lisp_Object keymap, Lisp_Object old, |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
200 Lisp_Object new_); |
428 | 201 static void describe_command (Lisp_Object definition, Lisp_Object buffer); |
202 static void describe_map (Lisp_Object keymap, Lisp_Object elt_prefix, | |
203 void (*elt_describer) (Lisp_Object, Lisp_Object), | |
204 int partial, | |
205 Lisp_Object shadow, | |
206 int mice_only_p, | |
207 Lisp_Object buffer); | |
440 | 208 static Lisp_Object keymap_submaps (Lisp_Object keymap); |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
209 static int get_relevant_keymaps (Lisp_Object, Lisp_Object, int, |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
210 Lisp_Object maps[]); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
211 static Lisp_Object lookup_keys (Lisp_Object, int, Lisp_Object *, int); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
212 static void map_keymap (Lisp_Object keymap_table, int sort_first, |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
213 void (*function) (const Lisp_Key_Data *key, |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
214 Lisp_Object binding, |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
215 void *fn_arg), |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
216 void *fn_arg); |
428 | 217 |
218 Lisp_Object Qcontrol, Qctrl, Qmeta, Qsuper, Qhyper, Qalt, Qshift; | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
219 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
220 #define INCLUDE_BUTTON_ZERO |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
221 #define FROB(num) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
222 Lisp_Object Qbutton##num; \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
223 Lisp_Object Qbutton##num##up; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
224 #include "keymap-buttons.h" |
428 | 225 |
226 Lisp_Object Qmenu_selection; | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
227 |
428 | 228 /* Emacs compatibility */ |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
229 #define FROB(num) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
230 Lisp_Object Qmouse_##num; \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
231 Lisp_Object Qdown_mouse_##num; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
232 #include "keymap-buttons.h" |
428 | 233 |
234 /* Kludge kludge kludge */ | |
235 Lisp_Object QLFD, QTAB, QRET, QESC, QDEL, QSPC, QBS; | |
236 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
237 #define CHECK_REMAPPING_POSITION(object) do \ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
238 { \ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
239 if (!(NILP (object) || FIXNUMP (object) || MARKERP (object) \ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
240 || EVENTP (object))) \ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
241 { \ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
242 wtaerror ("Not a valid POSITION", object); \ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
243 } \ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
244 } while (0) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
245 |
428 | 246 |
247 /************************************************************************/ | |
248 /* The keymap Lisp object */ | |
249 /************************************************************************/ | |
250 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
251 /* Keymaps are equal if all of their attributes are equal. */ |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
252 static int |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
253 keymap_equal (Lisp_Object obj1, Lisp_Object obj2, int depth, |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
254 int UNUSED (foldcase)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
255 { |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
256 Lisp_Keymap *k1 = XKEYMAP (obj1); |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
257 Lisp_Keymap *k2 = XKEYMAP (obj2); |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
258 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
259 depth++; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
260 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
261 return |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
262 ( |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
263 #define MARKED_SLOT(x) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
264 internal_equal (k1->x, k2->x, depth) && |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
265 #define MARKED_SLOT_NOCOMPARE(x) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
266 #include "keymap-slots.h" |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
267 1 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
268 ); |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
269 } |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
270 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
271 static Hashcode |
5191
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5183
diff
changeset
|
272 keymap_hash (Lisp_Object obj, int depth, Boolint UNUSED (equalp)) |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
273 { |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
274 Lisp_Keymap *k = XKEYMAP (obj); |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
275 Hashcode hash = 0xCAFEBABE; /* why not? */ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
276 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
277 depth++; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
278 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
279 #define MARKED_SLOT(x) \ |
5191
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5183
diff
changeset
|
280 hash = HASH2 (hash, internal_hash (k->x, depth, 0)); |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
281 #define MARKED_SLOT_NOCOMPARE(x) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
282 #include "keymap-slots.h" |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
283 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
284 return hash; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
285 } |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
286 |
428 | 287 static Lisp_Object |
288 mark_keymap (Lisp_Object obj) | |
289 { | |
290 Lisp_Keymap *keymap = XKEYMAP (obj); | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
291 #define MARKED_SLOT(x) mark_object (keymap->x); |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
292 #include "keymap-slots.h" |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
293 return Qnil; |
428 | 294 } |
295 | |
296 static void | |
2286 | 297 print_keymap (Lisp_Object obj, Lisp_Object printcharfun, |
298 int UNUSED (escapeflag)) | |
428 | 299 { |
300 /* This function can GC */ | |
301 Lisp_Keymap *keymap = XKEYMAP (obj); | |
302 if (print_readably) | |
5142
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
303 printing_unreadable_lisp_object (obj, 0); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
304 write_ascstring (printcharfun, "#<keymap "); |
428 | 305 if (!NILP (keymap->name)) |
440 | 306 { |
800 | 307 write_fmt_string_lisp (printcharfun, "%S ", 1, keymap->name); |
440 | 308 } |
800 | 309 write_fmt_string (printcharfun, "size %ld 0x%x>", |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
310 (long) XFIXNUM (Fkeymap_fullness (obj)), |
5146
88bd4f3ef8e4
make lrecord UID's have a separate UID space for each object, resurrect debug SOE code in extents.c
Ben Wing <ben@xemacs.org>
parents:
5142
diff
changeset
|
311 LISP_OBJECT_UID (obj)); |
428 | 312 } |
313 | |
1204 | 314 static const struct memory_description keymap_description[] = { |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
315 #define MARKED_SLOT(x) { XD_LISP_OBJECT, offsetof (Lisp_Keymap, x) }, |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
316 #include "keymap-slots.h" |
428 | 317 { XD_END } |
318 }; | |
319 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
320 DEFINE_DUMPABLE_LISP_OBJECT ("keymap", keymap, |
5125 | 321 mark_keymap, print_keymap, 0, |
322 keymap_equal, keymap_hash, | |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5120
diff
changeset
|
323 keymap_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5120
diff
changeset
|
324 Lisp_Keymap); |
428 | 325 |
326 /************************************************************************/ | |
327 /* Traversing keymaps and their parents */ | |
328 /************************************************************************/ | |
329 | |
330 static Lisp_Object | |
331 traverse_keymaps (Lisp_Object start_keymap, Lisp_Object start_parents, | |
332 Lisp_Object (*mapper) (Lisp_Object keymap, void *mapper_arg), | |
333 void *mapper_arg) | |
334 { | |
335 /* This function can GC */ | |
336 Lisp_Object keymap; | |
337 Lisp_Object tail = start_parents; | |
338 Lisp_Object malloc_sucks[10]; | |
339 Lisp_Object malloc_bites = Qnil; | |
340 int stack_depth = 0; | |
341 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | |
342 GCPRO4 (*malloc_sucks, malloc_bites, start_keymap, tail); | |
343 gcpro1.nvars = 0; | |
344 | |
345 start_keymap = get_keymap (start_keymap, 1, 1); | |
346 keymap = start_keymap; | |
347 /* Hack special-case parents at top-level */ | |
440 | 348 tail = !NILP (tail) ? tail : XKEYMAP (keymap)->parents; |
428 | 349 |
350 for (;;) | |
351 { | |
352 Lisp_Object result; | |
353 | |
354 QUIT; | |
440 | 355 result = mapper (keymap, mapper_arg); |
428 | 356 if (!NILP (result)) |
357 { | |
358 while (CONSP (malloc_bites)) | |
359 { | |
853 | 360 Lisp_Object victim = malloc_bites; |
361 malloc_bites = XCDR (victim); | |
428 | 362 free_cons (victim); |
363 } | |
364 UNGCPRO; | |
365 return result; | |
366 } | |
367 if (NILP (tail)) | |
368 { | |
369 if (stack_depth == 0) | |
370 { | |
371 UNGCPRO; | |
372 return Qnil; /* Nothing found */ | |
373 } | |
374 stack_depth--; | |
375 if (CONSP (malloc_bites)) | |
376 { | |
853 | 377 Lisp_Object victim = malloc_bites; |
378 tail = XCAR (victim); | |
379 malloc_bites = XCDR (victim); | |
428 | 380 free_cons (victim); |
381 } | |
382 else | |
383 { | |
384 tail = malloc_sucks[stack_depth]; | |
385 gcpro1.nvars = stack_depth; | |
386 } | |
387 keymap = XCAR (tail); | |
388 tail = XCDR (tail); | |
389 } | |
390 else | |
391 { | |
392 Lisp_Object parents; | |
393 | |
394 keymap = XCAR (tail); | |
395 tail = XCDR (tail); | |
396 parents = XKEYMAP (keymap)->parents; | |
397 if (!CONSP (parents)) | |
398 ; | |
399 else if (NILP (tail)) | |
400 /* Tail-recurse */ | |
401 tail = parents; | |
402 else | |
403 { | |
404 if (CONSP (malloc_bites)) | |
405 malloc_bites = noseeum_cons (tail, malloc_bites); | |
406 else if (stack_depth < countof (malloc_sucks)) | |
407 { | |
408 malloc_sucks[stack_depth++] = tail; | |
409 gcpro1.nvars = stack_depth; | |
410 } | |
411 else | |
412 { | |
413 /* *&@##[*&^$ C. @#[$*&@# Unix. Losers all. */ | |
414 int i; | |
415 for (i = 0, malloc_bites = Qnil; | |
416 i < countof (malloc_sucks); | |
417 i++) | |
418 malloc_bites = noseeum_cons (malloc_sucks[i], | |
419 malloc_bites); | |
420 gcpro1.nvars = 0; | |
421 } | |
422 tail = parents; | |
423 } | |
424 } | |
425 keymap = get_keymap (keymap, 1, 1); | |
426 if (EQ (keymap, start_keymap)) | |
427 { | |
563 | 428 invalid_argument ("Cyclic keymap indirection", start_keymap); |
428 | 429 } |
430 } | |
431 } | |
432 | |
433 | |
434 /************************************************************************/ | |
435 /* Some low-level functions */ | |
436 /************************************************************************/ | |
437 | |
442 | 438 static int |
428 | 439 bucky_sym_to_bucky_bit (Lisp_Object sym) |
440 { | |
442 | 441 if (EQ (sym, Qcontrol)) return XEMACS_MOD_CONTROL; |
442 if (EQ (sym, Qmeta)) return XEMACS_MOD_META; | |
443 if (EQ (sym, Qsuper)) return XEMACS_MOD_SUPER; | |
444 if (EQ (sym, Qhyper)) return XEMACS_MOD_HYPER; | |
445 if (EQ (sym, Qalt)) return XEMACS_MOD_ALT; | |
446 if (EQ (sym, Qsymbol)) return XEMACS_MOD_ALT; /* #### - reverse compat */ | |
447 if (EQ (sym, Qshift)) return XEMACS_MOD_SHIFT; | |
428 | 448 |
449 return 0; | |
450 } | |
451 | |
452 static Lisp_Object | |
442 | 453 control_meta_superify (Lisp_Object frob, int modifiers) |
428 | 454 { |
455 if (modifiers == 0) | |
456 return frob; | |
457 frob = Fcons (frob, Qnil); | |
442 | 458 if (modifiers & XEMACS_MOD_SHIFT) frob = Fcons (Qshift, frob); |
459 if (modifiers & XEMACS_MOD_ALT) frob = Fcons (Qalt, frob); | |
460 if (modifiers & XEMACS_MOD_HYPER) frob = Fcons (Qhyper, frob); | |
461 if (modifiers & XEMACS_MOD_SUPER) frob = Fcons (Qsuper, frob); | |
462 if (modifiers & XEMACS_MOD_CONTROL) frob = Fcons (Qcontrol, frob); | |
463 if (modifiers & XEMACS_MOD_META) frob = Fcons (Qmeta, frob); | |
428 | 464 return frob; |
465 } | |
466 | |
467 static Lisp_Object | |
934 | 468 make_key_description (const Lisp_Key_Data *key, int prettify) |
469 { | |
1204 | 470 Lisp_Object keysym = KEY_DATA_KEYSYM (key); |
934 | 471 int modifiers = KEY_DATA_MODIFIERS (key); |
428 | 472 if (prettify && CHARP (keysym)) |
473 { | |
474 /* This is a little slow, but (control a) is prettier than (control 65). | |
475 It's now ok to do this for digit-chars too, since we've fixed the | |
476 bug where \9 read as the integer 9 instead of as the symbol with | |
477 "9" as its name. | |
478 */ | |
479 /* !!#### I'm not sure how correct this is. */ | |
867 | 480 Ibyte str [1 + MAX_ICHAR_LEN]; |
481 Bytecount count = set_itext_ichar (str, XCHAR (keysym)); | |
428 | 482 str[count] = 0; |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
483 keysym = intern_istring (str); |
428 | 484 } |
485 return control_meta_superify (keysym, modifiers); | |
486 } | |
487 | |
488 | |
489 /************************************************************************/ | |
490 /* Low-level keymap-store functions */ | |
491 /************************************************************************/ | |
492 | |
493 static Lisp_Object | |
494 raw_lookup_key (Lisp_Object keymap, | |
934 | 495 const Lisp_Key_Data *raw_keys, int raw_keys_count, |
428 | 496 int keys_so_far, int accept_default); |
497 | |
498 /* Relies on caller to gc-protect args */ | |
499 static Lisp_Object | |
500 keymap_lookup_directly (Lisp_Object keymap, | |
442 | 501 Lisp_Object keysym, int modifiers) |
428 | 502 { |
503 Lisp_Keymap *k; | |
504 | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
505 modifiers &= ~( |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
506 #define FROB(num) XEMACS_MOD_BUTTON##num | |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
507 #include "keymap-buttons.h" |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
508 0); |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
509 assert ((modifiers & ~(XEMACS_MOD_CONTROL | XEMACS_MOD_META | |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
510 XEMACS_MOD_SUPER | XEMACS_MOD_HYPER | |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
511 XEMACS_MOD_ALT | XEMACS_MOD_SHIFT)) |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
512 == 0); |
428 | 513 |
514 k = XKEYMAP (keymap); | |
515 | |
516 /* If the keysym is a one-character symbol, use the char code instead. */ | |
826 | 517 if (SYMBOLP (keysym) && string_char_length (XSYMBOL (keysym)->name) == 1) |
428 | 518 { |
519 Lisp_Object i_fart_on_gcc = | |
867 | 520 make_char (string_ichar (XSYMBOL (keysym)->name, 0)); |
428 | 521 keysym = i_fart_on_gcc; |
522 } | |
523 | |
442 | 524 if (modifiers & XEMACS_MOD_META) /* Utterly hateful ESC lossage */ |
428 | 525 { |
442 | 526 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META), |
428 | 527 k->table, Qnil); |
528 if (NILP (submap)) | |
529 return Qnil; | |
530 k = XKEYMAP (submap); | |
442 | 531 modifiers &= ~XEMACS_MOD_META; |
428 | 532 } |
533 | |
534 if (modifiers != 0) | |
535 { | |
536 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (modifiers), | |
537 k->table, Qnil); | |
538 if (NILP (submap)) | |
539 return Qnil; | |
540 k = XKEYMAP (submap); | |
541 } | |
542 return Fgethash (keysym, k->table, Qnil); | |
543 } | |
544 | |
545 static void | |
546 keymap_store_inverse_internal (Lisp_Object inverse_table, | |
547 Lisp_Object keysym, | |
548 Lisp_Object value) | |
549 { | |
550 Lisp_Object keys = Fgethash (value, inverse_table, Qunbound); | |
551 | |
552 if (UNBOUNDP (keys)) | |
553 { | |
554 keys = keysym; | |
555 /* Don't cons this unless necessary */ | |
556 /* keys = Fcons (keysym, Qnil); */ | |
557 Fputhash (value, keys, inverse_table); | |
558 } | |
559 else if (!CONSP (keys)) | |
560 { | |
561 /* Now it's necessary to cons */ | |
562 keys = Fcons (keys, keysym); | |
563 Fputhash (value, keys, inverse_table); | |
564 } | |
565 else | |
566 { | |
567 while (CONSP (XCDR (keys))) | |
568 keys = XCDR (keys); | |
569 XCDR (keys) = Fcons (XCDR (keys), keysym); | |
570 /* No need to call puthash because we've destructively | |
571 modified the list tail in place */ | |
572 } | |
573 } | |
574 | |
575 | |
576 static void | |
577 keymap_delete_inverse_internal (Lisp_Object inverse_table, | |
578 Lisp_Object keysym, | |
579 Lisp_Object value) | |
580 { | |
581 Lisp_Object keys = Fgethash (value, inverse_table, Qunbound); | |
582 Lisp_Object new_keys = keys; | |
583 Lisp_Object tail; | |
584 Lisp_Object *prev; | |
585 | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
586 assert (!UNBOUNDP (keys)); |
428 | 587 |
588 for (prev = &new_keys, tail = new_keys; | |
589 ; | |
590 prev = &(XCDR (tail)), tail = XCDR (tail)) | |
591 { | |
592 if (EQ (tail, keysym)) | |
593 { | |
594 *prev = Qnil; | |
595 break; | |
596 } | |
597 else if (EQ (keysym, XCAR (tail))) | |
598 { | |
599 *prev = XCDR (tail); | |
600 break; | |
601 } | |
602 } | |
603 | |
604 if (NILP (new_keys)) | |
605 Fremhash (value, inverse_table); | |
606 else if (!EQ (keys, new_keys)) | |
607 /* Removed the first elt */ | |
608 Fputhash (value, new_keys, inverse_table); | |
609 /* else the list's tail has been modified, so we don't need to | |
610 touch the hash table again (the pointer in there is ok). | |
611 */ | |
612 } | |
613 | |
440 | 614 /* Prevent luser from shooting herself in the foot using something like |
615 (define-key ctl-x-4-map "p" global-map) */ | |
616 static void | |
617 check_keymap_definition_loop (Lisp_Object def, Lisp_Keymap *to_keymap) | |
618 { | |
619 def = get_keymap (def, 0, 0); | |
620 | |
621 if (KEYMAPP (def)) | |
622 { | |
623 Lisp_Object maps; | |
624 | |
625 if (XKEYMAP (def) == to_keymap) | |
563 | 626 invalid_argument ("Cyclic keymap definition", def); |
440 | 627 |
628 for (maps = keymap_submaps (def); | |
629 CONSP (maps); | |
630 maps = XCDR (maps)) | |
631 check_keymap_definition_loop (XCDR (XCAR (maps)), to_keymap); | |
632 } | |
633 } | |
428 | 634 |
635 static void | |
636 keymap_store_internal (Lisp_Object keysym, Lisp_Keymap *keymap, | |
440 | 637 Lisp_Object def) |
428 | 638 { |
440 | 639 Lisp_Object prev_def = Fgethash (keysym, keymap->table, Qnil); |
640 | |
641 if (EQ (prev_def, def)) | |
428 | 642 return; |
440 | 643 |
644 check_keymap_definition_loop (def, keymap); | |
645 | |
646 if (!NILP (prev_def)) | |
428 | 647 keymap_delete_inverse_internal (keymap->inverse_table, |
440 | 648 keysym, prev_def); |
649 if (NILP (def)) | |
428 | 650 { |
651 Fremhash (keysym, keymap->table); | |
652 } | |
653 else | |
654 { | |
440 | 655 Fputhash (keysym, def, keymap->table); |
428 | 656 keymap_store_inverse_internal (keymap->inverse_table, |
440 | 657 keysym, def); |
428 | 658 } |
659 keymap_tick++; | |
660 } | |
661 | |
662 | |
663 static Lisp_Object | |
442 | 664 create_bucky_submap (Lisp_Keymap *k, int modifiers, |
428 | 665 Lisp_Object parent_for_debugging_info) |
666 { | |
667 Lisp_Object submap = Fmake_sparse_keymap (Qnil); | |
668 /* User won't see this, but it is nice for debugging Emacs */ | |
669 XKEYMAP (submap)->name | |
670 = control_meta_superify (parent_for_debugging_info, modifiers); | |
671 /* Invalidate cache */ | |
672 k->sub_maps_cache = Qt; | |
673 keymap_store_internal (MAKE_MODIFIER_HASH_KEY (modifiers), k, submap); | |
674 return submap; | |
675 } | |
676 | |
677 | |
678 /* Relies on caller to gc-protect keymap, keysym, value */ | |
679 static void | |
934 | 680 keymap_store (Lisp_Object keymap, const Lisp_Key_Data *key, |
428 | 681 Lisp_Object value) |
682 { | |
934 | 683 Lisp_Object keysym = KEY_DATA_KEYSYM (key); |
684 int modifiers = KEY_DATA_MODIFIERS (key); | |
440 | 685 Lisp_Keymap *k = XKEYMAP (keymap); |
686 | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
687 modifiers &= ~( |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
688 #define FROB(num) XEMACS_MOD_BUTTON##num | |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
689 #include "keymap-buttons.h" |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
690 0); |
442 | 691 assert ((modifiers & ~(XEMACS_MOD_CONTROL | XEMACS_MOD_META |
692 | XEMACS_MOD_SUPER | XEMACS_MOD_HYPER | |
693 | XEMACS_MOD_ALT | XEMACS_MOD_SHIFT)) == 0); | |
428 | 694 |
695 /* If the keysym is a one-character symbol, use the char code instead. */ | |
826 | 696 if (SYMBOLP (keysym) && string_char_length (XSYMBOL (keysym)->name) == 1) |
867 | 697 keysym = make_char (string_ichar (XSYMBOL (keysym)->name, 0)); |
428 | 698 |
442 | 699 if (modifiers & XEMACS_MOD_META) /* Utterly hateful ESC lossage */ |
428 | 700 { |
442 | 701 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META), |
428 | 702 k->table, Qnil); |
703 if (NILP (submap)) | |
442 | 704 submap = create_bucky_submap (k, XEMACS_MOD_META, keymap); |
428 | 705 k = XKEYMAP (submap); |
442 | 706 modifiers &= ~XEMACS_MOD_META; |
428 | 707 } |
708 | |
709 if (modifiers != 0) | |
710 { | |
711 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (modifiers), | |
712 k->table, Qnil); | |
713 if (NILP (submap)) | |
714 submap = create_bucky_submap (k, modifiers, keymap); | |
715 k = XKEYMAP (submap); | |
716 } | |
717 k->sub_maps_cache = Qt; /* Invalidate cache */ | |
718 keymap_store_internal (keysym, k, value); | |
719 } | |
720 | |
721 | |
722 /************************************************************************/ | |
723 /* Listing the submaps of a keymap */ | |
724 /************************************************************************/ | |
725 | |
726 struct keymap_submaps_closure | |
727 { | |
728 Lisp_Object *result_locative; | |
729 }; | |
730 | |
731 static int | |
2286 | 732 keymap_submaps_mapper_0 (Lisp_Object UNUSED (key), Lisp_Object value, |
733 void *UNUSED (keymap_submaps_closure)) | |
428 | 734 { |
735 /* This function can GC */ | |
736 /* Perform any autoloads, etc */ | |
737 Fkeymapp (value); | |
738 return 0; | |
739 } | |
740 | |
741 static int | |
742 keymap_submaps_mapper (Lisp_Object key, Lisp_Object value, | |
743 void *keymap_submaps_closure) | |
744 { | |
745 /* This function can GC */ | |
746 Lisp_Object *result_locative; | |
747 struct keymap_submaps_closure *cl = | |
748 (struct keymap_submaps_closure *) keymap_submaps_closure; | |
749 result_locative = cl->result_locative; | |
750 | |
751 if (!NILP (Fkeymapp (value))) | |
752 *result_locative = Fcons (Fcons (key, value), *result_locative); | |
753 return 0; | |
754 } | |
755 | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
756 static Boolint map_keymap_sort_predicate (Lisp_Object pred, Lisp_Object key, |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
757 Lisp_Object obj1, Lisp_Object obj2); |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
758 |
428 | 759 |
760 static Lisp_Object | |
761 keymap_submaps (Lisp_Object keymap) | |
762 { | |
763 /* This function can GC */ | |
764 Lisp_Keymap *k = XKEYMAP (keymap); | |
765 | |
766 if (EQ (k->sub_maps_cache, Qt)) /* Unknown */ | |
767 { | |
768 Lisp_Object result = Qnil; | |
769 struct gcpro gcpro1, gcpro2; | |
770 struct keymap_submaps_closure keymap_submaps_closure; | |
771 | |
772 GCPRO2 (keymap, result); | |
773 keymap_submaps_closure.result_locative = &result; | |
774 /* Do this first pass to touch (and load) any autoloaded maps */ | |
775 elisp_maphash (keymap_submaps_mapper_0, k->table, | |
776 &keymap_submaps_closure); | |
777 result = Qnil; | |
778 elisp_maphash (keymap_submaps_mapper, k->table, | |
779 &keymap_submaps_closure); | |
780 /* keep it sorted so that the result of accessible-keymaps is ordered */ | |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
781 k->sub_maps_cache = list_sort (result, map_keymap_sort_predicate, |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
782 Qnil, Qnil); |
428 | 783 UNGCPRO; |
784 } | |
785 return k->sub_maps_cache; | |
786 } | |
787 | |
788 | |
789 /************************************************************************/ | |
790 /* Basic operations on keymaps */ | |
791 /************************************************************************/ | |
792 | |
793 static Lisp_Object | |
665 | 794 make_keymap (Elemcount size) |
428 | 795 { |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
796 Lisp_Object obj = ALLOC_NORMAL_LISP_OBJECT (keymap); |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3025
diff
changeset
|
797 Lisp_Keymap *keymap = XKEYMAP (obj); |
428 | 798 |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
799 #define MARKED_SLOT(x) keymap->x = Qnil; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
800 #include "keymap-slots.h" |
428 | 801 |
802 if (size != 0) /* hack for copy-keymap */ | |
803 { | |
804 keymap->table = | |
5191
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5183
diff
changeset
|
805 make_lisp_hash_table (size, HASH_TABLE_NON_WEAK, Qeq); |
428 | 806 /* Inverse table is often less dense because of duplicate key-bindings. |
807 If not, it will grow anyway. */ | |
808 keymap->inverse_table = | |
647 | 809 make_lisp_hash_table (size * 3 / 4, HASH_TABLE_NON_WEAK, |
5191
71ee43b8a74d
Add #'equalp as a hash test by default; add #'define-hash-table-test, GNU API
Aidan Kehoe <kehoea@parhasard.net>
parents:
5183
diff
changeset
|
810 Qeq); |
428 | 811 } |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3025
diff
changeset
|
812 return obj; |
428 | 813 } |
814 | |
815 DEFUN ("make-keymap", Fmake_keymap, 0, 1, 0, /* | |
816 Construct and return a new keymap object. | |
817 All entries in it are nil, meaning "command undefined". | |
818 | |
819 Optional argument NAME specifies a name to assign to the keymap, | |
820 as in `set-keymap-name'. This name is only a debugging convenience; | |
821 it is not used except when printing the keymap. | |
822 */ | |
823 (name)) | |
824 { | |
825 Lisp_Object keymap = make_keymap (60); | |
826 if (!NILP (name)) | |
827 Fset_keymap_name (keymap, name); | |
828 return keymap; | |
829 } | |
830 | |
831 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, 0, 1, 0, /* | |
832 Construct and return a new keymap object. | |
833 All entries in it are nil, meaning "command undefined". The only | |
444 | 834 difference between this function and `make-keymap' is that this function |
428 | 835 returns a "smaller" keymap (one that is expected to contain fewer |
444 | 836 entries). As keymaps dynamically resize, this distinction is not great. |
428 | 837 |
838 Optional argument NAME specifies a name to assign to the keymap, | |
839 as in `set-keymap-name'. This name is only a debugging convenience; | |
840 it is not used except when printing the keymap. | |
841 */ | |
842 (name)) | |
843 { | |
844 Lisp_Object keymap = make_keymap (8); | |
845 if (!NILP (name)) | |
846 Fset_keymap_name (keymap, name); | |
847 return keymap; | |
848 } | |
849 | |
850 DEFUN ("keymap-parents", Fkeymap_parents, 1, 1, 0, /* | |
851 Return the `parent' keymaps of KEYMAP, or nil. | |
852 The parents of a keymap are searched for keybindings when a key sequence | |
853 isn't bound in this one. `(current-global-map)' is the default parent | |
854 of all keymaps. | |
855 */ | |
856 (keymap)) | |
857 { | |
858 keymap = get_keymap (keymap, 1, 1); | |
859 return Fcopy_sequence (XKEYMAP (keymap)->parents); | |
860 } | |
861 | |
862 | |
863 | |
864 static Lisp_Object | |
2286 | 865 traverse_keymaps_noop (Lisp_Object UNUSED (keymap), void *UNUSED (arg)) |
428 | 866 { |
867 return Qnil; | |
868 } | |
869 | |
870 DEFUN ("set-keymap-parents", Fset_keymap_parents, 2, 2, 0, /* | |
871 Set the `parent' keymaps of KEYMAP to PARENTS. | |
872 The parents of a keymap are searched for keybindings when a key sequence | |
873 isn't bound in this one. `(current-global-map)' is the default parent | |
874 of all keymaps. | |
875 */ | |
876 (keymap, parents)) | |
877 { | |
878 /* This function can GC */ | |
879 Lisp_Object k; | |
880 struct gcpro gcpro1, gcpro2; | |
881 | |
882 GCPRO2 (keymap, parents); | |
883 keymap = get_keymap (keymap, 1, 1); | |
884 | |
885 if (KEYMAPP (parents)) /* backwards-compatibility */ | |
886 parents = list1 (parents); | |
887 if (!NILP (parents)) | |
888 { | |
889 Lisp_Object tail = parents; | |
890 while (!NILP (tail)) | |
891 { | |
892 QUIT; | |
893 CHECK_CONS (tail); | |
894 k = XCAR (tail); | |
895 /* Require that it be an actual keymap object, rather than a symbol | |
896 with a (crockish) symbol-function which is a keymap */ | |
897 CHECK_KEYMAP (k); /* get_keymap (k, 1, 1); */ | |
898 tail = XCDR (tail); | |
899 } | |
900 } | |
901 | |
902 /* Check for circularities */ | |
903 traverse_keymaps (keymap, parents, traverse_keymaps_noop, 0); | |
904 keymap_tick++; | |
905 XKEYMAP (keymap)->parents = Fcopy_sequence (parents); | |
906 UNGCPRO; | |
907 return parents; | |
908 } | |
909 | |
910 DEFUN ("set-keymap-name", Fset_keymap_name, 2, 2, 0, /* | |
911 Set the `name' of the KEYMAP to NEW-NAME. | |
912 The name is only a debugging convenience; it is not used except | |
913 when printing the keymap. | |
914 */ | |
915 (keymap, new_name)) | |
916 { | |
917 keymap = get_keymap (keymap, 1, 1); | |
918 | |
919 XKEYMAP (keymap)->name = new_name; | |
920 return new_name; | |
921 } | |
922 | |
923 DEFUN ("keymap-name", Fkeymap_name, 1, 1, 0, /* | |
924 Return the `name' of KEYMAP. | |
925 The name is only a debugging convenience; it is not used except | |
926 when printing the keymap. | |
927 */ | |
928 (keymap)) | |
929 { | |
930 keymap = get_keymap (keymap, 1, 1); | |
931 | |
932 return XKEYMAP (keymap)->name; | |
933 } | |
934 | |
935 DEFUN ("set-keymap-prompt", Fset_keymap_prompt, 2, 2, 0, /* | |
936 Set the `prompt' of KEYMAP to string NEW-PROMPT, or `nil' | |
937 if no prompt is desired. The prompt is shown in the echo-area | |
938 when reading a key-sequence to be looked-up in this keymap. | |
939 */ | |
940 (keymap, new_prompt)) | |
941 { | |
942 keymap = get_keymap (keymap, 1, 1); | |
943 | |
944 if (!NILP (new_prompt)) | |
945 CHECK_STRING (new_prompt); | |
946 | |
947 XKEYMAP (keymap)->prompt = new_prompt; | |
948 return new_prompt; | |
949 } | |
950 | |
951 static Lisp_Object | |
2286 | 952 keymap_prompt_mapper (Lisp_Object keymap, void *UNUSED (arg)) |
428 | 953 { |
954 return XKEYMAP (keymap)->prompt; | |
955 } | |
956 | |
957 | |
958 DEFUN ("keymap-prompt", Fkeymap_prompt, 1, 2, 0, /* | |
959 Return the `prompt' of KEYMAP. | |
960 If non-nil, the prompt is shown in the echo-area | |
961 when reading a key-sequence to be looked-up in this keymap. | |
962 */ | |
963 (keymap, use_inherited)) | |
964 { | |
965 /* This function can GC */ | |
966 Lisp_Object prompt; | |
967 | |
968 keymap = get_keymap (keymap, 1, 1); | |
969 prompt = XKEYMAP (keymap)->prompt; | |
970 if (!NILP (prompt) || NILP (use_inherited)) | |
971 return prompt; | |
972 else | |
973 return traverse_keymaps (keymap, Qnil, keymap_prompt_mapper, 0); | |
974 } | |
975 | |
976 DEFUN ("set-keymap-default-binding", Fset_keymap_default_binding, 2, 2, 0, /* | |
977 Sets the default binding of KEYMAP to COMMAND, or `nil' | |
978 if no default is desired. The default-binding is returned when | |
979 no other binding for a key-sequence is found in the keymap. | |
980 If a keymap has a non-nil default-binding, neither the keymap's | |
981 parents nor the current global map are searched for key bindings. | |
982 */ | |
983 (keymap, command)) | |
984 { | |
985 /* This function can GC */ | |
986 keymap = get_keymap (keymap, 1, 1); | |
987 | |
988 XKEYMAP (keymap)->default_binding = command; | |
989 return command; | |
990 } | |
991 | |
992 DEFUN ("keymap-default-binding", Fkeymap_default_binding, 1, 1, 0, /* | |
993 Return the default binding of KEYMAP, or `nil' if it has none. | |
994 The default-binding is returned when no other binding for a key-sequence | |
995 is found in the keymap. | |
996 If a keymap has a non-nil default-binding, neither the keymap's | |
997 parents nor the current global map are searched for key bindings. | |
998 */ | |
999 (keymap)) | |
1000 { | |
1001 /* This function can GC */ | |
1002 keymap = get_keymap (keymap, 1, 1); | |
1003 return XKEYMAP (keymap)->default_binding; | |
1004 } | |
1005 | |
1006 DEFUN ("keymapp", Fkeymapp, 1, 1, 0, /* | |
444 | 1007 Return t if OBJECT is a keymap object. |
428 | 1008 The keymap may be autoloaded first if necessary. |
1009 */ | |
1010 (object)) | |
1011 { | |
1012 /* This function can GC */ | |
1013 return KEYMAPP (get_keymap (object, 0, 0)) ? Qt : Qnil; | |
1014 } | |
1015 | |
1016 /* Check that OBJECT is a keymap (after dereferencing through any | |
1017 symbols). If it is, return it. | |
1018 | |
1019 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value | |
1020 is an autoload form, do the autoload and try again. | |
1021 If AUTOLOAD is nonzero, callers must assume GC is possible. | |
1022 | |
1023 ERRORP controls how we respond if OBJECT isn't a keymap. | |
1024 If ERRORP is non-zero, signal an error; otherwise, just return Qnil. | |
1025 | |
1026 Note that most of the time, we don't want to pursue autoloads. | |
1027 Functions like Faccessible_keymaps which scan entire keymap trees | |
1028 shouldn't load every autoloaded keymap. I'm not sure about this, | |
1029 but it seems to me that only read_key_sequence, Flookup_key, and | |
1030 Fdefine_key should cause keymaps to be autoloaded. */ | |
1031 | |
1032 Lisp_Object | |
1033 get_keymap (Lisp_Object object, int errorp, int autoload) | |
1034 { | |
1035 /* This function can GC */ | |
1036 while (1) | |
1037 { | |
1038 Lisp_Object tem = indirect_function (object, 0); | |
1039 | |
1040 if (KEYMAPP (tem)) | |
1041 return tem; | |
1042 /* Should we do an autoload? */ | |
1043 else if (autoload | |
1044 /* (autoload "filename" doc nil keymap) */ | |
1045 && SYMBOLP (object) | |
1046 && CONSP (tem) | |
1047 && EQ (XCAR (tem), Qautoload) | |
1048 && EQ (Fcar (Fcdr (Fcdr (Fcdr (Fcdr (tem))))), Qkeymap)) | |
1049 { | |
970 | 1050 /* do_autoload GCPROs both arguments */ |
428 | 1051 do_autoload (tem, object); |
1052 } | |
1053 else if (errorp) | |
1054 object = wrong_type_argument (Qkeymapp, object); | |
1055 else | |
1056 return Qnil; | |
1057 } | |
1058 } | |
1059 | |
1060 /* Given OBJECT which was found in a slot in a keymap, | |
1061 trace indirect definitions to get the actual definition of that slot. | |
1062 An indirect definition is a list of the form | |
1063 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one | |
1064 and INDEX is an ASCII code, or a cons of (KEYSYM . MODIFIERS). | |
1065 */ | |
1066 static Lisp_Object | |
1067 get_keyelt (Lisp_Object object, int accept_default) | |
1068 { | |
1069 /* This function can GC */ | |
1070 Lisp_Object map; | |
1071 | |
1072 tail_recurse: | |
1073 if (!CONSP (object)) | |
1074 return object; | |
1075 | |
1076 { | |
1077 struct gcpro gcpro1; | |
1078 GCPRO1 (object); | |
1079 map = XCAR (object); | |
1080 map = get_keymap (map, 0, 1); | |
1081 UNGCPRO; | |
1082 } | |
1083 /* If the contents are (KEYMAP . ELEMENT), go indirect. */ | |
1084 if (!NILP (map)) | |
1085 { | |
1086 Lisp_Object idx = Fcdr (object); | |
934 | 1087 Lisp_Key_Data indirection; |
428 | 1088 if (CHARP (idx)) |
1089 { | |
934 | 1090 Lisp_Object event = Fmake_event (Qnil, Qnil); |
1091 struct gcpro gcpro1; | |
1092 GCPRO1 (event); | |
1093 character_to_event (XCHAR (idx), XEVENT (event), | |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
1094 XCONSOLE (Vselected_console), |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
1095 high_bit_is_meta, 0); |
1204 | 1096 indirection.keysym = XEVENT_KEY_KEYSYM (event); |
1097 indirection.modifiers = XEVENT_KEY_MODIFIERS (event); | |
1098 UNGCPRO; | |
428 | 1099 } |
1100 else if (CONSP (idx)) | |
1101 { | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1102 if (!FIXNUMP (XCDR (idx))) |
428 | 1103 return Qnil; |
1104 indirection.keysym = XCAR (idx); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1105 indirection.modifiers = (unsigned char) XFIXNUM (XCDR (idx)); |
428 | 1106 } |
1107 else if (SYMBOLP (idx)) | |
1108 { | |
1109 indirection.keysym = idx; | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1110 SET_KEY_DATA_MODIFIERS (&indirection, XFIXNUM (XCDR (idx))); |
428 | 1111 } |
1112 else | |
1113 { | |
1114 /* Random junk */ | |
1115 return Qnil; | |
1116 } | |
1117 return raw_lookup_key (map, &indirection, 1, 0, accept_default); | |
1118 } | |
1119 else if (STRINGP (XCAR (object))) | |
1120 { | |
1121 /* If the keymap contents looks like (STRING . DEFN), | |
1122 use DEFN. | |
1123 Keymap alist elements like (CHAR MENUSTRING . DEFN) | |
1124 will be used by HierarKey menus. */ | |
1125 object = XCDR (object); | |
1126 goto tail_recurse; | |
1127 } | |
1128 else | |
1129 { | |
1130 /* Anything else is really the value. */ | |
1131 return object; | |
1132 } | |
1133 } | |
1134 | |
1135 static Lisp_Object | |
934 | 1136 keymap_lookup_1 (Lisp_Object keymap, const Lisp_Key_Data *key, |
428 | 1137 int accept_default) |
1138 { | |
1139 /* This function can GC */ | |
934 | 1140 return get_keyelt (keymap_lookup_directly (keymap, |
1141 KEY_DATA_KEYSYM (key), | |
1142 KEY_DATA_MODIFIERS (key)), | |
1143 accept_default); | |
428 | 1144 } |
1145 | |
1146 | |
1147 /************************************************************************/ | |
1148 /* Copying keymaps */ | |
1149 /************************************************************************/ | |
1150 | |
1151 struct copy_keymap_inverse_closure | |
1152 { | |
1153 Lisp_Object inverse_table; | |
1154 }; | |
1155 | |
1156 static int | |
1157 copy_keymap_inverse_mapper (Lisp_Object key, Lisp_Object value, | |
1158 void *copy_keymap_inverse_closure) | |
1159 { | |
1160 struct copy_keymap_inverse_closure *closure = | |
1161 (struct copy_keymap_inverse_closure *) copy_keymap_inverse_closure; | |
1162 | |
1163 /* copy-sequence deals with dotted lists. */ | |
1164 if (CONSP (value)) | |
1165 value = Fcopy_list (value); | |
1166 Fputhash (key, value, closure->inverse_table); | |
1167 | |
1168 return 0; | |
1169 } | |
1170 | |
1171 | |
1172 static Lisp_Object | |
1173 copy_keymap_internal (Lisp_Keymap *keymap) | |
1174 { | |
1175 Lisp_Object nkm = make_keymap (0); | |
1176 Lisp_Keymap *new_keymap = XKEYMAP (nkm); | |
1177 struct copy_keymap_inverse_closure copy_keymap_inverse_closure; | |
1178 copy_keymap_inverse_closure.inverse_table = keymap->inverse_table; | |
1179 | |
1180 new_keymap->parents = Fcopy_sequence (keymap->parents); | |
1181 new_keymap->sub_maps_cache = Qnil; /* No submaps */ | |
1182 new_keymap->table = Fcopy_hash_table (keymap->table); | |
1183 new_keymap->inverse_table = Fcopy_hash_table (keymap->inverse_table); | |
1184 new_keymap->default_binding = keymap->default_binding; | |
1185 /* After copying the inverse map, we need to copy the conses which | |
1186 are its values, lest they be shared by the copy, and mangled. | |
1187 */ | |
1188 elisp_maphash (copy_keymap_inverse_mapper, keymap->inverse_table, | |
1189 ©_keymap_inverse_closure); | |
1190 return nkm; | |
1191 } | |
1192 | |
1193 | |
1194 static Lisp_Object copy_keymap (Lisp_Object keymap); | |
1195 | |
1196 struct copy_keymap_closure | |
1197 { | |
1198 Lisp_Keymap *self; | |
1199 }; | |
1200 | |
1201 static int | |
1202 copy_keymap_mapper (Lisp_Object key, Lisp_Object value, | |
1203 void *copy_keymap_closure) | |
1204 { | |
1205 /* This function can GC */ | |
1206 struct copy_keymap_closure *closure = | |
1207 (struct copy_keymap_closure *) copy_keymap_closure; | |
1208 | |
1209 /* When we encounter a keymap which is indirected through a | |
1210 symbol, we need to copy the sub-map. In v18, the form | |
1211 (lookup-key (copy-keymap global-map) "\C-x") | |
3025 | 1212 returned a new keymap, not the symbol `Control-X-prefix'. |
428 | 1213 */ |
1214 value = get_keymap (value, 0, 1); /* #### autoload GC-safe here? */ | |
1215 if (KEYMAPP (value)) | |
1216 keymap_store_internal (key, closure->self, | |
1217 copy_keymap (value)); | |
1218 return 0; | |
1219 } | |
1220 | |
1221 static Lisp_Object | |
1222 copy_keymap (Lisp_Object keymap) | |
1223 { | |
1224 /* This function can GC */ | |
1225 struct copy_keymap_closure copy_keymap_closure; | |
1226 | |
1227 keymap = copy_keymap_internal (XKEYMAP (keymap)); | |
1228 copy_keymap_closure.self = XKEYMAP (keymap); | |
1229 elisp_maphash (copy_keymap_mapper, | |
1230 XKEYMAP (keymap)->table, | |
1231 ©_keymap_closure); | |
1232 return keymap; | |
1233 } | |
1234 | |
1235 DEFUN ("copy-keymap", Fcopy_keymap, 1, 1, 0, /* | |
1236 Return a copy of the keymap KEYMAP. | |
1237 The copy starts out with the same definitions of KEYMAP, | |
1238 but changing either the copy or KEYMAP does not affect the other. | |
1239 Any key definitions that are subkeymaps are recursively copied. | |
1240 */ | |
1241 (keymap)) | |
1242 { | |
1243 /* This function can GC */ | |
1244 keymap = get_keymap (keymap, 1, 1); | |
1245 return copy_keymap (keymap); | |
1246 } | |
1247 | |
1248 | |
1249 static int | |
1250 keymap_fullness (Lisp_Object keymap) | |
1251 { | |
1252 /* This function can GC */ | |
1253 int fullness; | |
1254 Lisp_Object sub_maps; | |
1255 struct gcpro gcpro1, gcpro2; | |
1256 | |
1257 keymap = get_keymap (keymap, 1, 1); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1258 fullness = XFIXNUM (Fhash_table_count (XKEYMAP (keymap)->table)); |
428 | 1259 GCPRO2 (keymap, sub_maps); |
440 | 1260 for (sub_maps = keymap_submaps (keymap); |
1261 !NILP (sub_maps); | |
1262 sub_maps = XCDR (sub_maps)) | |
428 | 1263 { |
1264 if (MODIFIER_HASH_KEY_BITS (XCAR (XCAR (sub_maps))) != 0) | |
1265 { | |
440 | 1266 Lisp_Object bucky_map = XCDR (XCAR (sub_maps)); |
1267 fullness--; /* don't count bucky maps themselves. */ | |
1268 fullness += keymap_fullness (bucky_map); | |
428 | 1269 } |
1270 } | |
1271 UNGCPRO; | |
1272 return fullness; | |
1273 } | |
1274 | |
1275 DEFUN ("keymap-fullness", Fkeymap_fullness, 1, 1, 0, /* | |
1276 Return the number of bindings in the keymap. | |
1277 */ | |
1278 (keymap)) | |
1279 { | |
1280 /* This function can GC */ | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1281 return make_fixnum (keymap_fullness (get_keymap (keymap, 1, 1))); |
428 | 1282 } |
1283 | |
1284 | |
1285 /************************************************************************/ | |
1286 /* Defining keys in keymaps */ | |
1287 /************************************************************************/ | |
1288 | |
1289 /* Given a keysym (should be a symbol, int, char), make sure it's valid | |
1290 and perform any necessary canonicalization. */ | |
1291 | |
1292 static void | |
1293 define_key_check_and_coerce_keysym (Lisp_Object spec, | |
1294 Lisp_Object *keysym, | |
442 | 1295 int modifiers) |
428 | 1296 { |
1297 /* Now, check and massage the trailing keysym specifier. */ | |
1298 if (SYMBOLP (*keysym)) | |
1299 { | |
826 | 1300 if (string_char_length (XSYMBOL (*keysym)->name) == 1) |
428 | 1301 { |
1302 Lisp_Object ream_gcc_up_the_ass = | |
867 | 1303 make_char (string_ichar (XSYMBOL (*keysym)->name, 0)); |
428 | 1304 *keysym = ream_gcc_up_the_ass; |
1305 goto fixnum_keysym; | |
1306 } | |
1307 } | |
1308 else if (CHAR_OR_CHAR_INTP (*keysym)) | |
1309 { | |
1310 CHECK_CHAR_COERCE_INT (*keysym); | |
1311 fixnum_keysym: | |
1312 if (XCHAR (*keysym) < ' ' | |
1313 /* || (XCHAR (*keysym) >= 128 && XCHAR (*keysym) < 160) */) | |
1314 /* yuck! Can't make the above restriction; too many compatibility | |
1315 problems ... */ | |
563 | 1316 invalid_argument ("keysym char must be printable", *keysym); |
428 | 1317 /* #### This bites! I want to be able to write (control shift a) */ |
442 | 1318 if (modifiers & XEMACS_MOD_SHIFT) |
563 | 1319 invalid_argument |
428 | 1320 ("The `shift' modifier may not be applied to ASCII keysyms", |
1321 spec); | |
1322 } | |
1323 else | |
1324 { | |
563 | 1325 invalid_argument ("Unknown keysym specifier", *keysym); |
428 | 1326 } |
1327 | |
1328 if (SYMBOLP (*keysym)) | |
1329 { | |
867 | 1330 Ibyte *name = XSTRING_DATA (XSYMBOL (*keysym)->name); |
428 | 1331 |
3025 | 1332 /* GNU Emacs uses symbols with the printed representation of keysyms in |
1333 their names, like `M-x', and we use the syntax '(meta x). So, to | |
1334 avoid confusion, notice the M-x syntax and signal an error - | |
1335 because otherwise it would be interpreted as a regular keysym, and | |
1336 would even show up in the list-buffers output, causing confusion | |
1337 to the naive. | |
428 | 1338 |
1339 We can get away with this because none of the X keysym names contain | |
1340 a hyphen (some contain underscore, however). | |
1341 | |
1342 It might be useful to reject keysyms which are not x-valid-keysym- | |
1343 name-p, but that would interfere with various tricks we do to | |
1344 sanitize the Sun keyboards, and would make it trickier to | |
1345 conditionalize a .emacs file for multiple X servers. | |
1346 */ | |
5693
4d15e903800b
Be more careful about erroring with probable GNU-syntax keysyms, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5692
diff
changeset
|
1347 if (((int) qxestrlen (name) >= 2 && name[1] == '-' |
4d15e903800b
Be more careful about erroring with probable GNU-syntax keysyms, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5692
diff
changeset
|
1348 /* Check for a function binding if the symbol looks like |
4d15e903800b
Be more careful about erroring with probable GNU-syntax keysyms, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5692
diff
changeset
|
1349 c-..., otherwise command remapping and C mode interact |
4d15e903800b
Be more careful about erroring with probable GNU-syntax keysyms, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5692
diff
changeset
|
1350 badly. */ |
4d15e903800b
Be more careful about erroring with probable GNU-syntax keysyms, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5692
diff
changeset
|
1351 && NILP (Ffunctionp (XSYMBOL_FUNCTION (*keysym)))) |
428 | 1352 #if 1 |
1353 || | |
1354 /* Ok, this is a bit more dubious - prevent people from doing things | |
1355 like (global-set-key 'RET 'something) because that will have the | |
1356 same problem as above. (Gag!) Maybe we should just silently | |
1357 accept these as aliases for the "real" names? | |
1358 */ | |
793 | 1359 (XSTRING_LENGTH (XSYMBOL (*keysym)->name) <= 3 && |
2367 | 1360 (!qxestrcmp_ascii (name, "LFD") || |
1361 !qxestrcmp_ascii (name, "TAB") || | |
1362 !qxestrcmp_ascii (name, "RET") || | |
1363 !qxestrcmp_ascii (name, "ESC") || | |
1364 !qxestrcmp_ascii (name, "DEL") || | |
1365 !qxestrcmp_ascii (name, "SPC") || | |
1366 !qxestrcmp_ascii (name, "BS"))) | |
428 | 1367 #endif /* unused */ |
1368 ) | |
563 | 1369 invalid_argument |
3086 | 1370 ("Invalid (GNU Emacs) key format (see doc of define-key)", |
428 | 1371 *keysym); |
1372 | |
1373 /* #### Ok, this is a bit more dubious - make people not lose if they | |
1374 do things like (global-set-key 'RET 'something) because that would | |
1375 otherwise have the same problem as above. (Gag!) We silently | |
1376 accept these as aliases for the "real" names. | |
1377 */ | |
2367 | 1378 else if (!qxestrncmp_ascii (name, "kp_", 3)) |
793 | 1379 { |
1380 /* Likewise, the obsolete keysym binding of kp_.* should not lose. */ | |
1381 DECLARE_EISTRING (temp); | |
1382 eicpy_raw (temp, name, qxestrlen (name)); | |
1383 eisetch_char (temp, 2, '-'); | |
4355
a2af1ff1761f
Provide a DEFAULT argument in #'intern-soft.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4272
diff
changeset
|
1384 *keysym = Fintern_soft (eimake_string (temp), Qnil, Qnil); |
793 | 1385 } |
1386 else if (EQ (*keysym, QLFD)) | |
428 | 1387 *keysym = QKlinefeed; |
1388 else if (EQ (*keysym, QTAB)) | |
1389 *keysym = QKtab; | |
1390 else if (EQ (*keysym, QRET)) | |
1391 *keysym = QKreturn; | |
1392 else if (EQ (*keysym, QESC)) | |
1393 *keysym = QKescape; | |
1394 else if (EQ (*keysym, QDEL)) | |
1395 *keysym = QKdelete; | |
1396 else if (EQ (*keysym, QSPC)) | |
1397 *keysym = QKspace; | |
1398 else if (EQ (*keysym, QBS)) | |
1399 *keysym = QKbackspace; | |
1400 /* Emacs compatibility */ | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1401 #define FROB(num) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1402 else if (EQ(*keysym, Qdown_mouse_##num)) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1403 *keysym = Qbutton##num; \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1404 else if (EQ(*keysym, Qmouse_##num)) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1405 *keysym = Qbutton##num##up; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1406 #include "keymap-buttons.h" |
428 | 1407 } |
1408 } | |
1409 | |
1410 | |
1411 /* Given any kind of key-specifier, return a keysym and modifier mask. | |
1412 Proper canonicalization is performed: | |
1413 | |
1414 -- integers are converted into the equivalent characters. | |
1415 -- one-character strings are converted into the equivalent characters. | |
1416 */ | |
1417 | |
1418 static void | |
934 | 1419 define_key_parser (Lisp_Object spec, Lisp_Key_Data *returned_value) |
428 | 1420 { |
1421 if (CHAR_OR_CHAR_INTP (spec)) | |
1422 { | |
934 | 1423 Lisp_Object event = Fmake_event (Qnil, Qnil); |
1424 struct gcpro gcpro1; | |
1425 GCPRO1 (event); | |
1426 character_to_event (XCHAR_OR_CHAR_INT (spec), XEVENT (event), | |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
1427 XCONSOLE (Vselected_console), high_bit_is_meta, 0); |
1204 | 1428 SET_KEY_DATA_KEYSYM (returned_value, XEVENT_KEY_KEYSYM (event)); |
934 | 1429 SET_KEY_DATA_MODIFIERS (returned_value, |
1204 | 1430 XEVENT_KEY_MODIFIERS (event)); |
1431 UNGCPRO; | |
428 | 1432 } |
1433 else if (EVENTP (spec)) | |
1434 { | |
934 | 1435 switch (XEVENT_TYPE (spec)) |
428 | 1436 { |
1437 case key_press_event: | |
1438 { | |
1204 | 1439 SET_KEY_DATA_KEYSYM (returned_value, XEVENT_KEY_KEYSYM (spec)); |
1440 SET_KEY_DATA_MODIFIERS (returned_value, XEVENT_KEY_MODIFIERS (spec)); | |
428 | 1441 break; |
1442 } | |
1443 case button_press_event: | |
1444 case button_release_event: | |
1445 { | |
934 | 1446 int down = (XEVENT_TYPE (spec) == button_press_event); |
1204 | 1447 switch (XEVENT_BUTTON_BUTTON (spec)) |
934 | 1448 { |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1449 #define FROB(num) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1450 case num: \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1451 SET_KEY_DATA_KEYSYM (returned_value, \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1452 (down ? Qbutton##num : \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1453 Qbutton##num##up)); \ |
934 | 1454 break; |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1455 #include "keymap-buttons.h" |
934 | 1456 default: |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1457 SET_KEY_DATA_KEYSYM (returned_value, (down ? Qbutton0 : |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1458 Qbutton0up)); |
934 | 1459 break; |
1460 } | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1461 SET_KEY_DATA_MODIFIERS (returned_value, |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1462 XEVENT_BUTTON_MODIFIERS (spec)); |
428 | 1463 break; |
1464 } | |
1465 default: | |
563 | 1466 wtaerror ("unable to bind this type of event", spec); |
428 | 1467 } |
1468 } | |
1469 else if (SYMBOLP (spec)) | |
1470 { | |
1471 /* Be nice, allow = to mean (=) */ | |
1472 if (bucky_sym_to_bucky_bit (spec) != 0) | |
563 | 1473 invalid_argument ("Key is a modifier name", spec); |
428 | 1474 define_key_check_and_coerce_keysym (spec, &spec, 0); |
934 | 1475 SET_KEY_DATA_KEYSYM (returned_value, spec); |
1476 SET_KEY_DATA_MODIFIERS (returned_value, 0); | |
428 | 1477 } |
1478 else if (CONSP (spec)) | |
1479 { | |
442 | 1480 int modifiers = 0; |
428 | 1481 Lisp_Object keysym = Qnil; |
1482 Lisp_Object rest = spec; | |
1483 | |
1484 /* First, parse out the leading modifier symbols. */ | |
1485 while (CONSP (rest)) | |
1486 { | |
442 | 1487 int modifier; |
428 | 1488 |
1489 keysym = XCAR (rest); | |
1490 modifier = bucky_sym_to_bucky_bit (keysym); | |
1491 modifiers |= modifier; | |
1492 if (!NILP (XCDR (rest))) | |
1493 { | |
1494 if (! modifier) | |
563 | 1495 invalid_argument ("Unknown modifier", keysym); |
428 | 1496 } |
1497 else | |
1498 { | |
1499 if (modifier) | |
563 | 1500 sferror ("Nothing but modifiers here", |
428 | 1501 spec); |
1502 } | |
1503 rest = XCDR (rest); | |
1504 QUIT; | |
1505 } | |
1506 if (!NILP (rest)) | |
563 | 1507 signal_error (Qlist_formation_error, |
1508 "List must be nil-terminated", spec); | |
428 | 1509 |
1510 define_key_check_and_coerce_keysym (spec, &keysym, modifiers); | |
934 | 1511 SET_KEY_DATA_KEYSYM(returned_value, keysym); |
1512 SET_KEY_DATA_MODIFIERS (returned_value, modifiers); | |
428 | 1513 } |
1514 else | |
1515 { | |
563 | 1516 invalid_argument ("Unknown key-sequence specifier", |
428 | 1517 spec); |
1518 } | |
1519 } | |
1520 | |
1521 /* Used by character-to-event */ | |
1522 void | |
1523 key_desc_list_to_event (Lisp_Object list, Lisp_Object event, | |
1524 int allow_menu_events) | |
1525 { | |
934 | 1526 Lisp_Key_Data raw_key; |
428 | 1527 |
1528 if (allow_menu_events && | |
1529 CONSP (list) && | |
1530 /* #### where the hell does this come from? */ | |
1531 EQ (XCAR (list), Qmenu_selection)) | |
1532 { | |
1533 Lisp_Object fn, arg; | |
1534 if (! NILP (Fcdr (Fcdr (list)))) | |
563 | 1535 invalid_argument ("Invalid menu event desc", list); |
428 | 1536 arg = Fcar (Fcdr (list)); |
1537 if (SYMBOLP (arg)) | |
1538 fn = Qcall_interactively; | |
1539 else | |
1540 fn = Qeval; | |
934 | 1541 XSET_EVENT_TYPE (event, misc_user_event); |
1204 | 1542 XSET_EVENT_CHANNEL (event, wrap_frame (selected_frame ())); |
1543 XSET_EVENT_MISC_USER_FUNCTION (event, fn); | |
1544 XSET_EVENT_MISC_USER_OBJECT (event, arg); | |
428 | 1545 return; |
1546 } | |
1547 | |
1548 define_key_parser (list, &raw_key); | |
1549 | |
5183
f283b08ff0c9
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1550 /* The first zero is needed for Apple's i686-apple-darwin8-g++-4.0.1, |
f283b08ff0c9
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1551 otherwise the build fails with: |
f283b08ff0c9
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1552 |
f283b08ff0c9
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1553 In function ‘void key_desc_list_to_event(Lisp_Object, Lisp_Object, int)’: |
f283b08ff0c9
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1554 cc1plus: error: expected primary-expression |
f283b08ff0c9
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1555 cc1plus: error: expected `)' */ |
f283b08ff0c9
Avoid build failure, Apple's g++-4.0.1, Mac OS 10.4.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1556 if (0 || |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1557 #define INCLUDE_BUTTON_ZERO |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1558 #define FROB(num) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1559 EQ (raw_key.keysym, Qbutton##num) || \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1560 EQ (raw_key.keysym, Qbutton##num##up) || |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1561 #include "keymap-buttons.h" |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1562 0) |
563 | 1563 invalid_operation ("Mouse-clicks can't appear in saved keyboard macros", |
1564 Qunbound); | |
428 | 1565 |
934 | 1566 XSET_EVENT_CHANNEL (event, Vselected_console); |
1567 XSET_EVENT_TYPE (event, key_press_event); | |
1204 | 1568 XSET_EVENT_KEY_KEYSYM (event, raw_key.keysym); |
1569 XSET_EVENT_KEY_MODIFIERS (event, KEY_DATA_MODIFIERS (&raw_key)); | |
428 | 1570 } |
1571 | |
1572 | |
1573 int | |
1204 | 1574 event_matches_key_specifier_p (Lisp_Object event, Lisp_Object key_specifier) |
428 | 1575 { |
446 | 1576 Lisp_Object event2 = Qnil; |
428 | 1577 int retval; |
1578 struct gcpro gcpro1; | |
1579 | |
1204 | 1580 if (XEVENT_TYPE (event) != key_press_event || NILP (key_specifier) || |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1581 (FIXNUMP (key_specifier) && !CHAR_INTP (key_specifier))) |
428 | 1582 return 0; |
1583 | |
1584 /* if the specifier is an integer such as 27, then it should match | |
3025 | 1585 both of the events `escape' and `control ['. Calling |
1586 Fcharacter_to_event() will only match `escape'. */ | |
428 | 1587 if (CHAR_OR_CHAR_INTP (key_specifier)) |
1588 return (XCHAR_OR_CHAR_INT (key_specifier) | |
2828 | 1589 == event_to_character (event, 0, 0)); |
428 | 1590 |
1591 /* Otherwise, we cannot call event_to_character() because we may | |
1592 be dealing with non-ASCII keystrokes. In any case, if I ask | |
3025 | 1593 for `control [' then I should get exactly that, and not |
1594 `escape'. | |
1595 | |
1596 However, we have to behave differently on TTY's, where `control [' | |
1597 is silently converted into `escape' by the keyboard driver. | |
428 | 1598 In this case, ASCII is the only thing we know about, so we have |
1599 to compare the ASCII values. */ | |
1600 | |
1601 GCPRO1 (event2); | |
1204 | 1602 if (EVENTP (key_specifier)) |
1603 event2 = Fcopy_event (key_specifier, Qnil); | |
1604 else | |
1605 event2 = Fcharacter_to_event (key_specifier, Qnil, Qnil, Qnil); | |
428 | 1606 if (XEVENT (event2)->event_type != key_press_event) |
1607 retval = 0; | |
1204 | 1608 else if (CONSOLE_TTY_P (XCONSOLE (XEVENT_CHANNEL (event)))) |
428 | 1609 { |
1610 int ch1, ch2; | |
1611 | |
2828 | 1612 ch1 = event_to_character (event, 0, 0); |
1613 ch2 = event_to_character (event2, 0, 0); | |
428 | 1614 retval = (ch1 >= 0 && ch2 >= 0 && ch1 == ch2); |
1615 } | |
1204 | 1616 else if (EQ (XEVENT_KEY_KEYSYM (event), XEVENT_KEY_KEYSYM (event2)) && |
1617 XEVENT_KEY_MODIFIERS (event) == XEVENT_KEY_MODIFIERS (event2)) | |
428 | 1618 retval = 1; |
1619 else | |
1620 retval = 0; | |
1621 Fdeallocate_event (event2); | |
1622 UNGCPRO; | |
1623 return retval; | |
1624 } | |
1625 | |
1626 static int | |
934 | 1627 meta_prefix_char_p (const Lisp_Key_Data *key) |
428 | 1628 { |
934 | 1629 Lisp_Object event = Fmake_event (Qnil, Qnil); |
1630 struct gcpro gcpro1; | |
1204 | 1631 int retval; |
1632 | |
934 | 1633 GCPRO1 (event); |
1634 | |
1635 XSET_EVENT_TYPE (event, key_press_event); | |
1636 XSET_EVENT_CHANNEL (event, Vselected_console); | |
1204 | 1637 XSET_EVENT_KEY_KEYSYM (event, KEY_DATA_KEYSYM (key)); |
1638 XSET_EVENT_KEY_MODIFIERS (event, KEY_DATA_MODIFIERS (key)); | |
1639 retval = event_matches_key_specifier_p (event, Vmeta_prefix_char); | |
1640 UNGCPRO; | |
1641 return retval; | |
428 | 1642 } |
1643 | |
1644 DEFUN ("event-matches-key-specifier-p", Fevent_matches_key_specifier_p, 2, 2, 0, /* | |
1645 Return non-nil if EVENT matches KEY-SPECIFIER. | |
1646 This can be useful, e.g., to determine if the user pressed `help-char' or | |
1647 `quit-char'. | |
1204 | 1648 |
1649 KEY-SPECIFIER can be a character, integer, a symbol, a list of modifiers | |
1650 and symbols, or an event. | |
1651 | |
1652 What this actually happens is this: | |
1653 | |
1654 \(1) Return no, if EVENT is not a key press event or if KEY-SPECIFIER is nil | |
1655 or an integer that cannot be converted to a character. | |
1656 | |
1657 \(2) If KEY-SPECIFIER is a character or integer, | |
1658 (event-to-character EVENT nil nil nil) is called, and the characters are | |
1659 compared to get the result. The reason for special-casing this and doing | |
1660 it this way is to ensure that, e.g., a KEY-SPECIFIER of 27 matches both | |
1661 a key-press `escape' and a key-press `control ['. #### Think about META | |
1662 argument to event-to-character. | |
1663 | |
1664 \(3) If KEY-SPECIFIER is an event, fine; else, convert to an event using | |
1665 \(character-to-event KEY-SPECIFIER nil nil nil). If EVENT is not on a TTY, | |
1666 we just compare keysyms and modifiers and return yes if both are equal. | |
1667 For TTY, we do character-level comparison by converting both to a character | |
1668 with (event-to-character ... nil nil nil) and comparing the characters. | |
1669 | |
428 | 1670 */ |
1671 (event, key_specifier)) | |
1672 { | |
1673 CHECK_LIVE_EVENT (event); | |
1204 | 1674 return (event_matches_key_specifier_p (event, key_specifier) ? Qt : Qnil); |
428 | 1675 } |
1204 | 1676 #define MACROLET(k, m) do { \ |
1677 SET_KEY_DATA_KEYSYM (returned_value, k); \ | |
1678 SET_KEY_DATA_MODIFIERS (returned_value, m); \ | |
1679 RETURN_SANS_WARNINGS; \ | |
934 | 1680 } while (0) |
428 | 1681 /* ASCII grunge. |
1682 Given a keysym, return another keysym/modifier pair which could be | |
1683 considered the same key in an ASCII world. Backspace returns ^H, for | |
1684 example. | |
1685 */ | |
1686 static void | |
934 | 1687 define_key_alternate_name (Lisp_Key_Data *key, |
1688 Lisp_Key_Data *returned_value) | |
428 | 1689 { |
934 | 1690 Lisp_Object keysym = KEY_DATA_KEYSYM (key); |
1691 int modifiers = KEY_DATA_MODIFIERS (key); | |
442 | 1692 int modifiers_sans_control = (modifiers & (~XEMACS_MOD_CONTROL)); |
1693 int modifiers_sans_meta = (modifiers & (~XEMACS_MOD_META)); | |
934 | 1694 SET_KEY_DATA_KEYSYM (returned_value, Qnil); /* By default, no "alternate" key */ |
1695 SET_KEY_DATA_MODIFIERS (returned_value, 0); | |
442 | 1696 if (modifiers_sans_meta == XEMACS_MOD_CONTROL) |
428 | 1697 { |
722 | 1698 if (EQ (keysym, QKspace)) |
428 | 1699 MACROLET (make_char ('@'), modifiers); |
1700 else if (!CHARP (keysym)) | |
1701 return; | |
1702 else switch (XCHAR (keysym)) | |
1703 { | |
1704 case '@': /* c-@ => c-space */ | |
1705 MACROLET (QKspace, modifiers); | |
1706 case 'h': /* c-h => backspace */ | |
1707 MACROLET (QKbackspace, modifiers_sans_control); | |
1708 case 'i': /* c-i => tab */ | |
1709 MACROLET (QKtab, modifiers_sans_control); | |
1710 case 'j': /* c-j => linefeed */ | |
1711 MACROLET (QKlinefeed, modifiers_sans_control); | |
1712 case 'm': /* c-m => return */ | |
1713 MACROLET (QKreturn, modifiers_sans_control); | |
1714 case '[': /* c-[ => escape */ | |
1715 MACROLET (QKescape, modifiers_sans_control); | |
1716 default: | |
1717 return; | |
1718 } | |
1719 } | |
1720 else if (modifiers_sans_meta != 0) | |
1721 return; | |
1722 else if (EQ (keysym, QKbackspace)) /* backspace => c-h */ | |
442 | 1723 MACROLET (make_char ('h'), (modifiers | XEMACS_MOD_CONTROL)); |
428 | 1724 else if (EQ (keysym, QKtab)) /* tab => c-i */ |
442 | 1725 MACROLET (make_char ('i'), (modifiers | XEMACS_MOD_CONTROL)); |
428 | 1726 else if (EQ (keysym, QKlinefeed)) /* linefeed => c-j */ |
442 | 1727 MACROLET (make_char ('j'), (modifiers | XEMACS_MOD_CONTROL)); |
428 | 1728 else if (EQ (keysym, QKreturn)) /* return => c-m */ |
442 | 1729 MACROLET (make_char ('m'), (modifiers | XEMACS_MOD_CONTROL)); |
428 | 1730 else if (EQ (keysym, QKescape)) /* escape => c-[ */ |
442 | 1731 MACROLET (make_char ('['), (modifiers | XEMACS_MOD_CONTROL)); |
428 | 1732 else |
1733 return; | |
1734 #undef MACROLET | |
1735 } | |
1736 | |
1737 static void | |
1738 ensure_meta_prefix_char_keymapp (Lisp_Object keys, int indx, | |
1739 Lisp_Object keymap) | |
1740 { | |
1741 /* This function can GC */ | |
1742 Lisp_Object new_keys; | |
1743 int i; | |
1744 Lisp_Object mpc_binding; | |
934 | 1745 Lisp_Key_Data meta_key; |
428 | 1746 if (NILP (Vmeta_prefix_char) || |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1747 (FIXNUMP (Vmeta_prefix_char) && !CHAR_INTP (Vmeta_prefix_char))) |
428 | 1748 return; |
1749 | |
1750 define_key_parser (Vmeta_prefix_char, &meta_key); | |
1751 mpc_binding = keymap_lookup_1 (keymap, &meta_key, 0); | |
1752 if (NILP (mpc_binding) || !NILP (Fkeymapp (mpc_binding))) | |
1753 return; | |
1754 | |
1755 if (indx == 0) | |
1756 new_keys = keys; | |
1757 else if (STRINGP (keys)) | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1758 new_keys = Fsubseq (keys, Qzero, make_fixnum (indx)); |
428 | 1759 else if (VECTORP (keys)) |
1760 { | |
1761 new_keys = make_vector (indx, Qnil); | |
1762 for (i = 0; i < indx; i++) | |
1763 XVECTOR_DATA (new_keys) [i] = XVECTOR_DATA (keys) [i]; | |
1764 } | |
1765 else | |
442 | 1766 { |
1767 new_keys = Qnil; | |
2500 | 1768 ABORT (); |
442 | 1769 } |
428 | 1770 |
1771 if (EQ (keys, new_keys)) | |
563 | 1772 signal_ferror_with_frob (Qinvalid_operation, mpc_binding, |
1773 "can't bind %s: %s has a non-keymap binding", | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1774 (CIbyte *) XSTRING_DATA (Fkey_description (keys)), |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1775 (CIbyte *) XSTRING_DATA (Fsingle_key_description |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1776 (Vmeta_prefix_char))); |
428 | 1777 else |
563 | 1778 signal_ferror_with_frob (Qinvalid_operation, mpc_binding, |
1779 "can't bind %s: %s %s has a non-keymap binding", | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1780 (CIbyte *) XSTRING_DATA (Fkey_description (keys)), |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1781 (CIbyte *) XSTRING_DATA (Fkey_description |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1782 (new_keys)), |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1783 (CIbyte *) XSTRING_DATA (Fsingle_key_description |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
1784 (Vmeta_prefix_char))); |
428 | 1785 } |
1786 | |
1787 DEFUN ("define-key", Fdefine_key, 3, 3, 0, /* | |
1788 Define key sequence KEYS, in KEYMAP, as DEF. | |
1789 KEYMAP is a keymap object. | |
3086 | 1790 KEYS is the key sequence to bind, described below. |
428 | 1791 DEF is anything that can be a key's definition: |
1792 nil (means key is undefined in this keymap); | |
1793 a command (a Lisp function suitable for interactive calling); | |
1794 a string or key sequence vector (treated as a keyboard macro); | |
1795 a keymap (to define a prefix key); | |
1796 a symbol; when the key is looked up, the symbol will stand for its | |
1797 function definition, that should at that time be one of the above, | |
1798 or another symbol whose function definition is used, and so on. | |
1799 a cons (STRING . DEFN), meaning that DEFN is the definition | |
1800 (DEFN should be a valid definition in its own right); | |
1801 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP. | |
1802 | |
3086 | 1803 A `key sequence' is a vector of one or more keystrokes. |
1804 A `keystroke' is a list containing a key and zero or more modifiers. The | |
1805 key must be the last element of the list. | |
1806 A `key' is a symbol corresponding to a key on the keyboard, or to a mouse | |
1807 gesture. Mouse clicks are denoted by symbols prefixed with "button", | |
1808 followed by a digit for which button, and optionally "up". Thus `button1' | |
1809 means the down-stroke and `button1up' means the up-stroke when clicking | |
1810 mouse button 1. | |
1811 A `modifier' is a symbol naming a physical key which is only "noticed" by | |
1812 XEmacs when chorded with another key. The `shift' modifier is a special | |
1813 case. You cannot use `(meta shift a)' to mean `(meta A)', since for | |
1814 characters that have ASCII equivalents, the state of the shift key is | |
1815 implicit in the keysym (a vs. A). You also cannot say `(shift =)' to mean | |
1816 `+', as that correspondence varies from keyboard to keyboard. The shift | |
1817 modifier can only be applied to keys that do not have a second keysym on the | |
1818 same key, such as `backspace' and `tab'. A mouse click may be combined with | |
1819 modifiers to create a compound "keystroke". | |
1820 | |
1821 The keys, mouse gestures, and modifiers that are available depend on your | |
1822 console and its driver. At a minimum the ASCII graphic characters will be | |
1823 available as keys, and shift, control, and meta as modifiers. | |
1824 | |
1825 To find out programmatically what a key is bound to, use `key-binding' to | |
1826 check all applicable keymaps, or `lookup-key' to check a specific keymap. | |
1827 The documentation for `key-binding' also contains a description of which | |
1828 keymaps are applicable in various situations. `where-is-internal' does | |
1829 the opposite of `key-binding', i.e. searches keymaps for the keys that | |
1830 map to a particular binding. | |
1831 | |
1832 If you are confused about why a particular key sequence is generating a | |
1833 particular binding, and looking through the keymaps doesn't help, setting | |
1834 the variable `debug-emacs-events' may help. If not, try checking | |
1835 what's in `function-key-map' and `key-translation-map'. | |
1836 | |
1837 When running under a window system, typically the repertoire of keys is | |
1838 vastly expanded. XEmacs does its best to use the names defined on each | |
1839 platform. Also, when running under a window system, XEmacs can tell the | |
1840 difference between the keystrokes control-h, control-shift-h, and backspace. | |
1841 If the symbols differ, you can bind different actions to each. For mouse | |
1842 clicks, different commands may be bound to the up and down strokes, though | |
1843 that is probably not what you want, so be careful. | |
1844 | |
1845 Variant representations: | |
1846 | |
1847 Besides the canonical representation as a vector of lists of symbols, | |
1848 `define-key' also accepts a number of abbreviations, aliases, and variants | |
1849 for convenience, compatibility, and internal use. | |
1850 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1851 A key sequence can also be the vector [remap COMMAND]; this shadows any |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1852 bindings for COMMAND in KEYMAP, using DEF instead of COMMAND. See |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1853 `command-remapping' and `remap-command'. Specify [(remap) KEYSTROKE] if |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1854 your keyboard has a key with the name `remap' and you'd like to use it as a |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1855 prefix. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1856 |
3086 | 1857 A keystroke may be represented by a key; this is treated as though it were a |
1858 list containing that key as the only element. A keystroke may also be | |
1859 represented by an event object, as returned by the `next-command-event' and | |
1860 `read-key-sequence' functions. A key sequence may be represented by a | |
1861 single keystroke; this is treated as a vector containing that keystroke as | |
1862 its only element. | |
1863 | |
1864 A key may be represented by a character or its equivalent integer code, | |
1865 if and only if it is equivalent to a character with a code in the range | |
1866 32 - 255. | |
1867 | |
1868 For backward compatibility, a key sequence may also be represented by a | |
1869 string. In this case, it represents the key sequence(s) that would | |
1870 produce that sequence of ASCII characters in a purely ASCII world. An | |
1871 alternative string representation is keyboard macro notation, which can | |
1872 be translated to the canonical representation with `kbd'. | |
1873 | |
1874 Examples: | |
1875 | |
1876 The key sequence `A' (which invokes `self-insert-command') is represented | |
1877 by all of these forms: | |
428 | 1878 A ?A 65 (A) (?A) (65) |
1879 [A] [?A] [65] [(A)] [(?A)] [(65)] | |
1880 | |
3086 | 1881 The key sequence `control-a' is represented by these forms: |
428 | 1882 (control A) (control ?A) (control 65) |
1883 [(control A)] [(control ?A)] [(control 65)] | |
3086 | 1884 |
1885 The key sequence `control-c control-a' is represented by these forms: | |
428 | 1886 [(control c) (control a)] [(control ?c) (control ?a)] |
1887 [(control 99) (control 65)] etc. | |
1888 | |
3086 | 1889 The keystroke `control-b' *may not* be represented by the number 2 (the |
1890 ASCII code for ^B) or the character `?\^B'. | |
1891 | |
1892 The `break' key may be represented only by the symbol `break'. | |
1893 | |
428 | 1894 Mouse button clicks work just like keypresses: (control button1) means |
1895 pressing the left mouse button while holding down the control key. | |
3086 | 1896 |
1897 A string containing the ASCII backspace character, "\\^H", would represent | |
1898 two key sequences: `(control h)' and `backspace'. Binding a | |
428 | 1899 command to this will actually bind both of those key sequences. Likewise |
1900 for the following pairs: | |
1901 | |
1902 control h backspace | |
1903 control i tab | |
1904 control m return | |
1905 control j linefeed | |
1906 control [ escape | |
1907 control @ control space | |
1908 | |
1909 After binding a command to two key sequences with a form like | |
1910 | |
1911 (define-key global-map "\\^X\\^I" \'command-1) | |
1912 | |
1913 it is possible to redefine only one of those sequences like so: | |
1914 | |
1915 (define-key global-map [(control x) (control i)] \'command-2) | |
1916 (define-key global-map [(control x) tab] \'command-3) | |
1917 */ | |
1918 (keymap, keys, def)) | |
1919 { | |
1920 /* This function can GC */ | |
1921 int idx; | |
1922 int metized = 0; | |
1923 int len; | |
1924 int ascii_hack; | |
1925 struct gcpro gcpro1, gcpro2, gcpro3; | |
1926 | |
1927 if (VECTORP (keys)) | |
1928 len = XVECTOR_LENGTH (keys); | |
1929 else if (STRINGP (keys)) | |
826 | 1930 len = string_char_length (keys); |
428 | 1931 else if (CHAR_OR_CHAR_INTP (keys) || SYMBOLP (keys) || CONSP (keys)) |
1932 { | |
1933 if (!CONSP (keys)) keys = list1 (keys); | |
1934 len = 1; | |
1935 keys = make_vector (1, keys); /* this is kinda sleazy. */ | |
1936 } | |
1937 else | |
1938 { | |
1939 keys = wrong_type_argument (Qsequencep, keys); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1940 len = XFIXNUM (Flength (keys)); |
428 | 1941 } |
1942 if (len == 0) | |
1943 return Qnil; | |
1944 | |
1945 GCPRO3 (keymap, keys, def); | |
1946 | |
1947 /* ASCII grunge. | |
1948 When the user defines a key which, in a strictly ASCII world, would be | |
1949 produced by two different keys (^J and linefeed, or ^H and backspace, | |
1950 for example) then the binding will be made for both keysyms. | |
1951 | |
1952 This is done if the user binds a command to a string, as in | |
3086 | 1953 (define-key map "\^H" 'something), but not when using the canonical |
1954 syntax (define-key map '(control h) 'something). | |
428 | 1955 */ |
1956 ascii_hack = (STRINGP (keys)); | |
1957 | |
1958 keymap = get_keymap (keymap, 1, 1); | |
1959 | |
5681
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
1960 /* Allow access to any keys named remap, use our uninterned symbol. For |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
1961 compatibility, don't sanity-check (aref KEYS 1) or DEF. */ |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
1962 if (2 == len && VECTORP (keys) && EQ (Qremap, XVECTOR_DATA (keys) [0])) |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
1963 { |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
1964 RETURN_UNGCPRO (remap_command (keymap, XVECTOR_DATA (keys) [1], def)); |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
1965 } |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
1966 |
428 | 1967 idx = 0; |
1968 while (1) | |
1969 { | |
1970 Lisp_Object c; | |
934 | 1971 Lisp_Key_Data raw_key1; |
1972 Lisp_Key_Data raw_key2; | |
428 | 1973 if (STRINGP (keys)) |
867 | 1974 c = make_char (string_ichar (keys, idx)); |
428 | 1975 else |
1976 c = XVECTOR_DATA (keys) [idx]; | |
1977 | |
1978 define_key_parser (c, &raw_key1); | |
1979 | |
1980 if (!metized && ascii_hack && meta_prefix_char_p (&raw_key1)) | |
1981 { | |
1982 if (idx == (len - 1)) | |
1983 { | |
1984 /* This is a hack to prevent a binding for the meta-prefix-char | |
1985 from being made in a map which already has a non-empty "meta" | |
1986 submap. That is, we can't let both "escape" and "meta" have | |
1987 a binding in the same keymap. This implies that the idiom | |
1988 (define-key my-map "\e" my-escape-map) | |
1989 (define-key my-escape-map "a" 'my-command) | |
1990 no longer works. That's ok. Instead the luser should do | |
1991 (define-key my-map "\ea" 'my-command) | |
1992 or, more correctly | |
1993 (define-key my-map "\M-a" 'my-command) | |
1994 and then perhaps | |
1995 (defvar my-escape-map (lookup-key my-map "\e")) | |
1996 if the luser really wants the map in a variable. | |
1997 */ | |
440 | 1998 Lisp_Object meta_map; |
428 | 1999 struct gcpro ngcpro1; |
2000 | |
2001 NGCPRO1 (c); | |
442 | 2002 meta_map = Fgethash (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META), |
440 | 2003 XKEYMAP (keymap)->table, Qnil); |
2004 if (!NILP (meta_map) | |
2005 && keymap_fullness (meta_map) != 0) | |
563 | 2006 invalid_operation_2 |
440 | 2007 ("Map contains meta-bindings, can't bind", |
2008 Fsingle_key_description (Vmeta_prefix_char), keymap); | |
428 | 2009 NUNGCPRO; |
2010 } | |
2011 else | |
2012 { | |
2013 metized = 1; | |
2014 idx++; | |
2015 continue; | |
2016 } | |
2017 } | |
2018 | |
2019 if (ascii_hack) | |
2020 define_key_alternate_name (&raw_key1, &raw_key2); | |
2021 else | |
2022 { | |
2023 raw_key2.keysym = Qnil; | |
2024 raw_key2.modifiers = 0; | |
2025 } | |
2026 | |
2027 if (metized) | |
2028 { | |
442 | 2029 raw_key1.modifiers |= XEMACS_MOD_META; |
2030 raw_key2.modifiers |= XEMACS_MOD_META; | |
428 | 2031 metized = 0; |
2032 } | |
2033 | |
2034 /* This crap is to make sure that someone doesn't bind something like | |
2035 "C-x M-a" while "C-x ESC" has a non-keymap binding. */ | |
442 | 2036 if (raw_key1.modifiers & XEMACS_MOD_META) |
428 | 2037 ensure_meta_prefix_char_keymapp (keys, idx, keymap); |
2038 | |
2039 if (++idx == len) | |
2040 { | |
2041 keymap_store (keymap, &raw_key1, def); | |
2042 if (ascii_hack && !NILP (raw_key2.keysym)) | |
2043 keymap_store (keymap, &raw_key2, def); | |
2044 UNGCPRO; | |
2045 return def; | |
2046 } | |
2047 | |
2048 { | |
2049 Lisp_Object cmd; | |
2050 struct gcpro ngcpro1; | |
2051 NGCPRO1 (c); | |
2052 | |
2053 cmd = keymap_lookup_1 (keymap, &raw_key1, 0); | |
2054 if (NILP (cmd)) | |
2055 { | |
2056 cmd = Fmake_sparse_keymap (Qnil); | |
2057 XKEYMAP (cmd)->name /* for debugging */ | |
2058 = list2 (make_key_description (&raw_key1, 1), keymap); | |
2059 keymap_store (keymap, &raw_key1, cmd); | |
2060 } | |
2061 if (NILP (Fkeymapp (cmd))) | |
563 | 2062 sferror_2 ("Invalid prefix keys in sequence", |
428 | 2063 c, keys); |
2064 | |
2065 if (ascii_hack && !NILP (raw_key2.keysym) && | |
2066 NILP (keymap_lookup_1 (keymap, &raw_key2, 0))) | |
2067 keymap_store (keymap, &raw_key2, cmd); | |
2068 | |
2069 keymap = get_keymap (cmd, 1, 1); | |
2070 NUNGCPRO; | |
2071 } | |
2072 } | |
2073 } | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2074 |
5681
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2075 static Lisp_Object |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2076 remap_command (Lisp_Object keymap, Lisp_Object old, Lisp_Object new_) |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2077 { |
5681
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2078 Lisp_Key_Data parsed; |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2079 Lisp_Object cmd; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2080 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2081 define_key_parser (Qxemacs_command_remapping, &parsed); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2082 cmd = keymap_lookup_1 (keymap, &parsed, 0); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2083 if (NILP (cmd)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2084 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2085 cmd = Fmake_sparse_keymap (Qnil); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2086 XKEYMAP (cmd)->name /* for debugging */ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2087 = list2 (make_key_description (&parsed, 1), keymap); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2088 keymap_store (keymap, &parsed, cmd); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2089 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2090 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2091 assert (!NILP (Fkeymapp (cmd))); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2092 define_key_parser (old, &parsed); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2093 keymap_store (cmd, &parsed, new_); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2094 return new_; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2095 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2096 |
5681
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2097 |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2098 DEFUN ("remap-command", Fremap_command, 3, 3, 0, /* |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2099 Ensure that NEW is called when previously OLD would be, in KEYMAP. |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2100 |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2101 NEW and OLD are both command symbols. KEYMAP is a keymap object. |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2102 |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2103 This is equivalent to `(define-key KEYMAP [remap OLD] NEW])'. See also |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2104 `substitute-key-definition', an older way of doing a similar thing. |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2105 */ |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2106 (keymap, old, new_)) |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2107 { |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2108 keymap = get_keymap (keymap, 1, 1); |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2109 CHECK_COMMAND (old); |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2110 CHECK_COMMAND (new_); |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2111 |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2112 return remap_command (keymap, old, new_); |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2113 } |
4af5a3435c94
Don't sanity-check commands with (define-key KEYMAP [remap COMMAND1] COMMAND2).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5679
diff
changeset
|
2114 |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2115 static Lisp_Object |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2116 command_remapping (Lisp_Object definition, int nmaps, Lisp_Object *maps) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2117 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2118 Lisp_Object remapping = Qnil; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2119 Lisp_Object keys[2] = { Qxemacs_command_remapping, definition }; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2120 int jj; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2121 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2122 for (jj = 0; jj < nmaps; jj++) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2123 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2124 remapping = lookup_keys (maps[jj], countof (keys), keys, 0); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2125 if (!NILP (remapping) && !FIXNUMP (remapping)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2126 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2127 return remapping; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2128 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2129 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2130 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2131 return Qnil; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2132 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2133 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2134 DEFUN ("command-remapping", Fcommand_remapping, 1, 3, 0, /* |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2135 Return the remapping for command COMMAND. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2136 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2137 Return nil if COMMAND is not remapped (or not a symbol). The remapping is |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2138 the command that is executed when some key sequence in the relevant keymaps |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2139 would normally execute COMMAND, but this has been intercepted by |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2140 `remap-command' or the [remap COMMAND] syntax for KEYS in `define-key'. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2141 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2142 If the optional argument POSITION is non-nil, it specifies an event, and the |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2143 remapping occurs in the keymaps associated with it. It can also be a number |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2144 or marker, in which case the keymap properties at the specified buffer |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2145 position instead of point are used. The KEYMAPS argument is ignored if |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2146 POSITION is non-nil. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2147 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2148 If the optional argument KEYMAPS is non-nil, it should be a list of |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2149 keymaps to search for command remapping. Otherwise, search for the |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2150 remapping in all currently active keymaps. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2151 */ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2152 (command, position, keymaps)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2153 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2154 Lisp_Object maps[100]; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2155 Lisp_Object *gubbish = maps; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2156 int nmaps, maps_count = countof (maps); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2157 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2158 CHECK_COMMAND (command); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2159 CHECK_LIST (keymaps); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2160 CHECK_REMAPPING_POSITION (position); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2161 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2162 /* Get keymaps as an array */ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2163 if (NILP (keymaps) || !NILP (position)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2164 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2165 nmaps = get_relevant_keymaps (Qnil, position, maps_count, gubbish); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2166 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2167 else |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2168 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2169 Elemcount jj = 0; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2170 nmaps = XFIXNUM (Flength (keymaps)); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2171 if (nmaps > maps_count) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2172 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2173 gubbish = alloca_array (Lisp_Object, nmaps); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2174 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2175 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2176 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2177 LIST_LOOP_2 (elt, keymaps) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2178 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2179 gubbish[jj++] = elt; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2180 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2181 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2182 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2183 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2184 if (nmaps > maps_count) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2185 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2186 gubbish = alloca_array (Lisp_Object, nmaps); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2187 nmaps = get_relevant_keymaps (Qnil, position, nmaps, gubbish); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2188 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2189 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2190 return command_remapping (command, nmaps, gubbish); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2191 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2192 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2193 struct commands_remapped_to_closure |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2194 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2195 Lisp_Object command; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2196 Lisp_Object result; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2197 }; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2198 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2199 static void |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2200 commands_remapped_to_mapper (const Lisp_Key_Data *key, Lisp_Object binding, |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2201 void *data) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2202 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2203 struct commands_remapped_to_closure *crtc |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2204 = (struct commands_remapped_to_closure *) data; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2205 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2206 if (EQ (binding, crtc->command)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2207 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2208 crtc->result = Fcons (key->keysym, crtc->result); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2209 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2210 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2211 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2212 static Lisp_Object |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2213 commands_remapped_to_traverser (Lisp_Object k, void *arg) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2214 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2215 Lisp_Object remapping |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2216 = lookup_keys (k, 1, &Qxemacs_command_remapping, 0); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2217 if (KEYMAPP (remapping)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2218 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2219 map_keymap (XKEYMAP (remapping)->table, 0, commands_remapped_to_mapper, |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2220 arg); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2221 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2222 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2223 return Qnil; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2224 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2225 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2226 DEFUN ("commands-remapped-to", Fcommands_remapped_to, 1, 3, 0, /* |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2227 Return a list of symbols for which COMMAND is their remapping in KEYMAPS. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2228 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2229 This is the inverse operation of `command-remapping', which see. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2230 */ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2231 (command, keymaps, position)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2232 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2233 Lisp_Object maps[100]; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2234 Lisp_Object *gubbish = maps; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2235 int nmaps, maps_count = countof (maps), jj; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2236 struct commands_remapped_to_closure closure = { command, Qnil }; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2237 struct gcpro gcpro1; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2238 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2239 CHECK_COMMAND (command); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2240 CHECK_LIST (keymaps); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2241 CHECK_REMAPPING_POSITION (position); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2242 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2243 /* Get keymaps as an array */ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2244 if (NILP (keymaps) || !NILP (position)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2245 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2246 nmaps = get_relevant_keymaps (Qnil, position, maps_count, gubbish); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2247 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2248 else |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2249 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2250 jj = 0; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2251 nmaps = XFIXNUM (Flength (keymaps)); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2252 if (nmaps > maps_count) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2253 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2254 gubbish = alloca_array (Lisp_Object, nmaps); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2255 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2256 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2257 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2258 LIST_LOOP_2 (elt, keymaps) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2259 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2260 gubbish[jj++] = elt; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2261 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2262 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2263 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2264 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2265 if (nmaps > maps_count) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2266 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2267 gubbish = alloca_array (Lisp_Object, nmaps); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2268 nmaps = get_relevant_keymaps (Qnil, position, nmaps, gubbish); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2269 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2270 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2271 GCPRO1 (closure.result); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2272 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2273 for (jj = 0; jj < nmaps; jj++) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2274 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2275 traverse_keymaps (maps[jj], Qnil, commands_remapped_to_traverser, |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2276 (void *) (&closure)); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2277 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2278 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2279 RETURN_UNGCPRO (closure.result); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2280 } |
428 | 2281 |
2282 /************************************************************************/ | |
2283 /* Looking up keys in keymaps */ | |
2284 /************************************************************************/ | |
2285 | |
2286 /* We need a very fast (i.e., non-consing) version of lookup-key in order | |
2287 to make where-is-internal really fly. */ | |
2288 | |
2289 struct raw_lookup_key_mapper_closure | |
2290 { | |
2291 int remaining; | |
934 | 2292 const Lisp_Key_Data *raw_keys; |
428 | 2293 int raw_keys_count; |
2294 int keys_so_far; | |
2295 int accept_default; | |
2296 }; | |
2297 | |
2298 static Lisp_Object raw_lookup_key_mapper (Lisp_Object k, void *); | |
2299 | |
2300 /* Caller should gc-protect args (keymaps may autoload) */ | |
2301 static Lisp_Object | |
2302 raw_lookup_key (Lisp_Object keymap, | |
934 | 2303 const Lisp_Key_Data *raw_keys, int raw_keys_count, |
428 | 2304 int keys_so_far, int accept_default) |
2305 { | |
2306 /* This function can GC */ | |
2307 struct raw_lookup_key_mapper_closure c; | |
2308 c.remaining = raw_keys_count - 1; | |
2309 c.raw_keys = raw_keys; | |
2310 c.raw_keys_count = raw_keys_count; | |
2311 c.keys_so_far = keys_so_far; | |
2312 c.accept_default = accept_default; | |
2313 | |
2314 return traverse_keymaps (keymap, Qnil, raw_lookup_key_mapper, &c); | |
2315 } | |
2316 | |
2317 static Lisp_Object | |
2318 raw_lookup_key_mapper (Lisp_Object k, void *arg) | |
2319 { | |
2320 /* This function can GC */ | |
2321 struct raw_lookup_key_mapper_closure *c = | |
2322 (struct raw_lookup_key_mapper_closure *) arg; | |
2323 int accept_default = c->accept_default; | |
2324 int remaining = c->remaining; | |
2325 int keys_so_far = c->keys_so_far; | |
934 | 2326 const Lisp_Key_Data *raw_keys = c->raw_keys; |
428 | 2327 Lisp_Object cmd; |
2328 | |
2329 if (! meta_prefix_char_p (&(raw_keys[0]))) | |
2330 { | |
2331 /* Normal case: every case except the meta-hack (see below). */ | |
2332 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default); | |
2333 | |
2334 if (remaining == 0) | |
2335 /* Return whatever we found if we're out of keys */ | |
2336 ; | |
2337 else if (NILP (cmd)) | |
2338 /* Found nothing (though perhaps parent map may have binding) */ | |
2339 ; | |
2340 else if (NILP (Fkeymapp (cmd))) | |
2341 /* Didn't find a keymap, and we have more keys. | |
2342 * Return a fixnum to indicate that keys were too long. | |
2343 */ | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
2344 cmd = make_fixnum (keys_so_far + 1); |
428 | 2345 else |
2346 cmd = raw_lookup_key (cmd, raw_keys + 1, remaining, | |
2347 keys_so_far + 1, accept_default); | |
2348 } | |
2349 else | |
2350 { | |
2351 /* This is a hack so that looking up a key-sequence whose last | |
2352 * element is the meta-prefix-char will return the keymap that | |
2353 * the "meta" keys are stored in, if there is no binding for | |
2354 * the meta-prefix-char (and if this map has a "meta" submap). | |
2355 * If this map doesn't have a "meta" submap, then the | |
2356 * meta-prefix-char is looked up just like any other key. | |
2357 */ | |
2358 if (remaining == 0) | |
2359 { | |
2360 /* First look for the prefix-char directly */ | |
2361 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default); | |
2362 if (NILP (cmd)) | |
2363 { | |
2364 /* Do kludgy return of the meta-map */ | |
442 | 2365 cmd = Fgethash (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META), |
428 | 2366 XKEYMAP (k)->table, Qnil); |
2367 } | |
2368 } | |
2369 else | |
2370 { | |
2371 /* Search for the prefix-char-prefixed sequence directly */ | |
2372 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default); | |
2373 cmd = get_keymap (cmd, 0, 1); | |
2374 if (!NILP (cmd)) | |
2375 cmd = raw_lookup_key (cmd, raw_keys + 1, remaining, | |
2376 keys_so_far + 1, accept_default); | |
442 | 2377 else if ((raw_keys[1].modifiers & XEMACS_MOD_META) == 0) |
428 | 2378 { |
934 | 2379 Lisp_Key_Data metified; |
428 | 2380 metified.keysym = raw_keys[1].keysym; |
442 | 2381 metified.modifiers = raw_keys[1].modifiers | |
2382 (unsigned char) XEMACS_MOD_META; | |
428 | 2383 |
2384 /* Search for meta-next-char sequence directly */ | |
2385 cmd = keymap_lookup_1 (k, &metified, accept_default); | |
2386 if (remaining == 1) | |
2387 ; | |
2388 else | |
2389 { | |
2390 cmd = get_keymap (cmd, 0, 1); | |
2391 if (!NILP (cmd)) | |
2392 cmd = raw_lookup_key (cmd, raw_keys + 2, remaining - 1, | |
2393 keys_so_far + 2, | |
2394 accept_default); | |
2395 } | |
2396 } | |
2397 } | |
2398 } | |
2399 if (accept_default && NILP (cmd)) | |
2400 cmd = XKEYMAP (k)->default_binding; | |
2401 return cmd; | |
2402 } | |
2403 | |
2404 /* Value is number if `keys' is too long; NIL if valid but has no definition.*/ | |
2405 /* Caller should gc-protect arguments */ | |
2406 static Lisp_Object | |
2407 lookup_keys (Lisp_Object keymap, int nkeys, Lisp_Object *keys, | |
2408 int accept_default) | |
2409 { | |
2410 /* This function can GC */ | |
934 | 2411 Lisp_Key_Data kkk[20]; |
2412 Lisp_Key_Data *raw_keys; | |
428 | 2413 int i; |
2414 | |
2415 if (nkeys == 0) | |
2416 return Qnil; | |
2417 | |
438 | 2418 if (nkeys < countof (kkk)) |
428 | 2419 raw_keys = kkk; |
2420 else | |
934 | 2421 raw_keys = alloca_array (Lisp_Key_Data, nkeys); |
428 | 2422 |
2423 for (i = 0; i < nkeys; i++) | |
2424 { | |
2425 define_key_parser (keys[i], &(raw_keys[i])); | |
2426 } | |
2427 return raw_lookup_key (keymap, raw_keys, nkeys, 0, accept_default); | |
2428 } | |
2429 | |
2430 static Lisp_Object | |
2431 lookup_events (Lisp_Object event_head, int nmaps, Lisp_Object keymaps[], | |
2432 int accept_default) | |
2433 { | |
2434 /* This function can GC */ | |
934 | 2435 Lisp_Key_Data kkk[20]; |
428 | 2436 Lisp_Object event; |
2437 | |
2438 int nkeys; | |
934 | 2439 Lisp_Key_Data *raw_keys; |
428 | 2440 Lisp_Object tem = Qnil; |
2441 struct gcpro gcpro1, gcpro2; | |
2442 int iii; | |
2443 | |
2444 CHECK_LIVE_EVENT (event_head); | |
2445 | |
2446 nkeys = event_chain_count (event_head); | |
2447 | |
438 | 2448 if (nkeys < countof (kkk)) |
428 | 2449 raw_keys = kkk; |
2450 else | |
934 | 2451 raw_keys = alloca_array (Lisp_Key_Data, nkeys); |
428 | 2452 |
2453 nkeys = 0; | |
2454 EVENT_CHAIN_LOOP (event, event_head) | |
2455 define_key_parser (event, &(raw_keys[nkeys++])); | |
2456 GCPRO2 (keymaps[0], event_head); | |
2457 gcpro1.nvars = nmaps; | |
2458 /* ####raw_keys[].keysym slots aren't gc-protected. We rely (but shouldn't) | |
2459 * on somebody else somewhere (obarray) having a pointer to all keysyms. */ | |
2460 for (iii = 0; iii < nmaps; iii++) | |
2461 { | |
2462 tem = raw_lookup_key (keymaps[iii], raw_keys, nkeys, 0, | |
2463 accept_default); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
2464 if (FIXNUMP (tem)) |
428 | 2465 { |
2466 /* Too long in some local map means don't look at global map */ | |
2467 tem = Qnil; | |
2468 break; | |
2469 } | |
2470 else if (!NILP (tem)) | |
2471 break; | |
2472 } | |
2473 UNGCPRO; | |
2474 return tem; | |
2475 } | |
2476 | |
2477 DEFUN ("lookup-key", Flookup_key, 2, 3, 0, /* | |
2478 In keymap KEYMAP, look up key-sequence KEYS. Return the definition. | |
2479 Nil is returned if KEYS is unbound. See documentation of `define-key' | |
2480 for valid key definitions and key-sequence specifications. | |
2481 A number is returned if KEYS is "too long"; that is, the leading | |
2482 characters fail to be a valid sequence of prefix characters in KEYMAP. | |
444 | 2483 The number is how many key strokes at the front of KEYS it takes to |
2484 reach a non-prefix command. | |
428 | 2485 */ |
2486 (keymap, keys, accept_default)) | |
2487 { | |
2488 /* This function can GC */ | |
2489 if (VECTORP (keys)) | |
2490 return lookup_keys (keymap, | |
2491 XVECTOR_LENGTH (keys), | |
2492 XVECTOR_DATA (keys), | |
2493 !NILP (accept_default)); | |
2494 else if (SYMBOLP (keys) || CHAR_OR_CHAR_INTP (keys) || CONSP (keys)) | |
2495 return lookup_keys (keymap, 1, &keys, !NILP (accept_default)); | |
2496 else if (STRINGP (keys)) | |
2497 { | |
826 | 2498 int length = string_char_length (keys); |
428 | 2499 int i; |
934 | 2500 Lisp_Key_Data *raw_keys = alloca_array (Lisp_Key_Data, length); |
428 | 2501 if (length == 0) |
2502 return Qnil; | |
2503 | |
2504 for (i = 0; i < length; i++) | |
2505 { | |
867 | 2506 Ichar n = string_ichar (keys, i); |
428 | 2507 define_key_parser (make_char (n), &(raw_keys[i])); |
2508 } | |
2509 return raw_lookup_key (keymap, raw_keys, length, 0, | |
2510 !NILP (accept_default)); | |
2511 } | |
2512 else | |
2513 { | |
2514 keys = wrong_type_argument (Qsequencep, keys); | |
2515 return Flookup_key (keymap, keys, accept_default); | |
2516 } | |
2517 } | |
2518 | |
2519 /* Given a key sequence, returns a list of keymaps to search for bindings. | |
2520 Does all manner of semi-hairy heuristics, like looking in the current | |
2521 buffer's map before looking in the global map and looking in the local | |
2522 map of the buffer in which the mouse was clicked in event0 is a click. | |
2523 | |
2524 It would be kind of nice if this were in Lisp so that this semi-hairy | |
2525 semi-heuristic command-lookup behavior could be readily understood and | |
2526 customised. However, this needs to be pretty fast, or performance of | |
2527 keyboard macros goes to shit; putting this in lisp slows macros down | |
2528 2-3x. And they're already slower than v18 by 5-6x. | |
2529 */ | |
2530 | |
2531 struct relevant_maps | |
2532 { | |
2533 int nmaps; | |
647 | 2534 int max_maps; |
428 | 2535 Lisp_Object *maps; |
2536 struct gcpro *gcpro; | |
2537 }; | |
2538 | |
2539 static void get_relevant_extent_keymaps (Lisp_Object pos, | |
2540 Lisp_Object buffer_or_string, | |
2541 Lisp_Object glyph, | |
2542 struct relevant_maps *closure); | |
2543 static void get_relevant_minor_maps (Lisp_Object buffer, | |
2544 struct relevant_maps *closure); | |
2545 | |
2546 static void | |
2547 relevant_map_push (Lisp_Object map, struct relevant_maps *closure) | |
2548 { | |
647 | 2549 int nmaps = closure->nmaps; |
428 | 2550 |
2551 if (!KEYMAPP (map)) | |
2552 return; | |
2553 closure->nmaps = nmaps + 1; | |
2554 if (nmaps < closure->max_maps) | |
2555 { | |
2556 closure->maps[nmaps] = map; | |
2557 closure->gcpro->nvars = nmaps; | |
2558 } | |
2559 } | |
2560 | |
2561 static int | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2562 get_relevant_keymaps (Lisp_Object keys, Lisp_Object position, int max_maps, |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2563 Lisp_Object maps[]) |
428 | 2564 { |
2565 /* This function can GC */ | |
2566 Lisp_Object terminal = Qnil; | |
2567 struct gcpro gcpro1; | |
2568 struct relevant_maps closure; | |
2569 struct console *con; | |
2570 | |
2571 GCPRO1 (*maps); | |
2572 gcpro1.nvars = 0; | |
2573 closure.nmaps = 0; | |
2574 closure.max_maps = max_maps; | |
2575 closure.maps = maps; | |
2576 closure.gcpro = &gcpro1; | |
2577 | |
2578 if (EVENTP (keys)) | |
2579 terminal = event_chain_tail (keys); | |
2580 else if (VECTORP (keys)) | |
2581 { | |
2582 int len = XVECTOR_LENGTH (keys); | |
2583 if (len > 0) | |
2584 terminal = XVECTOR_DATA (keys)[len - 1]; | |
2585 } | |
2586 | |
2587 if (EVENTP (terminal)) | |
2588 { | |
2589 CHECK_LIVE_EVENT (terminal); | |
2590 con = event_console_or_selected (terminal); | |
2591 } | |
2592 else | |
2593 con = XCONSOLE (Vselected_console); | |
2594 | |
2595 if (KEYMAPP (con->overriding_terminal_local_map) | |
2596 || KEYMAPP (Voverriding_local_map)) | |
2597 { | |
2598 if (KEYMAPP (con->overriding_terminal_local_map)) | |
2599 relevant_map_push (con->overriding_terminal_local_map, &closure); | |
2600 if (KEYMAPP (Voverriding_local_map)) | |
2601 relevant_map_push (Voverriding_local_map, &closure); | |
2602 } | |
2603 else if (!EVENTP (terminal) | |
2604 || (XEVENT (terminal)->event_type != button_press_event | |
2605 && XEVENT (terminal)->event_type != button_release_event)) | |
2606 { | |
793 | 2607 Lisp_Object tem = wrap_buffer (current_buffer); |
2608 | |
428 | 2609 /* It's not a mouse event; order of keymaps searched is: |
2610 o keymap of any/all extents under the mouse | |
2611 o minor-mode maps | |
2612 o local-map of current-buffer | |
771 | 2613 o global-tty-map or global-window-system-map |
428 | 2614 o global-map |
2615 */ | |
2616 /* The terminal element of the lookup may be nil or a keysym. | |
2617 In those cases we don't want to check for an extent | |
2618 keymap. */ | |
2619 if (EVENTP (terminal)) | |
2620 { | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
2621 get_relevant_extent_keymaps (make_fixnum (BUF_PT (current_buffer)), |
428 | 2622 tem, Qnil, &closure); |
2623 } | |
2624 get_relevant_minor_maps (tem, &closure); | |
2625 | |
2626 tem = current_buffer->keymap; | |
2627 if (!NILP (tem)) | |
2628 relevant_map_push (tem, &closure); | |
2629 } | |
2630 #ifdef HAVE_WINDOW_SYSTEM | |
2631 else | |
2632 { | |
2633 /* It's a mouse event; order of keymaps searched is: | |
2634 o vertical-divider-map, if event is over a divider | |
2635 o local-map of mouse-grabbed-buffer | |
2636 o keymap of any/all extents under the mouse | |
2637 if the mouse is over a modeline: | |
2638 o modeline-map of buffer corresponding to that modeline | |
2639 o else, local-map of buffer under the mouse | |
2640 o minor-mode maps | |
2641 o local-map of current-buffer | |
771 | 2642 o global-tty-map or global-window-system-map |
428 | 2643 o global-map |
2644 */ | |
2645 Lisp_Object window = Fevent_window (terminal); | |
2646 | |
2647 if (!NILP (Fevent_over_vertical_divider_p (terminal))) | |
2648 { | |
2649 if (KEYMAPP (Vvertical_divider_map)) | |
2650 relevant_map_push (Vvertical_divider_map, &closure); | |
2651 } | |
2652 | |
2653 if (BUFFERP (Vmouse_grabbed_buffer)) | |
2654 { | |
2655 Lisp_Object map = XBUFFER (Vmouse_grabbed_buffer)->keymap; | |
2656 | |
2657 get_relevant_minor_maps (Vmouse_grabbed_buffer, &closure); | |
2658 if (!NILP (map)) | |
2659 relevant_map_push (map, &closure); | |
2660 } | |
2661 | |
2662 if (!NILP (window)) | |
2663 { | |
2664 Lisp_Object buffer = Fwindow_buffer (window); | |
2665 | |
2666 if (!NILP (buffer)) | |
2667 { | |
2668 if (!NILP (Fevent_over_modeline_p (terminal))) | |
2669 { | |
2670 Lisp_Object map = symbol_value_in_buffer (Qmodeline_map, | |
2671 buffer); | |
2672 | |
2673 get_relevant_extent_keymaps | |
2674 (Fevent_modeline_position (terminal), | |
2675 XBUFFER (buffer)->generated_modeline_string, | |
438 | 2676 Fevent_glyph_extent (terminal), &closure); |
428 | 2677 |
2678 if (!UNBOUNDP (map) && !NILP (map)) | |
2679 relevant_map_push (get_keymap (map, 1, 1), &closure); | |
2680 } | |
2681 else | |
2682 { | |
2683 get_relevant_extent_keymaps (Fevent_point (terminal), buffer, | |
2684 Fevent_glyph_extent (terminal), | |
2685 &closure); | |
2686 } | |
2687 | |
2688 if (!EQ (buffer, Vmouse_grabbed_buffer)) /* already pushed */ | |
2689 { | |
2690 Lisp_Object map = XBUFFER (buffer)->keymap; | |
2691 | |
2692 get_relevant_minor_maps (buffer, &closure); | |
2693 if (!NILP(map)) | |
2694 relevant_map_push (map, &closure); | |
2695 } | |
2696 } | |
2697 } | |
2698 else if (!NILP (Fevent_over_toolbar_p (terminal))) | |
2699 { | |
2700 Lisp_Object map = Fsymbol_value (Qtoolbar_map); | |
2701 | |
2702 if (!UNBOUNDP (map) && !NILP (map)) | |
2703 relevant_map_push (map, &closure); | |
2704 } | |
2705 } | |
2706 #endif /* HAVE_WINDOW_SYSTEM */ | |
2707 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2708 if (FIXNUMP (position)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2709 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2710 get_relevant_extent_keymaps (position, wrap_buffer (current_buffer), |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2711 Qnil, &closure); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2712 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2713 else if (MARKERP (position) && !NILP (Fmarker_buffer (position))) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2714 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2715 get_relevant_extent_keymaps (Fmarker_position (position), |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2716 Fmarker_buffer (position), |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2717 Qnil, &closure); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2718 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2719 else if (EVENTP (position)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2720 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2721 Lisp_Object ew = Fevent_window (position); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2722 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2723 get_relevant_extent_keymaps (Fevent_point (position), |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2724 WINDOWP (ew) ? |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2725 Fwindow_buffer (Fevent_window (position)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2726 : Qnil, Qnil, &closure); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2727 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2728 else |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2729 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2730 assert (NILP (position)); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2731 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2732 |
771 | 2733 if (CONSOLE_TTY_P (con)) |
2734 relevant_map_push (Vglobal_tty_map, &closure); | |
2735 else | |
2736 relevant_map_push (Vglobal_window_system_map, &closure); | |
2737 | |
428 | 2738 { |
2739 int nmaps = closure.nmaps; | |
2740 /* Silently truncate at 100 keymaps to prevent infinite lossage */ | |
2741 if (nmaps >= max_maps && max_maps > 0) | |
2742 maps[max_maps - 1] = Vcurrent_global_map; | |
2743 else | |
2744 maps[nmaps] = Vcurrent_global_map; | |
2745 UNGCPRO; | |
2746 return nmaps + 1; | |
2747 } | |
2748 } | |
2749 | |
2750 /* Returns a set of keymaps extracted from the extents at POS in | |
2751 BUFFER_OR_STRING. The GLYPH arg, if specified, is one more extent | |
2752 to look for a keymap in, and if it has one, its keymap will be the | |
2753 first element in the list returned. This is so we can correctly | |
2754 search the keymaps associated with glyphs which may be physically | |
2755 disjoint from their extents: for example, if a glyph is out in the | |
2756 margin, we should still consult the keymap of that glyph's extent, | |
2757 which may not itself be under the mouse. | |
2758 */ | |
2759 | |
2760 static void | |
2761 get_relevant_extent_keymaps (Lisp_Object pos, Lisp_Object buffer_or_string, | |
2762 Lisp_Object glyph, | |
2763 struct relevant_maps *closure) | |
2764 { | |
2765 /* This function can GC */ | |
2766 /* the glyph keymap, if any, comes first. | |
2767 (Processing it twice is no big deal: noop.) */ | |
2768 if (!NILP (glyph)) | |
2769 { | |
2770 Lisp_Object keymap = Fextent_property (glyph, Qkeymap, Qnil); | |
2771 if (!NILP (keymap)) | |
2772 relevant_map_push (get_keymap (keymap, 1, 1), closure); | |
2773 } | |
2774 | |
2775 /* Next check the extents at the text position, if any */ | |
2776 if (!NILP (pos)) | |
2777 { | |
2778 Lisp_Object extent; | |
2779 for (extent = Fextent_at (pos, buffer_or_string, Qkeymap, Qnil, Qnil); | |
2780 !NILP (extent); | |
2781 extent = Fextent_at (pos, buffer_or_string, Qkeymap, extent, Qnil)) | |
2782 { | |
2783 Lisp_Object keymap = Fextent_property (extent, Qkeymap, Qnil); | |
2784 if (!NILP (keymap)) | |
2785 relevant_map_push (get_keymap (keymap, 1, 1), closure); | |
2786 QUIT; | |
2787 } | |
2788 } | |
2789 } | |
2790 | |
2791 static Lisp_Object | |
2792 minor_mode_keymap_predicate (Lisp_Object assoc, Lisp_Object buffer) | |
2793 { | |
2794 /* This function can GC */ | |
2795 if (CONSP (assoc)) | |
2796 { | |
2797 Lisp_Object sym = XCAR (assoc); | |
2798 if (SYMBOLP (sym)) | |
2799 { | |
2800 Lisp_Object val = symbol_value_in_buffer (sym, buffer); | |
2801 if (!NILP (val) && !UNBOUNDP (val)) | |
2802 { | |
793 | 2803 return get_keymap (XCDR (assoc), 0, 1); |
428 | 2804 } |
2805 } | |
2806 } | |
2807 return Qnil; | |
2808 } | |
2809 | |
2810 static void | |
2811 get_relevant_minor_maps (Lisp_Object buffer, struct relevant_maps *closure) | |
2812 { | |
2813 /* This function can GC */ | |
2814 Lisp_Object alist; | |
2815 | |
2816 /* Will you ever lose badly if you make this circular! */ | |
2817 for (alist = symbol_value_in_buffer (Qminor_mode_map_alist, buffer); | |
2818 CONSP (alist); | |
2819 alist = XCDR (alist)) | |
2820 { | |
2821 Lisp_Object m = minor_mode_keymap_predicate (XCAR (alist), | |
2822 buffer); | |
2823 if (!NILP (m)) relevant_map_push (m, closure); | |
2824 QUIT; | |
2825 } | |
2826 } | |
2827 | |
2828 /* #### Would map-current-keymaps be a better thing?? */ | |
2829 DEFUN ("current-keymaps", Fcurrent_keymaps, 0, 1, 0, /* | |
2830 Return a list of the current keymaps that will be searched for bindings. | |
2831 This lists keymaps such as the current local map and the minor-mode maps, | |
2832 but does not list the parents of those keymaps. | |
2833 EVENT-OR-KEYS controls which keymaps will be listed. | |
2834 If EVENT-OR-KEYS is a mouse event (or a vector whose last element is a | |
2835 mouse event), the keymaps for that mouse event will be listed (see | |
2836 `key-binding'). Otherwise, the keymaps for key presses will be listed. | |
771 | 2837 See `key-binding' for a description of which keymaps are searched in |
2838 various situations. | |
428 | 2839 */ |
2840 (event_or_keys)) | |
2841 { | |
2842 /* This function can GC */ | |
2843 struct gcpro gcpro1; | |
2844 Lisp_Object maps[100]; | |
2845 Lisp_Object *gubbish = maps; | |
2846 int nmaps; | |
2847 | |
2848 GCPRO1 (event_or_keys); | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2849 nmaps = get_relevant_keymaps (event_or_keys, Qnil, countof (maps), |
428 | 2850 gubbish); |
2851 if (nmaps > countof (maps)) | |
2852 { | |
2853 gubbish = alloca_array (Lisp_Object, nmaps); | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2854 nmaps = get_relevant_keymaps (event_or_keys, Qnil, nmaps, gubbish); |
428 | 2855 } |
2856 UNGCPRO; | |
2857 return Flist (nmaps, gubbish); | |
2858 } | |
2859 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2860 DEFUN ("key-binding", Fkey_binding, 1, 4, 0, /* |
428 | 2861 Return the binding for command KEYS in current keymaps. |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2862 |
428 | 2863 KEYS is a string, a vector of events, or a vector of key-description lists |
2864 as described in the documentation for the `define-key' function. | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2865 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2866 NO-REMAP, if non-nil, specifies that any substitutions that have been |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2867 specified by `remap-command' (or, equivalently, by `(define-key KEYMAP |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2868 \[remap OLD] NEW)') should be ignored. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2869 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2870 POSITION, if non-nil, specifies a marker (and its associated buffer) or an |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2871 integer position (in the current buffer) to examine for relevant keymaps. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2872 It can also be an event, in which case the associated buffer and position of |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2873 that event will be used. |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2874 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2875 The binding is probably a symbol with a function definition; see the |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2876 documentation for `lookup-key' for more information. |
428 | 2877 |
2878 For key-presses, the order of keymaps searched is: | |
2879 - the `keymap' property of any extent(s) at point; | |
2880 - any applicable minor-mode maps; | |
444 | 2881 - the current local map of the current-buffer; |
771 | 2882 - either `global-tty-map' or `global-window-system-map', depending on |
2883 whether the current console is a TTY or non-TTY console; | |
428 | 2884 - the current global map. |
2885 | |
2886 For mouse-clicks, the order of keymaps searched is: | |
2887 - the current-local-map of the `mouse-grabbed-buffer' if any; | |
2888 - vertical-divider-map, if the event happened over a vertical divider | |
2889 - the `keymap' property of any extent(s) at the position of the click | |
2890 (this includes modeline extents); | |
2891 - the modeline-map of the buffer corresponding to the modeline under | |
2892 the mouse (if the click happened over a modeline); | |
444 | 2893 - the value of `toolbar-map' in the current-buffer (if the click |
428 | 2894 happened over a toolbar); |
444 | 2895 - the current local map of the buffer under the mouse (does not |
428 | 2896 apply to toolbar clicks); |
2897 - any applicable minor-mode maps; | |
771 | 2898 - either `global-tty-map' or `global-window-system-map', depending on |
2899 whether the current console is a TTY or non-TTY console; | |
428 | 2900 - the current global map. |
2901 | |
2902 Note that if `overriding-local-map' or `overriding-terminal-local-map' | |
2903 is non-nil, *only* those two maps and the current global map are searched. | |
771 | 2904 |
2905 Note also that key sequences actually received from the keyboard driver | |
2906 may be processed in various ways to generate the key sequence that is | |
2907 actually looked up in the keymaps. In particular: | |
2908 | |
2909 -- Keysyms are individually passed through `keyboard-translate-table' before | |
2910 any other processing. | |
2911 -- After this, key sequences as a whole are passed through | |
2912 `key-translation-map'. | |
2913 -- The resulting key sequence is actually looked up in the keymaps. | |
2914 -- If there's no binding found, the key sequence is passed through | |
2915 `function-key-map' and looked up again. | |
2916 -- If no binding is found and `retry-undefined-key-binding-unshifted' is | |
2917 set (it usually is) and the final keysym is an uppercase character, | |
2918 we lowercase it and start over from the `key-translation-map' stage. | |
2919 -- If no binding is found and we're on MS Windows and have international | |
2920 support, we successively remap the key sequence using the keyboard layouts | |
2921 of various default locales (current language environment, user default, | |
2922 system default, US ASCII) and try again. This makes (e.g.) sequences | |
2923 such as `C-x b' work in a Russian locale, where the alphabetic keys are | |
2924 actually generating Russian characters and not the Roman letters written | |
2925 on the keycaps. (Not yet implemented) | |
2926 -- Finally, if the last keystroke matches `help-char', we automatically | |
2927 generate and display a list of possible key sequences and bindings | |
2928 given the prefix so far generated. | |
428 | 2929 */ |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2930 (keys, accept_default, no_remap, position)) |
428 | 2931 { |
2932 /* This function can GC */ | |
2933 int i; | |
2934 Lisp_Object maps[100]; | |
2935 int nmaps; | |
2936 struct gcpro gcpro1, gcpro2; | |
2937 GCPRO2 (keys, accept_default); /* get_relevant_keymaps may autoload */ | |
2938 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2939 nmaps = get_relevant_keymaps (keys, position, countof (maps), maps); |
428 | 2940 |
2941 UNGCPRO; | |
2942 | |
2943 if (EVENTP (keys)) /* unadvertised "feature" for the future */ | |
2944 return lookup_events (keys, nmaps, maps, !NILP (accept_default)); | |
2945 | |
2946 for (i = 0; i < nmaps; i++) | |
2947 { | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2948 Lisp_Object tem = Flookup_key (maps[i], keys, accept_default); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2949 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
2950 if (FIXNUMP (tem)) |
428 | 2951 { |
2952 /* Too long in some local map means don't look at global map */ | |
2953 return Qnil; | |
2954 } | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2955 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2956 if (!NILP (tem) && NILP (no_remap) && SYMBOLP (tem)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2957 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2958 Lisp_Object remap = command_remapping (tem, nmaps, maps); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2959 return NILP (remap) ? tem : remap; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
2960 } |
428 | 2961 } |
2962 return Qnil; | |
2963 } | |
2964 | |
2965 static Lisp_Object | |
2966 process_event_binding_result (Lisp_Object result) | |
2967 { | |
2968 if (EQ (result, Qundefined)) | |
3025 | 2969 /* The suppress-keymap function binds keys to `undefined' - special-case |
428 | 2970 that here, so that being bound to that has the same error-behavior as |
2971 not being defined at all. | |
2972 */ | |
2973 result = Qnil; | |
2974 if (!NILP (result)) | |
2975 { | |
2976 Lisp_Object map; | |
2977 /* Snap out possible keymap indirections */ | |
2978 map = get_keymap (result, 0, 1); | |
2979 if (!NILP (map)) | |
2980 result = map; | |
2981 } | |
2982 | |
2983 return result; | |
2984 } | |
2985 | |
2986 /* Attempts to find a command corresponding to the event-sequence | |
2987 whose head is event0 (sequence is threaded though event_next). | |
2988 | |
2989 The return value will be | |
2990 | |
2991 -- nil (there is no binding; this will also be returned | |
2992 whenever the event chain is "too long", i.e. there | |
2993 is a non-nil, non-keymap binding for a prefix of | |
2994 the event chain) | |
2995 -- a keymap (part of a command has been specified) | |
2996 -- a command (anything that satisfies `commandp'; this includes | |
2997 some symbols, lists, subrs, strings, vectors, and | |
2998 compiled-function objects) */ | |
2999 Lisp_Object | |
3000 event_binding (Lisp_Object event0, int accept_default) | |
3001 { | |
3002 /* This function can GC */ | |
5692
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3003 Lisp_Object maps[100], result; |
428 | 3004 int nmaps; |
3005 | |
3006 assert (EVENTP (event0)); | |
3007 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3008 nmaps = get_relevant_keymaps (event0, Qnil, countof (maps), maps); |
428 | 3009 if (nmaps > countof (maps)) |
3010 nmaps = countof (maps); | |
5692
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3011 |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3012 result = process_event_binding_result (lookup_events (event0, nmaps, maps, |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3013 accept_default)); |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3014 |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3015 if (!NILP (result) && SYMBOLP (result)) |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3016 { |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3017 Lisp_Object remap = command_remapping (result, nmaps, maps); |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3018 if (!NILP (remap)) |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3019 { |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3020 result = remap; |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3021 } |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3022 } |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3023 |
be87f507f510
Handle interactive command remapping a little better than 7371081ce8f7, keymap.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5691
diff
changeset
|
3024 return result; |
428 | 3025 } |
3026 | |
3027 /* like event_binding, but specify a keymap to search */ | |
3028 | |
3029 Lisp_Object | |
3030 event_binding_in (Lisp_Object event0, Lisp_Object keymap, int accept_default) | |
3031 { | |
3032 /* This function can GC */ | |
3033 if (!KEYMAPP (keymap)) | |
3034 return Qnil; | |
3035 | |
3036 return process_event_binding_result (lookup_events (event0, 1, &keymap, | |
3037 accept_default)); | |
3038 } | |
3039 | |
3040 /* Attempts to find a function key mapping corresponding to the | |
3041 event-sequence whose head is event0 (sequence is threaded through | |
3042 event_next). The return value will be the same as for event_binding(). */ | |
3043 Lisp_Object | |
3044 munging_key_map_event_binding (Lisp_Object event0, | |
3045 enum munge_me_out_the_door munge) | |
3046 { | |
3047 Lisp_Object keymap = (munge == MUNGE_ME_FUNCTION_KEY) ? | |
3048 CONSOLE_FUNCTION_KEY_MAP (event_console_or_selected (event0)) : | |
3049 Vkey_translation_map; | |
3050 | |
3051 if (NILP (keymap)) | |
3052 return Qnil; | |
3053 | |
3054 return process_event_binding_result (lookup_events (event0, 1, &keymap, 1)); | |
3055 } | |
3056 | |
3057 | |
3058 /************************************************************************/ | |
3059 /* Setting/querying the global and local maps */ | |
3060 /************************************************************************/ | |
3061 | |
3062 DEFUN ("use-global-map", Fuse_global_map, 1, 1, 0, /* | |
3063 Select KEYMAP as the global keymap. | |
3064 */ | |
3065 (keymap)) | |
3066 { | |
3067 /* This function can GC */ | |
3068 keymap = get_keymap (keymap, 1, 1); | |
3069 Vcurrent_global_map = keymap; | |
3070 return Qnil; | |
3071 } | |
3072 | |
3073 DEFUN ("use-local-map", Fuse_local_map, 1, 2, 0, /* | |
3074 Select KEYMAP as the local keymap in BUFFER. | |
3075 If KEYMAP is nil, that means no local keymap. | |
3076 If BUFFER is nil, the current buffer is assumed. | |
3077 */ | |
3078 (keymap, buffer)) | |
3079 { | |
3080 /* This function can GC */ | |
3081 struct buffer *b = decode_buffer (buffer, 0); | |
3082 if (!NILP (keymap)) | |
3083 keymap = get_keymap (keymap, 1, 1); | |
3084 | |
3085 b->keymap = keymap; | |
3086 | |
3087 return Qnil; | |
3088 } | |
3089 | |
3090 DEFUN ("current-local-map", Fcurrent_local_map, 0, 1, 0, /* | |
3091 Return BUFFER's local keymap, or nil if it has none. | |
3092 If BUFFER is nil, the current buffer is assumed. | |
3093 */ | |
3094 (buffer)) | |
3095 { | |
3096 struct buffer *b = decode_buffer (buffer, 0); | |
3097 return b->keymap; | |
3098 } | |
3099 | |
3100 DEFUN ("current-global-map", Fcurrent_global_map, 0, 0, 0, /* | |
3101 Return the current global keymap. | |
3102 */ | |
3103 ()) | |
3104 { | |
3105 return Vcurrent_global_map; | |
3106 } | |
3107 | |
3108 | |
3109 /************************************************************************/ | |
3110 /* Mapping over keymap elements */ | |
3111 /************************************************************************/ | |
3112 | |
3113 /* Since keymaps are arranged in a hierarchy, one keymap per bucky bit or | |
3114 prefix key, it's not entirely obvious what map-keymap should do, but | |
3115 what it does is: map over all keys in this map; then recursively map | |
3116 over all submaps of this map that are "bucky" submaps. This means that, | |
3117 when mapping over a keymap, it appears that "x" and "C-x" are in the | |
3118 same map, although "C-x" is really in the "control" submap of this one. | |
3119 However, since we don't recursively descend the submaps that are bound | |
3120 to prefix keys (like C-x, C-h, etc) the caller will have to recurse on | |
3121 those explicitly, if that's what they want. | |
3122 | |
3123 So the end result of this is that the bucky keymaps (the ones indexed | |
3124 under the large integers returned from MAKE_MODIFIER_HASH_KEY()) are | |
3125 invisible from elisp. They're just an implementation detail that code | |
3126 outside of this file doesn't need to know about. | |
3127 */ | |
3128 | |
3129 struct map_keymap_unsorted_closure | |
3130 { | |
934 | 3131 void (*fn) (const Lisp_Key_Data *, Lisp_Object binding, void *arg); |
428 | 3132 void *arg; |
442 | 3133 int modifiers; |
428 | 3134 }; |
3135 | |
3136 /* used by map_keymap() */ | |
3137 static int | |
3138 map_keymap_unsorted_mapper (Lisp_Object keysym, Lisp_Object value, | |
3139 void *map_keymap_unsorted_closure) | |
3140 { | |
3141 /* This function can GC */ | |
3142 struct map_keymap_unsorted_closure *closure = | |
3143 (struct map_keymap_unsorted_closure *) map_keymap_unsorted_closure; | |
442 | 3144 int modifiers = closure->modifiers; |
3145 int mod_bit; | |
428 | 3146 mod_bit = MODIFIER_HASH_KEY_BITS (keysym); |
3147 if (mod_bit != 0) | |
3148 { | |
3149 int omod = modifiers; | |
3150 closure->modifiers = (modifiers | mod_bit); | |
3151 value = get_keymap (value, 1, 0); | |
3152 elisp_maphash (map_keymap_unsorted_mapper, | |
3153 XKEYMAP (value)->table, | |
3154 map_keymap_unsorted_closure); | |
3155 closure->modifiers = omod; | |
3156 } | |
3157 else | |
3158 { | |
934 | 3159 Lisp_Key_Data key; |
428 | 3160 key.keysym = keysym; |
3161 key.modifiers = modifiers; | |
3162 ((*closure->fn) (&key, value, closure->arg)); | |
3163 } | |
3164 return 0; | |
3165 } | |
3166 | |
3167 | |
3168 struct map_keymap_sorted_closure | |
3169 { | |
3170 Lisp_Object *result_locative; | |
3171 }; | |
3172 | |
3173 /* used by map_keymap_sorted() */ | |
3174 static int | |
3175 map_keymap_sorted_mapper (Lisp_Object key, Lisp_Object value, | |
3176 void *map_keymap_sorted_closure) | |
3177 { | |
3178 struct map_keymap_sorted_closure *cl = | |
3179 (struct map_keymap_sorted_closure *) map_keymap_sorted_closure; | |
3180 Lisp_Object *list = cl->result_locative; | |
3181 *list = Fcons (Fcons (key, value), *list); | |
3182 return 0; | |
3183 } | |
3184 | |
3185 | |
3186 /* used by map_keymap_sorted(), describe_map_sort_predicate(), | |
3187 and keymap_submaps(). | |
3188 */ | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3189 static Boolint |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3190 map_keymap_sort_predicate (Lisp_Object UNUSED (pred), Lisp_Object UNUSED (key), |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3191 Lisp_Object obj1, Lisp_Object obj2) |
428 | 3192 { |
3193 /* obj1 and obj2 are conses with keysyms in their cars. Cdrs are ignored. | |
3194 */ | |
442 | 3195 int bit1, bit2; |
428 | 3196 int sym1_p = 0; |
3197 int sym2_p = 0; | |
2828 | 3198 extern Lisp_Object Qcharacter_of_keysym; |
3199 | |
428 | 3200 obj1 = XCAR (obj1); |
3201 obj2 = XCAR (obj2); | |
3202 | |
3203 if (EQ (obj1, obj2)) | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3204 return 0; |
428 | 3205 bit1 = MODIFIER_HASH_KEY_BITS (obj1); |
3206 bit2 = MODIFIER_HASH_KEY_BITS (obj2); | |
3207 | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3208 /* If either is a symbol with a Qcharacter_of_keysym property, then sort |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3209 it by that code instead of alphabetically. |
428 | 3210 */ |
3211 if (! bit1 && SYMBOLP (obj1)) | |
3212 { | |
2828 | 3213 Lisp_Object code = Fget (obj1, Qcharacter_of_keysym, Qnil); |
428 | 3214 if (CHAR_OR_CHAR_INTP (code)) |
3215 { | |
3216 obj1 = code; | |
3217 CHECK_CHAR_COERCE_INT (obj1); | |
3218 sym1_p = 1; | |
3219 } | |
3220 } | |
3221 if (! bit2 && SYMBOLP (obj2)) | |
3222 { | |
2828 | 3223 Lisp_Object code = Fget (obj2, Qcharacter_of_keysym, Qnil); |
428 | 3224 if (CHAR_OR_CHAR_INTP (code)) |
3225 { | |
3226 obj2 = code; | |
3227 CHECK_CHAR_COERCE_INT (obj2); | |
3228 sym2_p = 1; | |
3229 } | |
3230 } | |
3231 | |
3232 /* all symbols (non-ASCIIs) come after characters (ASCIIs) */ | |
3233 if (XTYPE (obj1) != XTYPE (obj2)) | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3234 return SYMBOLP (obj2); |
428 | 3235 |
3236 if (! bit1 && CHARP (obj1)) /* they're both ASCII */ | |
3237 { | |
3238 int o1 = XCHAR (obj1); | |
3239 int o2 = XCHAR (obj2); | |
3240 if (o1 == o2 && /* If one started out as a symbol and the */ | |
3241 sym1_p != sym2_p) /* other didn't, the symbol comes last. */ | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3242 return sym2_p; |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3243 |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3244 return o1 < o2; /* else just compare them */ |
428 | 3245 } |
3246 | |
3247 /* else they're both symbols. If they're both buckys, then order them. */ | |
3248 if (bit1 && bit2) | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3249 return bit1 < bit2; |
428 | 3250 |
3251 /* if only one is a bucky, then it comes later */ | |
3252 if (bit1 || bit2) | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3253 return bit2; |
428 | 3254 |
3255 /* otherwise, string-sort them. */ | |
3256 { | |
867 | 3257 Ibyte *s1 = XSTRING_DATA (XSYMBOL (obj1)->name); |
3258 Ibyte *s2 = XSTRING_DATA (XSYMBOL (obj2)->name); | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
3259 return 0 > qxestrcmp (s1, s2); |
428 | 3260 } |
3261 } | |
3262 | |
3263 | |
3264 /* used by map_keymap() */ | |
3265 static void | |
3266 map_keymap_sorted (Lisp_Object keymap_table, | |
442 | 3267 int modifiers, |
934 | 3268 void (*function) (const Lisp_Key_Data *key, |
428 | 3269 Lisp_Object binding, |
3270 void *map_keymap_sorted_closure), | |
3271 void *map_keymap_sorted_closure) | |
3272 { | |
3273 /* This function can GC */ | |
3274 struct gcpro gcpro1; | |
3275 Lisp_Object contents = Qnil; | |
3276 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
3277 if (XFIXNUM (Fhash_table_count (keymap_table)) == 0) |
428 | 3278 return; |
3279 | |
3280 GCPRO1 (contents); | |
3281 | |
3282 { | |
3283 struct map_keymap_sorted_closure c1; | |
3284 c1.result_locative = &contents; | |
3285 elisp_maphash (map_keymap_sorted_mapper, keymap_table, &c1); | |
3286 } | |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
3287 contents = list_sort (contents, map_keymap_sort_predicate, Qnil, Qidentity); |
428 | 3288 for (; !NILP (contents); contents = XCDR (contents)) |
3289 { | |
3290 Lisp_Object keysym = XCAR (XCAR (contents)); | |
3291 Lisp_Object binding = XCDR (XCAR (contents)); | |
442 | 3292 int sub_bits = MODIFIER_HASH_KEY_BITS (keysym); |
428 | 3293 if (sub_bits != 0) |
3294 map_keymap_sorted (XKEYMAP (get_keymap (binding, | |
3295 1, 1))->table, | |
3296 (modifiers | sub_bits), | |
3297 function, | |
3298 map_keymap_sorted_closure); | |
3299 else | |
3300 { | |
934 | 3301 Lisp_Key_Data k; |
428 | 3302 k.keysym = keysym; |
3303 k.modifiers = modifiers; | |
3304 ((*function) (&k, binding, map_keymap_sorted_closure)); | |
3305 } | |
3306 } | |
3307 UNGCPRO; | |
3308 } | |
3309 | |
3310 | |
3311 /* used by Fmap_keymap() */ | |
3312 static void | |
934 | 3313 map_keymap_mapper (const Lisp_Key_Data *key, |
428 | 3314 Lisp_Object binding, |
3315 void *function) | |
3316 { | |
3317 /* This function can GC */ | |
3318 Lisp_Object fn; | |
5013 | 3319 fn = GET_LISP_FROM_VOID (function); |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3320 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3321 /* Don't expose our remapping here. */ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3322 if (EQ (KEY_DATA_KEYSYM (key), Qxemacs_command_remapping)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3323 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3324 return; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3325 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3326 |
428 | 3327 call2 (fn, make_key_description (key, 1), binding); |
3328 } | |
3329 | |
3330 | |
3331 static void | |
3332 map_keymap (Lisp_Object keymap_table, int sort_first, | |
934 | 3333 void (*function) (const Lisp_Key_Data *key, |
428 | 3334 Lisp_Object binding, |
3335 void *fn_arg), | |
3336 void *fn_arg) | |
3337 { | |
3338 /* This function can GC */ | |
3339 if (sort_first) | |
3340 map_keymap_sorted (keymap_table, 0, function, fn_arg); | |
3341 else | |
3342 { | |
3343 struct map_keymap_unsorted_closure map_keymap_unsorted_closure; | |
3344 map_keymap_unsorted_closure.fn = function; | |
3345 map_keymap_unsorted_closure.arg = fn_arg; | |
3346 map_keymap_unsorted_closure.modifiers = 0; | |
3347 elisp_maphash (map_keymap_unsorted_mapper, keymap_table, | |
3348 &map_keymap_unsorted_closure); | |
3349 } | |
3350 } | |
3351 | |
3352 DEFUN ("map-keymap", Fmap_keymap, 2, 3, 0, /* | |
3353 Apply FUNCTION to each element of KEYMAP. | |
3354 FUNCTION will be called with two arguments: a key-description list, and | |
3355 the binding. The order in which the elements of the keymap are passed to | |
3356 the function is unspecified. If the function inserts new elements into | |
3357 the keymap, it may or may not be called with them later. No element of | |
3358 the keymap will ever be passed to the function more than once. | |
3359 | |
3360 The function will not be called on elements of this keymap's parents | |
3361 \(see the function `keymap-parents') or upon keymaps which are contained | |
3362 within this keymap (multi-character definitions). | |
3363 It will be called on "meta" characters since they are not really | |
3364 two-character sequences. | |
3365 | |
3366 If the optional third argument SORT-FIRST is non-nil, then the elements of | |
3367 the keymap will be passed to the mapper function in a canonical order. | |
3368 Otherwise, they will be passed in hash (that is, random) order, which is | |
3369 faster. | |
3370 */ | |
3371 (function, keymap, sort_first)) | |
3372 { | |
3373 /* This function can GC */ | |
489 | 3374 struct gcpro gcpro1, gcpro2; |
428 | 3375 |
3376 /* tolerate obviously transposed args */ | |
3377 if (!NILP (Fkeymapp (function))) | |
3378 { | |
3379 Lisp_Object tmp = function; | |
3380 function = keymap; | |
3381 keymap = tmp; | |
3382 } | |
489 | 3383 GCPRO2 (function, keymap); |
428 | 3384 keymap = get_keymap (keymap, 1, 1); |
489 | 3385 map_keymap (XKEYMAP (keymap)->table, !NILP (sort_first), |
5013 | 3386 map_keymap_mapper, STORE_LISP_IN_VOID (function)); |
428 | 3387 UNGCPRO; |
3388 return Qnil; | |
3389 } | |
3390 | |
3391 | |
3392 | |
3393 /************************************************************************/ | |
3394 /* Accessible keymaps */ | |
3395 /************************************************************************/ | |
3396 | |
3397 struct accessible_keymaps_closure | |
3398 { | |
3399 Lisp_Object tail; | |
3400 }; | |
3401 | |
3402 | |
3403 static void | |
3404 accessible_keymaps_mapper_1 (Lisp_Object keysym, Lisp_Object contents, | |
442 | 3405 int modifiers, |
428 | 3406 struct accessible_keymaps_closure *closure) |
3407 { | |
3408 /* This function can GC */ | |
442 | 3409 int subbits = MODIFIER_HASH_KEY_BITS (keysym); |
428 | 3410 |
3411 if (subbits != 0) | |
3412 { | |
3413 Lisp_Object submaps; | |
3414 | |
3415 contents = get_keymap (contents, 1, 1); | |
3416 submaps = keymap_submaps (contents); | |
3417 for (; !NILP (submaps); submaps = XCDR (submaps)) | |
3418 { | |
3419 accessible_keymaps_mapper_1 (XCAR (XCAR (submaps)), | |
3420 XCDR (XCAR (submaps)), | |
3421 (subbits | modifiers), | |
3422 closure); | |
3423 } | |
3424 } | |
3425 else | |
3426 { | |
3427 Lisp_Object thisseq = Fcar (Fcar (closure->tail)); | |
3428 Lisp_Object cmd = get_keyelt (contents, 1); | |
3429 Lisp_Object vec; | |
3430 int j; | |
3431 int len; | |
934 | 3432 Lisp_Key_Data key; |
428 | 3433 key.keysym = keysym; |
3434 key.modifiers = modifiers; | |
3435 | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
3436 assert (!NILP (cmd)); |
428 | 3437 cmd = get_keymap (cmd, 0, 1); |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
3438 assert (KEYMAPP (cmd)); |
428 | 3439 |
3440 vec = make_vector (XVECTOR_LENGTH (thisseq) + 1, Qnil); | |
3441 len = XVECTOR_LENGTH (thisseq); | |
3442 for (j = 0; j < len; j++) | |
3443 XVECTOR_DATA (vec) [j] = XVECTOR_DATA (thisseq) [j]; | |
3444 XVECTOR_DATA (vec) [j] = make_key_description (&key, 1); | |
3445 | |
3446 nconc2 (closure->tail, list1 (Fcons (vec, cmd))); | |
3447 } | |
3448 } | |
3449 | |
3450 | |
3451 static Lisp_Object | |
3452 accessible_keymaps_keymap_mapper (Lisp_Object thismap, void *arg) | |
3453 { | |
3454 /* This function can GC */ | |
3455 struct accessible_keymaps_closure *closure = | |
3456 (struct accessible_keymaps_closure *) arg; | |
3457 Lisp_Object submaps = keymap_submaps (thismap); | |
3458 | |
3459 for (; !NILP (submaps); submaps = XCDR (submaps)) | |
3460 { | |
3461 accessible_keymaps_mapper_1 (XCAR (XCAR (submaps)), | |
3462 XCDR (XCAR (submaps)), | |
3463 0, | |
3464 closure); | |
3465 } | |
3466 return Qnil; | |
3467 } | |
3468 | |
3469 | |
3470 DEFUN ("accessible-keymaps", Faccessible_keymaps, 1, 2, 0, /* | |
3471 Find all keymaps accessible via prefix characters from KEYMAP. | |
3472 Returns a list of elements of the form (KEYS . MAP), where the sequence | |
3473 KEYS starting from KEYMAP gets you to MAP. These elements are ordered | |
3474 so that the KEYS increase in length. The first element is ([] . KEYMAP). | |
3475 An optional argument PREFIX, if non-nil, should be a key sequence; | |
3476 then the value includes only maps for prefixes that start with PREFIX. | |
3477 */ | |
3478 (keymap, prefix)) | |
3479 { | |
3480 /* This function can GC */ | |
3481 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | |
3482 Lisp_Object accessible_keymaps = Qnil; | |
3483 struct accessible_keymaps_closure c; | |
3484 c.tail = Qnil; | |
3485 GCPRO4 (accessible_keymaps, c.tail, prefix, keymap); | |
3486 | |
440 | 3487 keymap = get_keymap (keymap, 1, 1); |
3488 | |
428 | 3489 retry: |
3490 if (NILP (prefix)) | |
3491 { | |
440 | 3492 prefix = make_vector (0, Qnil); |
428 | 3493 } |
440 | 3494 else if (VECTORP (prefix) || STRINGP (prefix)) |
428 | 3495 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
3496 int len = XFIXNUM (Flength (prefix)); |
440 | 3497 Lisp_Object def; |
428 | 3498 Lisp_Object p; |
3499 int iii; | |
3500 struct gcpro ngcpro1; | |
3501 | |
440 | 3502 if (len == 0) |
3503 { | |
3504 prefix = Qnil; | |
3505 goto retry; | |
3506 } | |
3507 | |
3508 def = Flookup_key (keymap, prefix, Qnil); | |
428 | 3509 def = get_keymap (def, 0, 1); |
3510 if (!KEYMAPP (def)) | |
3511 goto RETURN; | |
3512 | |
3513 keymap = def; | |
3514 p = make_vector (len, Qnil); | |
3515 NGCPRO1 (p); | |
3516 for (iii = 0; iii < len; iii++) | |
3517 { | |
934 | 3518 Lisp_Key_Data key; |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
3519 define_key_parser (Faref (prefix, make_fixnum (iii)), &key); |
428 | 3520 XVECTOR_DATA (p)[iii] = make_key_description (&key, 1); |
3521 } | |
3522 NUNGCPRO; | |
3523 prefix = p; | |
3524 } | |
440 | 3525 else |
3526 { | |
3527 prefix = wrong_type_argument (Qarrayp, prefix); | |
3528 goto retry; | |
3529 } | |
428 | 3530 |
3531 accessible_keymaps = list1 (Fcons (prefix, keymap)); | |
3532 | |
440 | 3533 /* For each map in the list maps, look at any other maps it points |
3534 to and stick them at the end if they are not already in the list */ | |
428 | 3535 |
3536 for (c.tail = accessible_keymaps; | |
3537 !NILP (c.tail); | |
3538 c.tail = XCDR (c.tail)) | |
3539 { | |
3540 Lisp_Object thismap = Fcdr (Fcar (c.tail)); | |
3541 CHECK_KEYMAP (thismap); | |
3542 traverse_keymaps (thismap, Qnil, | |
3543 accessible_keymaps_keymap_mapper, &c); | |
3544 } | |
3545 RETURN: | |
3546 UNGCPRO; | |
3547 return accessible_keymaps; | |
3548 } | |
3549 | |
3550 | |
3551 | |
3552 /************************************************************************/ | |
3553 /* Pretty descriptions of key sequences */ | |
3554 /************************************************************************/ | |
3555 | |
3556 DEFUN ("key-description", Fkey_description, 1, 1, 0, /* | |
3557 Return a pretty description of key-sequence KEYS. | |
3558 Control characters turn into "C-foo" sequences, meta into "M-foo", | |
3559 spaces are put between sequence elements, etc... | |
3560 */ | |
3561 (keys)) | |
3562 { | |
3563 if (CHAR_OR_CHAR_INTP (keys) || CONSP (keys) || SYMBOLP (keys) | |
3564 || EVENTP (keys)) | |
3565 { | |
3566 return Fsingle_key_description (keys); | |
3567 } | |
3568 else if (VECTORP (keys) || | |
3569 STRINGP (keys)) | |
3570 { | |
3571 Lisp_Object string = Qnil; | |
3572 /* Lisp_Object sep = Qnil; */ | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
3573 int size = XFIXNUM (Flength (keys)); |
428 | 3574 int i; |
3575 | |
3576 for (i = 0; i < size; i++) | |
3577 { | |
3578 Lisp_Object s2 = Fsingle_key_description | |
3579 (STRINGP (keys) | |
867 | 3580 ? make_char (string_ichar (keys, i)) |
428 | 3581 : XVECTOR_DATA (keys)[i]); |
3582 | |
3583 if (i == 0) | |
3584 string = s2; | |
3585 else | |
3586 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3587 /* if (NILP (sep)) Lisp_Object sep = build_ascstring (" ") */; |
428 | 3588 string = concat2 (string, concat2 (Vsingle_space_string, s2)); |
3589 } | |
3590 } | |
3591 return string; | |
3592 } | |
3593 return Fkey_description (wrong_type_argument (Qsequencep, keys)); | |
3594 } | |
3595 | |
3596 DEFUN ("single-key-description", Fsingle_key_description, 1, 1, 0, /* | |
3597 Return a pretty description of command character KEY. | |
3598 Control characters turn into C-whatever, etc. | |
3599 This differs from `text-char-description' in that it returns a description | |
3600 of a key read from the user rather than a character from a buffer. | |
3601 */ | |
3602 (key)) | |
3603 { | |
3604 if (SYMBOLP (key)) | |
3605 key = Fcons (key, Qnil); /* sleaze sleaze */ | |
3606 | |
3607 if (EVENTP (key) || CHAR_OR_CHAR_INTP (key)) | |
3608 { | |
793 | 3609 DECLARE_EISTRING_MALLOC (buf); |
3610 Lisp_Object str; | |
3611 | |
428 | 3612 if (!EVENTP (key)) |
3613 { | |
934 | 3614 Lisp_Object event = Fmake_event (Qnil, Qnil); |
3615 CHECK_CHAR_COERCE_INT (key); | |
1204 | 3616 character_to_event (XCHAR (key), XEVENT (event), |
4780
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3617 XCONSOLE (Vselected_console), |
2fd201d73a92
Call character_to_event on characters received from XIM, event-Xt.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
4355
diff
changeset
|
3618 high_bit_is_meta, 1); |
934 | 3619 format_event_object (buf, event, 1); |
1204 | 3620 Fdeallocate_event (event); |
934 | 3621 } |
3622 else | |
3623 format_event_object (buf, key, 1); | |
793 | 3624 str = eimake_string (buf); |
3625 eifree (buf); | |
3626 return str; | |
428 | 3627 } |
3628 | |
3629 if (CONSP (key)) | |
3630 { | |
793 | 3631 DECLARE_EISTRING (bufp); |
3632 | |
428 | 3633 Lisp_Object rest; |
3634 LIST_LOOP (rest, key) | |
3635 { | |
3636 Lisp_Object keysym = XCAR (rest); | |
2421 | 3637 if (EQ (keysym, Qcontrol)) eicat_ascii (bufp, "C-"); |
3638 else if (EQ (keysym, Qctrl)) eicat_ascii (bufp, "C-"); | |
3639 else if (EQ (keysym, Qmeta)) eicat_ascii (bufp, "M-"); | |
3640 else if (EQ (keysym, Qsuper)) eicat_ascii (bufp, "S-"); | |
3641 else if (EQ (keysym, Qhyper)) eicat_ascii (bufp, "H-"); | |
3642 else if (EQ (keysym, Qalt)) eicat_ascii (bufp, "A-"); | |
3643 else if (EQ (keysym, Qshift)) eicat_ascii (bufp, "Sh-"); | |
428 | 3644 else if (CHAR_OR_CHAR_INTP (keysym)) |
793 | 3645 eicat_ch (bufp, XCHAR_OR_CHAR_INT (keysym)); |
428 | 3646 else |
3647 { | |
3648 CHECK_SYMBOL (keysym); | |
3649 #if 0 /* This is bogus */ | |
2421 | 3650 if (EQ (keysym, QKlinefeed)) eicat_ascii (bufp, "LFD"); |
3651 else if (EQ (keysym, QKtab)) eicat_ascii (bufp, "TAB"); | |
3652 else if (EQ (keysym, QKreturn)) eicat_ascii (bufp, "RET"); | |
3653 else if (EQ (keysym, QKescape)) eicat_ascii (bufp, "ESC"); | |
3654 else if (EQ (keysym, QKdelete)) eicat_ascii (bufp, "DEL"); | |
3655 else if (EQ (keysym, QKspace)) eicat_ascii (bufp, "SPC"); | |
3656 else if (EQ (keysym, QKbackspace)) eicat_ascii (bufp, "BS"); | |
428 | 3657 else |
3658 #endif | |
793 | 3659 eicat_lstr (bufp, XSYMBOL (keysym)->name); |
428 | 3660 if (!NILP (XCDR (rest))) |
793 | 3661 invalid_argument ("Invalid key description", key); |
428 | 3662 } |
3663 } | |
793 | 3664 return eimake_string (bufp); |
428 | 3665 } |
3666 return Fsingle_key_description | |
3667 (wrong_type_argument (intern ("char-or-event-p"), key)); | |
3668 } | |
3669 | |
3670 DEFUN ("text-char-description", Ftext_char_description, 1, 1, 0, /* | |
3671 Return a pretty description of file-character CHR. | |
3672 Unprintable characters turn into "^char" or \\NNN, depending on the value | |
3673 of the `ctl-arrow' variable. | |
3674 This differs from `single-key-description' in that it returns a description | |
3675 of a character from a buffer rather than a key read from the user. | |
3676 */ | |
3677 (chr)) | |
3678 { | |
867 | 3679 Ibyte buf[200]; |
3680 Ibyte *p; | |
3681 Ichar c; | |
428 | 3682 Lisp_Object ctl_arrow = current_buffer->ctl_arrow; |
3683 int ctl_p = !NILP (ctl_arrow); | |
867 | 3684 Ichar printable_min = (CHAR_OR_CHAR_INTP (ctl_arrow) |
428 | 3685 ? XCHAR_OR_CHAR_INT (ctl_arrow) |
3686 : ((EQ (ctl_arrow, Qt) || NILP (ctl_arrow)) | |
3687 ? 256 : 160)); | |
3688 | |
3689 if (EVENTP (chr)) | |
3690 { | |
2862 | 3691 Lisp_Object ch = Fevent_to_character (chr, Qnil, Qnil, Qnil); |
428 | 3692 if (NILP (ch)) |
3693 return | |
563 | 3694 signal_continuable_error |
3695 (Qinvalid_argument, | |
2828 | 3696 "key has no character equivalent (that we know of)", |
3697 Fcopy_event (chr, Qnil)); | |
428 | 3698 chr = ch; |
3699 } | |
3700 | |
3701 CHECK_CHAR_COERCE_INT (chr); | |
3702 | |
3703 c = XCHAR (chr); | |
3704 p = buf; | |
3705 | |
3706 if (c >= printable_min) | |
3707 { | |
867 | 3708 p += set_itext_ichar (p, c); |
428 | 3709 } |
3710 else if (c < 040 && ctl_p) | |
3711 { | |
3712 *p++ = '^'; | |
3713 *p++ = c + 64; /* 'A' - 1 */ | |
3714 } | |
3715 else if (c == 0177) | |
3716 { | |
3717 *p++ = '^'; | |
3718 *p++ = '?'; | |
3719 } | |
3720 else if (c >= 0200 || c < 040) | |
3721 { | |
3722 *p++ = '\\'; | |
3723 #ifdef MULE | |
3724 /* !!#### This syntax is not readable. It will | |
3725 be interpreted as a 3-digit octal number rather | |
3726 than a 7-digit octal number. */ | |
3727 if (c >= 0400) | |
3728 { | |
3729 *p++ = '0' + ((c & 07000000) >> 18); | |
3730 *p++ = '0' + ((c & 0700000) >> 15); | |
3731 *p++ = '0' + ((c & 070000) >> 12); | |
3732 *p++ = '0' + ((c & 07000) >> 9); | |
3733 } | |
3734 #endif | |
3735 *p++ = '0' + ((c & 0700) >> 6); | |
3736 *p++ = '0' + ((c & 0070) >> 3); | |
3737 *p++ = '0' + ((c & 0007)); | |
3738 } | |
3739 else | |
3740 { | |
867 | 3741 p += set_itext_ichar (p, c); |
428 | 3742 } |
3743 | |
3744 *p = 0; | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
3745 return build_istring (buf); |
428 | 3746 } |
3747 | |
3748 | |
3749 /************************************************************************/ | |
3750 /* where-is (mapping bindings to keys) */ | |
3751 /************************************************************************/ | |
3752 | |
3753 static Lisp_Object | |
3754 where_is_internal (Lisp_Object definition, Lisp_Object *maps, int nmaps, | |
793 | 3755 Lisp_Object firstonly, Eistring *target_buffer); |
428 | 3756 |
3757 DEFUN ("where-is-internal", Fwhere_is_internal, 1, 5, 0, /* | |
3758 Return list of keys that invoke DEFINITION in KEYMAPS. | |
3759 KEYMAPS can be either a keymap (meaning search in that keymap and the | |
3760 current global keymap) or a list of keymaps (meaning search in exactly | |
3096 | 3761 those keymaps and no others). |
428 | 3762 |
3763 If optional 3rd arg FIRSTONLY is non-nil, return a vector representing | |
3764 the first key sequence found, rather than a list of all possible key | |
3765 sequences. | |
3766 | |
3096 | 3767 Optional 4th argument NOINDIRECT is ignored. (GNU Emacs uses it to allow |
3768 searching for an indirect keymap by inhibiting following of indirections to | |
3769 keymaps or slots, but XEmacs doesn't need it because keymaps are a type.) | |
3770 | |
3771 If optional 5th argument EVENT-OR-KEYS is non-nil and KEYMAPS is nil, | |
3772 search in the currently applicable maps for EVENT-OR-KEYS (this is | |
3773 equivalent to specifying `(current-keymaps EVENT-OR-KEYS)' as the | |
3774 argument to KEYMAPS). | |
428 | 3775 */ |
2286 | 3776 (definition, keymaps, firstonly, UNUSED (noindirect), event_or_keys)) |
428 | 3777 { |
3778 /* This function can GC */ | |
3779 Lisp_Object maps[100]; | |
3780 Lisp_Object *gubbish = maps; | |
3781 int nmaps; | |
3782 | |
3783 /* Get keymaps as an array */ | |
3784 if (NILP (keymaps)) | |
3785 { | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3786 nmaps = get_relevant_keymaps (event_or_keys, Qnil, countof (maps), |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3787 gubbish); |
428 | 3788 if (nmaps > countof (maps)) |
3789 { | |
3790 gubbish = alloca_array (Lisp_Object, nmaps); | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3791 nmaps = get_relevant_keymaps (event_or_keys, Qnil, nmaps, gubbish); |
428 | 3792 } |
3793 } | |
3794 else if (CONSP (keymaps)) | |
3795 { | |
3796 Lisp_Object rest; | |
3797 int i; | |
3798 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
3799 nmaps = XFIXNUM (Flength (keymaps)); |
428 | 3800 if (nmaps > countof (maps)) |
3801 { | |
3802 gubbish = alloca_array (Lisp_Object, nmaps); | |
3803 } | |
3804 for (rest = keymaps, i = 0; !NILP (rest); | |
3805 rest = XCDR (keymaps), i++) | |
3806 { | |
3807 gubbish[i] = get_keymap (XCAR (keymaps), 1, 1); | |
3808 } | |
3809 } | |
3810 else | |
3811 { | |
3812 nmaps = 1; | |
3813 gubbish[0] = get_keymap (keymaps, 1, 1); | |
3814 if (!EQ (gubbish[0], Vcurrent_global_map)) | |
3815 { | |
3816 gubbish[1] = Vcurrent_global_map; | |
3817 nmaps++; | |
3818 } | |
3819 } | |
3820 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3821 if (!NILP (command_remapping (definition, nmaps, gubbish))) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3822 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3823 return Qnil; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3824 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3825 |
428 | 3826 return where_is_internal (definition, gubbish, nmaps, firstonly, 0); |
3827 } | |
3828 | |
3829 /* This function is like | |
3830 (key-description (where-is-internal definition nil t)) | |
3831 except that it writes its output into a (char *) buffer that you | |
3832 provide; it doesn't cons (or allocate memory) at all, so it's | |
3833 very fast. This is used by menubar.c. | |
3834 */ | |
3835 void | |
793 | 3836 where_is_to_char (Lisp_Object definition, Eistring *buffer) |
428 | 3837 { |
3838 /* This function can GC */ | |
3839 Lisp_Object maps[100]; | |
3840 Lisp_Object *gubbish = maps; | |
3841 int nmaps; | |
3842 | |
3843 /* Get keymaps as an array */ | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3844 nmaps = get_relevant_keymaps (Qnil, Qnil, countof (maps), gubbish); |
428 | 3845 if (nmaps > countof (maps)) |
3846 { | |
3847 gubbish = alloca_array (Lisp_Object, nmaps); | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
3848 nmaps = get_relevant_keymaps (Qnil, Qnil, nmaps, gubbish); |
428 | 3849 } |
3850 | |
3851 where_is_internal (definition, maps, nmaps, Qt, buffer); | |
3852 } | |
3853 | |
3854 | |
3855 static Lisp_Object | |
934 | 3856 raw_keys_to_keys (Lisp_Key_Data *keys, int count) |
428 | 3857 { |
3858 Lisp_Object result = make_vector (count, Qnil); | |
3859 while (count--) | |
3860 XVECTOR_DATA (result) [count] = make_key_description (&(keys[count]), 1); | |
3861 return result; | |
3862 } | |
3863 | |
3864 | |
3865 static void | |
934 | 3866 format_raw_keys (Lisp_Key_Data *keys, int count, Eistring *buf) |
428 | 3867 { |
3868 int i; | |
934 | 3869 Lisp_Object event = Fmake_event (Qnil, Qnil); |
3870 XSET_EVENT_TYPE (event, key_press_event); | |
3871 XSET_EVENT_CHANNEL (event, Vselected_console); | |
428 | 3872 for (i = 0; i < count; i++) |
3873 { | |
1204 | 3874 XSET_EVENT_KEY_KEYSYM (event, keys[i].keysym); |
3875 XSET_EVENT_KEY_MODIFIERS (event, KEY_DATA_MODIFIERS (&keys[i])); | |
934 | 3876 format_event_object (buf, event, 1); |
793 | 3877 if (i < count - 1) |
2421 | 3878 eicat_ascii (buf, " "); |
428 | 3879 } |
1204 | 3880 Fdeallocate_event (event); |
428 | 3881 } |
3882 | |
3883 | |
3884 /* definition is the thing to look for. | |
3885 map is a keymap. | |
3886 shadow is an array of shadow_count keymaps; if there is a different | |
3887 binding in any of the keymaps of a key that we are considering | |
3888 returning, then we reconsider. | |
3889 firstonly means give up after finding the first match; | |
3890 keys_so_far and modifiers_so_far describe which map we're looking in; | |
3891 If we're in the "meta" submap of the map that "C-x 4" is bound to, | |
3892 then keys_so_far will be {(control x), \4}, and modifiers_so_far | |
442 | 3893 will be XEMACS_MOD_META. That is, keys_so_far is the chain of keys that we |
428 | 3894 have followed, and modifiers_so_far_so_far is the bits (partial keys) |
3895 beyond that. | |
3896 | |
3897 (keys_so_far is a global buffer and the keys_count arg says how much | |
3898 of it we're currently interested in.) | |
3899 | |
3900 If target_buffer is provided, then we write a key-description into it, | |
3901 to avoid consing a string. This only works with firstonly on. | |
3902 */ | |
3903 | |
3904 struct where_is_closure | |
3905 { | |
3906 Lisp_Object definition; | |
3907 Lisp_Object *shadow; | |
3908 int shadow_count; | |
3909 int firstonly; | |
3910 int keys_count; | |
442 | 3911 int modifiers_so_far; |
793 | 3912 Eistring *target_buffer; |
934 | 3913 Lisp_Key_Data *keys_so_far; |
428 | 3914 int keys_so_far_total_size; |
3915 int keys_so_far_malloced; | |
3916 }; | |
3917 | |
3918 static Lisp_Object where_is_recursive_mapper (Lisp_Object map, void *arg); | |
3919 | |
3920 static Lisp_Object | |
3921 where_is_recursive_mapper (Lisp_Object map, void *arg) | |
3922 { | |
3923 /* This function can GC */ | |
3924 struct where_is_closure *c = (struct where_is_closure *) arg; | |
3925 Lisp_Object definition = c->definition; | |
442 | 3926 const int firstonly = c->firstonly; |
3927 const int keys_count = c->keys_count; | |
3928 const int modifiers_so_far = c->modifiers_so_far; | |
793 | 3929 Eistring *target_buffer = c->target_buffer; |
428 | 3930 Lisp_Object keys = Fgethash (definition, |
3931 XKEYMAP (map)->inverse_table, | |
3932 Qnil); | |
3933 Lisp_Object submaps; | |
3934 Lisp_Object result = Qnil; | |
3935 | |
3936 if (!NILP (keys)) | |
3937 { | |
3938 /* One or more keys in this map match the definition we're looking for. | |
3939 Verify that these bindings aren't shadowed by other bindings | |
3940 in the shadow maps. Either nil or number as value from | |
3941 raw_lookup_key() means undefined. */ | |
934 | 3942 Lisp_Key_Data *so_far = c->keys_so_far; |
428 | 3943 |
3944 for (;;) /* loop over all keys that match */ | |
3945 { | |
3946 Lisp_Object k = CONSP (keys) ? XCAR (keys) : keys; | |
3947 int i; | |
3948 | |
3949 so_far [keys_count].keysym = k; | |
934 | 3950 SET_KEY_DATA_MODIFIERS (&so_far [keys_count], modifiers_so_far); |
428 | 3951 |
3952 /* now loop over all shadow maps */ | |
3953 for (i = 0; i < c->shadow_count; i++) | |
3954 { | |
3955 Lisp_Object shadowed = raw_lookup_key (c->shadow[i], | |
3956 so_far, | |
3957 keys_count + 1, | |
3958 0, 1); | |
3959 | |
3960 if (NILP (shadowed) || CHARP (shadowed) || | |
3961 EQ (shadowed, definition)) | |
3962 continue; /* we passed this test; it's not shadowed here. */ | |
3963 else | |
3964 /* ignore this key binding, since it actually has a | |
3965 different binding in a shadowing map */ | |
3966 goto c_doesnt_have_proper_loop_exit_statements; | |
3967 } | |
3968 | |
3969 /* OK, the key is for real */ | |
3970 if (target_buffer) | |
3971 { | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
3972 assert (firstonly); |
428 | 3973 format_raw_keys (so_far, keys_count + 1, target_buffer); |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
3974 return make_fixnum (1); |
428 | 3975 } |
3976 else if (firstonly) | |
3977 return raw_keys_to_keys (so_far, keys_count + 1); | |
3978 else | |
3979 result = Fcons (raw_keys_to_keys (so_far, keys_count + 1), | |
3980 result); | |
3981 | |
3982 c_doesnt_have_proper_loop_exit_statements: | |
3983 /* now on to the next matching key ... */ | |
3984 if (!CONSP (keys)) break; | |
3985 keys = XCDR (keys); | |
3986 } | |
3987 } | |
3988 | |
3989 /* Now search the sub-keymaps of this map. | |
3990 If we're in "firstonly" mode and have already found one, this | |
3991 point is not reached. If we get one from lower down, either | |
3992 return it immediately (in firstonly mode) or tack it onto the | |
3993 end of the ones we've gotten so far. | |
3994 */ | |
3995 for (submaps = keymap_submaps (map); | |
3996 !NILP (submaps); | |
3997 submaps = XCDR (submaps)) | |
3998 { | |
3999 Lisp_Object key = XCAR (XCAR (submaps)); | |
4000 Lisp_Object submap = XCDR (XCAR (submaps)); | |
442 | 4001 int lower_modifiers; |
428 | 4002 int lower_keys_count = keys_count; |
442 | 4003 int bucky; |
428 | 4004 |
4005 submap = get_keymap (submap, 0, 0); | |
4006 | |
4007 if (EQ (submap, map)) | |
4008 /* Arrgh! Some loser has introduced a loop... */ | |
4009 continue; | |
4010 | |
4011 /* If this is not a keymap, then that's probably because someone | |
4012 did an `fset' of a symbol that used to point to a map such that | |
4013 it no longer does. Sigh. Ignore this, and invalidate the cache | |
4014 so that it doesn't happen to us next time too. | |
4015 */ | |
4016 if (NILP (submap)) | |
4017 { | |
4018 XKEYMAP (map)->sub_maps_cache = Qt; | |
4019 continue; | |
4020 } | |
4021 | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4022 /* Don't expose the command remapping to #'where-is-internal */ |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4023 if (EQ (key, Qxemacs_command_remapping)) |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4024 { |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4025 continue; |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4026 } |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4027 |
428 | 4028 /* If the map is a "bucky" map, then add a bit to the |
4029 modifiers_so_far list. | |
4030 Otherwise, add a new raw_key onto the end of keys_so_far. | |
4031 */ | |
4032 bucky = MODIFIER_HASH_KEY_BITS (key); | |
4033 if (bucky != 0) | |
4034 lower_modifiers = (modifiers_so_far | bucky); | |
4035 else | |
4036 { | |
934 | 4037 Lisp_Key_Data *so_far = c->keys_so_far; |
428 | 4038 lower_modifiers = 0; |
4039 so_far [lower_keys_count].keysym = key; | |
934 | 4040 SET_KEY_DATA_MODIFIERS (&so_far [lower_keys_count], modifiers_so_far); |
428 | 4041 lower_keys_count++; |
4042 } | |
4043 | |
4044 if (lower_keys_count >= c->keys_so_far_total_size) | |
4045 { | |
4046 int size = lower_keys_count + 50; | |
4047 if (! c->keys_so_far_malloced) | |
4048 { | |
3025 | 4049 Lisp_Key_Data *new_ = xnew_array (Lisp_Key_Data, size); |
4050 memcpy ((void *)new_, (const void *)c->keys_so_far, | |
934 | 4051 c->keys_so_far_total_size * sizeof (Lisp_Key_Data)); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
4052 xfree (c->keys_so_far); |
3550 | 4053 c->keys_so_far = new_; |
428 | 4054 } |
4055 else | |
934 | 4056 XREALLOC_ARRAY (c->keys_so_far, Lisp_Key_Data, size); |
428 | 4057 |
4058 c->keys_so_far_total_size = size; | |
4059 c->keys_so_far_malloced = 1; | |
4060 } | |
4061 | |
4062 { | |
4063 Lisp_Object lower; | |
4064 | |
4065 c->keys_count = lower_keys_count; | |
4066 c->modifiers_so_far = lower_modifiers; | |
4067 | |
4068 lower = traverse_keymaps (submap, Qnil, where_is_recursive_mapper, c); | |
4069 | |
4070 c->keys_count = keys_count; | |
4071 c->modifiers_so_far = modifiers_so_far; | |
4072 | |
4073 if (!firstonly) | |
4074 result = nconc2 (lower, result); | |
4075 else if (!NILP (lower)) | |
4076 return lower; | |
4077 } | |
4078 } | |
4079 return result; | |
4080 } | |
4081 | |
4082 | |
4083 static Lisp_Object | |
4084 where_is_internal (Lisp_Object definition, Lisp_Object *maps, int nmaps, | |
793 | 4085 Lisp_Object firstonly, Eistring *target_buffer) |
428 | 4086 { |
4087 /* This function can GC */ | |
4088 Lisp_Object result = Qnil; | |
4089 int i; | |
934 | 4090 Lisp_Key_Data raw[20]; |
428 | 4091 struct where_is_closure c; |
4092 | |
4093 c.definition = definition; | |
4094 c.shadow = maps; | |
4095 c.firstonly = !NILP (firstonly); | |
4096 c.target_buffer = target_buffer; | |
4097 c.keys_so_far = raw; | |
4098 c.keys_so_far_total_size = countof (raw); | |
4099 c.keys_so_far_malloced = 0; | |
4100 | |
4101 /* Loop over each of the maps, accumulating the keys found. | |
4102 For each map searched, all previous maps shadow this one | |
4103 so that bogus keys aren't listed. */ | |
4104 for (i = 0; i < nmaps; i++) | |
4105 { | |
4106 Lisp_Object this_result; | |
4107 c.shadow_count = i; | |
4108 /* Reset the things set in each iteration */ | |
4109 c.keys_count = 0; | |
4110 c.modifiers_so_far = 0; | |
4111 | |
4112 this_result = traverse_keymaps (maps[i], Qnil, where_is_recursive_mapper, | |
4113 &c); | |
4114 if (!NILP (firstonly)) | |
4115 { | |
4116 result = this_result; | |
4117 if (!NILP (result)) | |
4118 break; | |
4119 } | |
4120 else | |
4121 result = nconc2 (this_result, result); | |
4122 } | |
4123 | |
4124 if (NILP (firstonly)) | |
4125 result = Fnreverse (result); | |
4126 | |
4127 if (c.keys_so_far_malloced) | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4962
diff
changeset
|
4128 xfree (c.keys_so_far); |
428 | 4129 return result; |
4130 } | |
4131 | |
4132 | |
4133 /************************************************************************/ | |
4134 /* Describing keymaps */ | |
4135 /************************************************************************/ | |
4136 | |
4137 DEFUN ("describe-bindings-internal", Fdescribe_bindings_internal, 1, 5, 0, /* | |
4138 Insert a list of all defined keys and their definitions in MAP. | |
4139 Optional second argument ALL says whether to include even "uninteresting" | |
4140 definitions (ie symbols with a non-nil `suppress-keymap' property. | |
4141 Third argument SHADOW is a list of keymaps whose bindings shadow those | |
4142 of map; if a binding is present in any shadowing map, it is not printed. | |
4143 Fourth argument PREFIX, if non-nil, should be a key sequence; | |
4144 only bindings which start with that key sequence will be printed. | |
4145 Fifth argument MOUSE-ONLY-P says to only print bindings for mouse clicks. | |
4146 */ | |
4147 (map, all, shadow, prefix, mouse_only_p)) | |
4148 { | |
4149 /* This function can GC */ | |
4150 | |
4151 /* #### At some point, this function should be changed to accept a | |
4152 BUFFER argument. Currently, the BUFFER argument to | |
4153 describe_map_tree is being used only internally. */ | |
4154 describe_map_tree (map, NILP (all), shadow, prefix, | |
4155 !NILP (mouse_only_p), Fcurrent_buffer ()); | |
4156 return Qnil; | |
4157 } | |
4158 | |
4159 | |
4160 /* Insert a description of the key bindings in STARTMAP, | |
4161 followed by those of all maps reachable through STARTMAP. | |
4162 If PARTIAL is nonzero, omit certain "uninteresting" commands | |
4163 (such as `undefined'). | |
4164 If SHADOW is non-nil, it is a list of other maps; | |
4165 don't mention keys which would be shadowed by any of them | |
4166 If PREFIX is non-nil, only list bindings which start with those keys. | |
4167 */ | |
4168 | |
4169 void | |
4170 describe_map_tree (Lisp_Object startmap, int partial, Lisp_Object shadow, | |
4171 Lisp_Object prefix, int mice_only_p, Lisp_Object buffer) | |
4172 { | |
4173 /* This function can GC */ | |
4174 Lisp_Object maps = Qnil; | |
4175 struct gcpro gcpro1, gcpro2; /* get_keymap may autoload */ | |
4176 GCPRO2 (maps, shadow); | |
4177 | |
4178 maps = Faccessible_keymaps (startmap, prefix); | |
4179 | |
4180 for (; !NILP (maps); maps = Fcdr (maps)) | |
4181 { | |
4182 Lisp_Object sub_shadow = Qnil; | |
4183 Lisp_Object elt = Fcar (maps); | |
4184 Lisp_Object tail; | |
4185 int no_prefix = (VECTORP (Fcar (elt)) | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
4186 && XFIXNUM (Flength (Fcar (elt))) == 0); |
428 | 4187 struct gcpro ngcpro1, ngcpro2, ngcpro3; |
4188 NGCPRO3 (sub_shadow, elt, tail); | |
4189 | |
4190 for (tail = shadow; CONSP (tail); tail = XCDR (tail)) | |
4191 { | |
4192 Lisp_Object shmap = XCAR (tail); | |
4193 | |
4194 /* If the sequence by which we reach this keymap is zero-length, | |
4195 then the shadow maps for this keymap are just SHADOW. */ | |
4196 if (no_prefix) | |
4197 ; | |
4198 /* If the sequence by which we reach this keymap actually has | |
4199 some elements, then the sequence's definition in SHADOW is | |
4200 what we should use. */ | |
4201 else | |
4202 { | |
4203 shmap = Flookup_key (shmap, Fcar (elt), Qt); | |
4204 if (CHARP (shmap)) | |
4205 shmap = Qnil; | |
4206 } | |
4207 | |
4208 if (!NILP (shmap)) | |
4209 { | |
4210 Lisp_Object shm = get_keymap (shmap, 0, 1); | |
4211 /* If shmap is not nil and not a keymap, it completely | |
4212 shadows this map, so don't describe this map at all. */ | |
4213 if (!KEYMAPP (shm)) | |
4214 goto SKIP; | |
4215 sub_shadow = Fcons (shm, sub_shadow); | |
4216 } | |
4217 } | |
4218 | |
4219 { | |
4220 /* Describe the contents of map MAP, assuming that this map | |
4221 itself is reached by the sequence of prefix keys KEYS (a vector). | |
4222 PARTIAL and SHADOW are as in `describe_map_tree'. */ | |
4223 Lisp_Object keysdesc | |
4224 = ((!no_prefix) | |
4225 ? concat2 (Fkey_description (Fcar (elt)), Vsingle_space_string) | |
4226 : Qnil); | |
4227 describe_map (Fcdr (elt), keysdesc, | |
4228 describe_command, | |
4229 partial, | |
4230 sub_shadow, | |
4231 mice_only_p, | |
4232 buffer); | |
4233 } | |
4234 SKIP: | |
4235 NUNGCPRO; | |
4236 } | |
4237 UNGCPRO; | |
4238 } | |
4239 | |
4240 | |
4241 static void | |
4242 describe_command (Lisp_Object definition, Lisp_Object buffer) | |
4243 { | |
4244 /* This function can GC */ | |
4245 int keymapp = !NILP (Fkeymapp (definition)); | |
4246 struct gcpro gcpro1; | |
4247 GCPRO1 (definition); | |
4248 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
4249 Findent_to (make_fixnum (16), make_fixnum (3), buffer); |
428 | 4250 if (keymapp) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4251 buffer_insert_ascstring (XBUFFER (buffer), "<< "); |
428 | 4252 |
4253 if (SYMBOLP (definition)) | |
4254 { | |
4255 buffer_insert1 (XBUFFER (buffer), Fsymbol_name (definition)); | |
4256 } | |
4257 else if (STRINGP (definition) || VECTORP (definition)) | |
4258 { | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4259 buffer_insert_ascstring (XBUFFER (buffer), "Kbd Macro: "); |
428 | 4260 buffer_insert1 (XBUFFER (buffer), Fkey_description (definition)); |
4261 } | |
4262 else if (COMPILED_FUNCTIONP (definition)) | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4263 buffer_insert_ascstring (XBUFFER (buffer), "Anonymous Compiled Function"); |
428 | 4264 else if (CONSP (definition) && EQ (XCAR (definition), Qlambda)) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4265 buffer_insert_ascstring (XBUFFER (buffer), "Anonymous Lambda"); |
428 | 4266 else if (KEYMAPP (definition)) |
4267 { | |
4268 Lisp_Object name = XKEYMAP (definition)->name; | |
4269 if (STRINGP (name) || (SYMBOLP (name) && !NILP (name))) | |
4270 { | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4271 buffer_insert_ascstring (XBUFFER (buffer), "Prefix command "); |
428 | 4272 if (SYMBOLP (name) |
4273 && EQ (find_symbol_value (name), definition)) | |
4274 buffer_insert1 (XBUFFER (buffer), Fsymbol_name (name)); | |
4275 else | |
4276 { | |
4277 buffer_insert1 (XBUFFER (buffer), Fprin1_to_string (name, Qnil)); | |
4278 } | |
4279 } | |
4280 else | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4281 buffer_insert_ascstring (XBUFFER (buffer), "Prefix Command"); |
428 | 4282 } |
4283 else | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4284 buffer_insert_ascstring (XBUFFER (buffer), "??"); |
428 | 4285 |
4286 if (keymapp) | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4287 buffer_insert_ascstring (XBUFFER (buffer), " >>"); |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4288 buffer_insert_ascstring (XBUFFER (buffer), "\n"); |
428 | 4289 UNGCPRO; |
4290 } | |
4291 | |
4292 struct describe_map_closure | |
4293 { | |
4294 Lisp_Object *list; /* pointer to the list to update */ | |
4295 Lisp_Object partial; /* whether to ignore suppressed commands */ | |
4296 Lisp_Object shadow; /* list of maps shadowing this one */ | |
4297 Lisp_Object self; /* this map */ | |
4298 Lisp_Object self_root; /* this map, or some map that has this map as | |
4299 a parent. this is the base of the tree */ | |
4300 int mice_only_p; /* whether we are to display only button bindings */ | |
4301 }; | |
4302 | |
4303 struct describe_map_shadow_closure | |
4304 { | |
934 | 4305 const Lisp_Key_Data *raw_key; |
428 | 4306 Lisp_Object self; |
4307 }; | |
4308 | |
4309 static Lisp_Object | |
4310 describe_map_mapper_shadow_search (Lisp_Object map, void *arg) | |
4311 { | |
4312 struct describe_map_shadow_closure *c = | |
4313 (struct describe_map_shadow_closure *) arg; | |
4314 | |
4315 if (EQ (map, c->self)) | |
4316 return Qzero; /* Not shadowed; terminate search */ | |
4317 | |
934 | 4318 return !NILP (keymap_lookup_directly (map, |
4319 KEY_DATA_KEYSYM (c->raw_key), | |
4320 KEY_DATA_MODIFIERS (c->raw_key))) | |
428 | 4321 ? Qt : Qnil; |
4322 } | |
4323 | |
4324 | |
4325 static Lisp_Object | |
4326 keymap_lookup_inherited_mapper (Lisp_Object km, void *arg) | |
4327 { | |
934 | 4328 Lisp_Key_Data *k = (Lisp_Key_Data *) arg; |
4329 return keymap_lookup_directly (km, KEY_DATA_KEYSYM (k), KEY_DATA_MODIFIERS (k)); | |
428 | 4330 } |
4331 | |
4332 | |
4333 static void | |
934 | 4334 describe_map_mapper (const Lisp_Key_Data *key, |
428 | 4335 Lisp_Object binding, |
4336 void *describe_map_closure) | |
4337 { | |
4338 /* This function can GC */ | |
4339 struct describe_map_closure *closure = | |
4340 (struct describe_map_closure *) describe_map_closure; | |
934 | 4341 Lisp_Object keysym = KEY_DATA_KEYSYM (key); |
4342 int modifiers = KEY_DATA_MODIFIERS (key); | |
428 | 4343 |
4344 /* Don't mention suppressed commands. */ | |
4345 if (SYMBOLP (binding) | |
4346 && !NILP (closure->partial) | |
4347 && !NILP (Fget (binding, closure->partial, Qnil))) | |
4348 return; | |
4349 | |
4350 /* If we're only supposed to display mouse bindings and this isn't one, | |
4351 then bug out. */ | |
4352 if (closure->mice_only_p && | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4353 (! ( |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4354 #define INCLUDE_BUTTON_ZERO |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4355 #define FROB(num) EQ (keysym, Qbutton##num) || \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4356 EQ (keysym, Qbutton##num##up) || |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4357 #include "keymap-buttons.h" |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4358 0))) |
428 | 4359 return; |
4360 | |
4361 /* If this command in this map is shadowed by some other map, ignore it. */ | |
4362 { | |
4363 Lisp_Object tail; | |
4364 | |
4365 for (tail = closure->shadow; CONSP (tail); tail = XCDR (tail)) | |
4366 { | |
4367 QUIT; | |
4368 if (!NILP (traverse_keymaps (XCAR (tail), Qnil, | |
4369 keymap_lookup_inherited_mapper, | |
4370 /* Cast to discard `const' */ | |
4371 (void *)key))) | |
4372 return; | |
4373 } | |
4374 } | |
4375 | |
4376 /* If this key is in some map of which this map is a parent, then ignore | |
4377 it (in that case, it has been shadowed). | |
4378 */ | |
4379 { | |
4380 Lisp_Object sh; | |
4381 struct describe_map_shadow_closure c; | |
4382 c.raw_key = key; | |
4383 c.self = closure->self; | |
4384 | |
4385 sh = traverse_keymaps (closure->self_root, Qnil, | |
4386 describe_map_mapper_shadow_search, &c); | |
4387 if (!NILP (sh) && !ZEROP (sh)) | |
4388 return; | |
4389 } | |
4390 | |
4391 /* Otherwise add it to the list to be sorted. */ | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
4392 *(closure->list) = Fcons (Fcons (Fcons (keysym, make_fixnum (modifiers)), |
428 | 4393 binding), |
4394 *(closure->list)); | |
4395 } | |
4396 | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4397 static Boolint |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4398 describe_map_sort_predicate (Lisp_Object pred, Lisp_Object key_func, |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4399 Lisp_Object obj1, Lisp_Object obj2) |
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4400 |
428 | 4401 { |
4402 /* obj1 and obj2 are conses of the form | |
4403 ( ( <keysym> . <modifiers> ) . <binding> ) | |
4404 keysym and modifiers are used, binding is ignored. | |
4405 */ | |
442 | 4406 int bit1, bit2; |
428 | 4407 obj1 = XCAR (obj1); |
4408 obj2 = XCAR (obj2); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
4409 bit1 = XFIXNUM (XCDR (obj1)); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
4410 bit2 = XFIXNUM (XCDR (obj2)); |
428 | 4411 if (bit1 != bit2) |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4412 return bit1 < bit2; |
428 | 4413 else |
5352
cc7d0e19173c
Correct the order of arguments to map_keymap_sort_predicate(), keymap.c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5350
diff
changeset
|
4414 return map_keymap_sort_predicate (pred, key_func, obj1, obj2); |
428 | 4415 } |
4416 | |
4417 /* Elide 2 or more consecutive numeric keysyms bound to the same thing, | |
4418 or 2 or more symbolic keysyms that are bound to the same thing and | |
4419 have consecutive character-set-properties. | |
4420 */ | |
4421 static int | |
4422 elide_next_two_p (Lisp_Object list) | |
4423 { | |
4424 Lisp_Object s1, s2; | |
2828 | 4425 extern Lisp_Object Qcharacter_of_keysym; |
428 | 4426 |
4427 if (NILP (XCDR (list))) | |
4428 return 0; | |
4429 | |
4430 /* next two bindings differ */ | |
4431 if (!EQ (XCDR (XCAR (list)), | |
4432 XCDR (XCAR (XCDR (list))))) | |
4433 return 0; | |
4434 | |
4435 /* next two modifier-sets differ */ | |
4436 if (!EQ (XCDR (XCAR (XCAR (list))), | |
4437 XCDR (XCAR (XCAR (XCDR (list)))))) | |
4438 return 0; | |
4439 | |
4440 s1 = XCAR (XCAR (XCAR (list))); | |
4441 s2 = XCAR (XCAR (XCAR (XCDR (list)))); | |
4442 | |
4443 if (SYMBOLP (s1)) | |
4444 { | |
2828 | 4445 Lisp_Object code = Fget (s1, Qcharacter_of_keysym, Qnil); |
428 | 4446 if (CHAR_OR_CHAR_INTP (code)) |
4447 { | |
4448 s1 = code; | |
4449 CHECK_CHAR_COERCE_INT (s1); | |
4450 } | |
4451 else return 0; | |
4452 } | |
4453 if (SYMBOLP (s2)) | |
4454 { | |
2828 | 4455 Lisp_Object code = Fget (s2, Qcharacter_of_keysym, Qnil); |
428 | 4456 if (CHAR_OR_CHAR_INTP (code)) |
4457 { | |
4458 s2 = code; | |
4459 CHECK_CHAR_COERCE_INT (s2); | |
4460 } | |
4461 else return 0; | |
4462 } | |
4463 | |
4464 return (XCHAR (s1) == XCHAR (s2) || | |
4465 XCHAR (s1) + 1 == XCHAR (s2)); | |
4466 } | |
4467 | |
4468 | |
4469 static Lisp_Object | |
4470 describe_map_parent_mapper (Lisp_Object keymap, void *arg) | |
4471 { | |
4472 /* This function can GC */ | |
4473 struct describe_map_closure *describe_map_closure = | |
4474 (struct describe_map_closure *) arg; | |
4475 describe_map_closure->self = keymap; | |
4476 map_keymap (XKEYMAP (keymap)->table, | |
4477 0, /* don't sort: we'll do it later */ | |
4478 describe_map_mapper, describe_map_closure); | |
4479 return Qnil; | |
4480 } | |
4481 | |
4482 | |
4483 /* Describe the contents of map MAP, assuming that this map itself is | |
4484 reached by the sequence of prefix keys KEYS (a string or vector). | |
4485 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */ | |
4486 | |
4487 static void | |
4488 describe_map (Lisp_Object keymap, Lisp_Object elt_prefix, | |
4489 void (*elt_describer) (Lisp_Object, Lisp_Object), | |
4490 int partial, | |
4491 Lisp_Object shadow, | |
4492 int mice_only_p, | |
4493 Lisp_Object buffer) | |
4494 { | |
4495 /* This function can GC */ | |
4496 struct describe_map_closure describe_map_closure; | |
4497 Lisp_Object list = Qnil; | |
4498 struct buffer *buf = XBUFFER (buffer); | |
867 | 4499 Ichar printable_min = (CHAR_OR_CHAR_INTP (buf->ctl_arrow) |
428 | 4500 ? XCHAR_OR_CHAR_INT (buf->ctl_arrow) |
4501 : ((EQ (buf->ctl_arrow, Qt) | |
4502 || EQ (buf->ctl_arrow, Qnil)) | |
4503 ? 256 : 160)); | |
4504 int elided = 0; | |
4505 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | |
2828 | 4506 extern Lisp_Object Qcharacter_of_keysym; |
428 | 4507 |
4508 keymap = get_keymap (keymap, 1, 1); | |
4509 describe_map_closure.partial = (partial ? Qsuppress_keymap : Qnil); | |
4510 describe_map_closure.shadow = shadow; | |
4511 describe_map_closure.list = &list; | |
4512 describe_map_closure.self_root = keymap; | |
4513 describe_map_closure.mice_only_p = mice_only_p; | |
4514 | |
4515 GCPRO4 (keymap, elt_prefix, shadow, list); | |
4516 | |
4517 traverse_keymaps (keymap, Qnil, | |
4518 describe_map_parent_mapper, &describe_map_closure); | |
4519 | |
4520 if (!NILP (list)) | |
4521 { | |
5350
94bbd4792049
Have #'sort*, #'merge use the same test approach as functions from cl-seq.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5191
diff
changeset
|
4522 list = list_sort (list, describe_map_sort_predicate, Qnil, Qnil); |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4523 buffer_insert_ascstring (buf, "\n"); |
428 | 4524 while (!NILP (list)) |
4525 { | |
4526 Lisp_Object elt = XCAR (XCAR (list)); | |
4527 Lisp_Object keysym = XCAR (elt); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
4528 int modifiers = XFIXNUM (XCDR (elt)); |
428 | 4529 |
4530 if (!NILP (elt_prefix)) | |
4531 buffer_insert_lisp_string (buf, elt_prefix); | |
4532 | |
442 | 4533 if (modifiers & XEMACS_MOD_META) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4534 buffer_insert_ascstring (buf, "M-"); |
442 | 4535 if (modifiers & XEMACS_MOD_CONTROL) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4536 buffer_insert_ascstring (buf, "C-"); |
442 | 4537 if (modifiers & XEMACS_MOD_SUPER) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4538 buffer_insert_ascstring (buf, "S-"); |
442 | 4539 if (modifiers & XEMACS_MOD_HYPER) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4540 buffer_insert_ascstring (buf, "H-"); |
442 | 4541 if (modifiers & XEMACS_MOD_ALT) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4542 buffer_insert_ascstring (buf, "Alt-"); |
442 | 4543 if (modifiers & XEMACS_MOD_SHIFT) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4544 buffer_insert_ascstring (buf, "Sh-"); |
428 | 4545 if (SYMBOLP (keysym)) |
4546 { | |
2828 | 4547 Lisp_Object code = Fget (keysym, Qcharacter_of_keysym, Qnil); |
867 | 4548 Ichar c = (CHAR_OR_CHAR_INTP (code) |
4549 ? XCHAR_OR_CHAR_INT (code) : (Ichar) -1); | |
428 | 4550 /* Calling Fsingle_key_description() would cons more */ |
4551 #if 0 /* This is bogus */ | |
4552 if (EQ (keysym, QKlinefeed)) | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4553 buffer_insert_ascstring (buf, "LFD"); |
428 | 4554 else if (EQ (keysym, QKtab)) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4555 buffer_insert_ascstring (buf, "TAB"); |
428 | 4556 else if (EQ (keysym, QKreturn)) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4557 buffer_insert_ascstring (buf, "RET"); |
428 | 4558 else if (EQ (keysym, QKescape)) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4559 buffer_insert_ascstring (buf, "ESC"); |
428 | 4560 else if (EQ (keysym, QKdelete)) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4561 buffer_insert_ascstring (buf, "DEL"); |
428 | 4562 else if (EQ (keysym, QKspace)) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4563 buffer_insert_ascstring (buf, "SPC"); |
428 | 4564 else if (EQ (keysym, QKbackspace)) |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4565 buffer_insert_ascstring (buf, "BS"); |
428 | 4566 else |
4567 #endif | |
4568 if (c >= printable_min) | |
4569 buffer_insert_emacs_char (buf, c); | |
4570 else buffer_insert1 (buf, Fsymbol_name (keysym)); | |
4571 } | |
4572 else if (CHARP (keysym)) | |
4573 buffer_insert_emacs_char (buf, XCHAR (keysym)); | |
4574 else | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4575 buffer_insert_ascstring (buf, "---bad keysym---"); |
428 | 4576 |
4577 if (elided) | |
4578 elided = 0; | |
4579 else | |
4580 { | |
4581 int k = 0; | |
4582 | |
4583 while (elide_next_two_p (list)) | |
4584 { | |
4585 k++; | |
4586 list = XCDR (list); | |
4587 } | |
4588 if (k != 0) | |
4589 { | |
4590 if (k == 1) | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4591 buffer_insert_ascstring (buf, ", "); |
428 | 4592 else |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4593 buffer_insert_ascstring (buf, " .. "); |
428 | 4594 elided = 1; |
4595 continue; | |
4596 } | |
4597 } | |
4598 | |
4599 /* Print a description of the definition of this character. */ | |
4600 (*elt_describer) (XCDR (XCAR (list)), buffer); | |
4601 list = XCDR (list); | |
4602 } | |
4603 } | |
4604 UNGCPRO; | |
4605 } | |
4606 | |
4607 | |
4608 void | |
4609 syms_of_keymap (void) | |
4610 { | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3025
diff
changeset
|
4611 INIT_LISP_OBJECT (keymap); |
442 | 4612 |
502 | 4613 DEFSYMBOL (Qminor_mode_map_alist); |
4614 | |
4615 DEFSYMBOL (Qkeymapp); | |
4616 | |
4617 DEFSYMBOL (Qsuppress_keymap); | |
4618 | |
4619 DEFSYMBOL (Qmodeline_map); | |
4620 DEFSYMBOL (Qtoolbar_map); | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4621 DEFSYMBOL (Qremap); |
428 | 4622 |
4623 DEFSUBR (Fkeymap_parents); | |
4624 DEFSUBR (Fset_keymap_parents); | |
4625 DEFSUBR (Fkeymap_name); | |
4626 DEFSUBR (Fset_keymap_name); | |
4627 DEFSUBR (Fkeymap_prompt); | |
4628 DEFSUBR (Fset_keymap_prompt); | |
4629 DEFSUBR (Fkeymap_default_binding); | |
4630 DEFSUBR (Fset_keymap_default_binding); | |
4631 | |
4632 DEFSUBR (Fkeymapp); | |
4633 DEFSUBR (Fmake_keymap); | |
4634 DEFSUBR (Fmake_sparse_keymap); | |
4635 | |
4636 DEFSUBR (Fcopy_keymap); | |
4637 DEFSUBR (Fkeymap_fullness); | |
4638 DEFSUBR (Fmap_keymap); | |
4639 DEFSUBR (Fevent_matches_key_specifier_p); | |
4640 DEFSUBR (Fdefine_key); | |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4641 DEFSUBR (Fremap_command); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4642 DEFSUBR (Fcommands_remapped_to); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4643 DEFSUBR (Fcommand_remapping); |
428 | 4644 DEFSUBR (Flookup_key); |
4645 DEFSUBR (Fkey_binding); | |
4646 DEFSUBR (Fuse_global_map); | |
4647 DEFSUBR (Fuse_local_map); | |
4648 DEFSUBR (Fcurrent_local_map); | |
4649 DEFSUBR (Fcurrent_global_map); | |
4650 DEFSUBR (Fcurrent_keymaps); | |
4651 DEFSUBR (Faccessible_keymaps); | |
4652 DEFSUBR (Fkey_description); | |
4653 DEFSUBR (Fsingle_key_description); | |
4654 DEFSUBR (Fwhere_is_internal); | |
4655 DEFSUBR (Fdescribe_bindings_internal); | |
4656 | |
4657 DEFSUBR (Ftext_char_description); | |
4658 | |
502 | 4659 DEFSYMBOL (Qcontrol); |
4660 DEFSYMBOL (Qctrl); | |
4661 DEFSYMBOL (Qmeta); | |
4662 DEFSYMBOL (Qsuper); | |
4663 DEFSYMBOL (Qhyper); | |
4664 DEFSYMBOL (Qalt); | |
4665 DEFSYMBOL (Qshift); | |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4666 #define INCLUDE_BUTTON_ZERO |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4667 #define FROB(num) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4668 DEFSYMBOL (Qbutton##num); \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4669 DEFSYMBOL (Qbutton##num##up); |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4670 #include "keymap-buttons.h" |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4671 #define FROB(num) \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4672 DEFSYMBOL (Qmouse_##num); \ |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4673 DEFSYMBOL (Qdown_mouse_##num); |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
4674 #include "keymap-buttons.h" |
502 | 4675 DEFSYMBOL (Qmenu_selection); |
4676 DEFSYMBOL (QLFD); | |
4677 DEFSYMBOL (QTAB); | |
4678 DEFSYMBOL (QRET); | |
4679 DEFSYMBOL (QESC); | |
4680 DEFSYMBOL (QDEL); | |
4681 DEFSYMBOL (QSPC); | |
4682 DEFSYMBOL (QBS); | |
428 | 4683 } |
4684 | |
4685 void | |
4686 vars_of_keymap (void) | |
4687 { | |
4688 DEFVAR_LISP ("meta-prefix-char", &Vmeta_prefix_char /* | |
4689 Meta-prefix character. | |
4690 This character followed by some character `foo' turns into `Meta-foo'. | |
4691 This can be any form recognized as a single key specifier. | |
4692 To disable the meta-prefix-char, set it to a negative number. | |
4693 */ ); | |
4694 Vmeta_prefix_char = make_char (033); | |
4695 | |
4696 DEFVAR_LISP ("mouse-grabbed-buffer", &Vmouse_grabbed_buffer /* | |
4697 A buffer which should be consulted first for all mouse activity. | |
4698 When a mouse-click is processed, it will first be looked up in the | |
4699 local-map of this buffer, and then through the normal mechanism if there | |
4700 is no binding for that click. This buffer's value of `mode-motion-hook' | |
4701 will be consulted instead of the `mode-motion-hook' of the buffer of the | |
4702 window under the mouse. You should *bind* this, not set it. | |
4703 */ ); | |
4704 Vmouse_grabbed_buffer = Qnil; | |
4705 | |
4706 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map /* | |
4707 Keymap that overrides all other local keymaps. | |
4708 If this variable is non-nil, it is used as a keymap instead of the | |
4709 buffer's local map, and the minor mode keymaps and extent-local keymaps. | |
4710 You should *bind* this, not set it. | |
4711 */ ); | |
4712 Voverriding_local_map = Qnil; | |
4713 | |
4714 Fset (Qminor_mode_map_alist, Qnil); | |
4715 | |
4716 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map /* | |
4717 Keymap of key translations that can override keymaps. | |
2027 | 4718 |
4719 This keymap works like `function-key-map', but is searched before it, | |
428 | 4720 and applies even for keys that have ordinary bindings. |
2027 | 4721 |
4722 The `read-key-sequence' function replaces any subsequence bound by | |
4723 `key-translation-map' with its binding. More precisely, when the active | |
4724 keymaps have no binding for the current key sequence but | |
4725 `key-translation-map' binds a suffix of the sequence to a vector or string, | |
4726 `read-key-sequence' replaces the matching suffix with its binding, and | |
4727 continues with the new sequence. See `key-binding' for details. | |
4728 | |
4729 The events that come from bindings in `key-translation-map' are not | |
4730 themselves looked up in `key-translation-map'. | |
4731 | |
4732 #### FIXME: stolen from `function-key-map'; need better example. | |
4733 #### I guess you could implement a Dvorak keyboard with this? | |
4734 For example, suppose `key-translation-map' binds `ESC O P' to [f1]. | |
4735 Typing `ESC O P' to `read-key-sequence' would return | |
4736 \[#<keypress-event f1>]. Typing `C-x ESC O P' would return | |
4737 \[#<keypress-event control-X> #<keypress-event f1>]. If [f1] | |
4738 were a prefix key, typing `ESC O P x' would return | |
4739 \[#<keypress-event f1> #<keypress-event x>]. | |
428 | 4740 */ ); |
4741 Vkey_translation_map = Qnil; | |
4742 | |
771 | 4743 DEFVAR_LISP ("global-tty-map", &Vglobal_tty_map /* |
4744 Global keymap that applies only to TTY's. | |
4745 Key bindings are looked up in this map just before looking in the global map, | |
4746 but only when the current console is a TTY console. See also | |
4747 `global-window-system-map'. | |
4748 */ ); | |
4749 Vglobal_tty_map = Qnil; | |
4750 | |
4751 DEFVAR_LISP ("global-window-system-map", &Vglobal_window_system_map /* | |
4752 Global keymap that applies only to window systems. | |
4753 Key bindings are looked up in this map just before looking in the global map, | |
4754 but only when the current console is not a TTY console. See also | |
4755 `global-tty-map'. | |
4756 */ ); | |
4757 Vglobal_window_system_map = Qnil; | |
4758 | |
428 | 4759 DEFVAR_LISP ("vertical-divider-map", &Vvertical_divider_map /* |
4760 Keymap which handles mouse clicks over vertical dividers. | |
4761 */ ); | |
4762 Vvertical_divider_map = Qnil; | |
4763 | |
4764 DEFVAR_INT ("keymap-tick", &keymap_tick /* | |
4765 Incremented for each change to any keymap. | |
4766 */ ); | |
4767 keymap_tick = 0; | |
4768 | |
4769 staticpro (&Vcurrent_global_map); | |
4770 | |
867 | 4771 Vsingle_space_string = make_string ((const Ibyte *) " ", 1); |
428 | 4772 staticpro (&Vsingle_space_string); |
5679
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4773 |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4774 Qxemacs_command_remapping |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4775 = Fmake_symbol (build_ascstring ("xemacs-command-remapping")); |
a81a739181dc
Add command remapping, a more robust alternative to #'substitute-key-definition
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
4776 staticpro (&Qxemacs_command_remapping); |
428 | 4777 } |
4778 | |
4779 void | |
4780 complex_vars_of_keymap (void) | |
4781 { | |
4782 /* This function can GC */ | |
4783 Lisp_Object ESC_prefix = intern ("ESC-prefix"); | |
4784 Lisp_Object meta_disgustitute; | |
4785 | |
4786 Vcurrent_global_map = Fmake_keymap (Qnil); | |
771 | 4787 Vglobal_tty_map = Fmake_keymap (intern ("global-tty-map")); |
4788 Vglobal_window_system_map = | |
4789 Fmake_keymap (intern ("global-window-system-map")); | |
428 | 4790 |
4791 meta_disgustitute = Fmake_keymap (Qnil); | |
4792 Ffset (ESC_prefix, meta_disgustitute); | |
4793 /* no need to protect meta_disgustitute, though */ | |
442 | 4794 keymap_store_internal (MAKE_MODIFIER_HASH_KEY (XEMACS_MOD_META), |
428 | 4795 XKEYMAP (Vcurrent_global_map), |
4796 meta_disgustitute); | |
4797 XKEYMAP (Vcurrent_global_map)->sub_maps_cache = Qt; | |
4798 | |
4799 Vkey_translation_map = Fmake_sparse_keymap (intern ("key-translation-map")); | |
4800 } |