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