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