annotate src/keymap.c @ 400:a86b2b5e0111 r21-2-30

Import from CVS: tag r21-2-30
author cvs
date Mon, 13 Aug 2007 11:14:34 +0200
parents 74fd4e045ea6
children 2f8bb876ab1d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Manipulation of keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 1991-1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Totally redesigned by jwz in 1991.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
24 /* Synched up with: Mule 2.0. Not synched with FSF. Substantially
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
25 different from FSF. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
26
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "bytecode.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "console.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "elhash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "keymap.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
41 #ifdef WINDOWSNT
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
42 /* Hmm, under unix we want X modifiers, under NT we want X modifiers if
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
43 we are running X and Windows modifiers otherwise.
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
44 gak. This is a kludge until we support multiple native GUIs!
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
45 */
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
46 #undef MOD_ALT
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
47 #undef MOD_CONTROL
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
48 #undef MOD_SHIFT
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
49 #endif
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
50
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 114
diff changeset
51 #include "events-mod.h"
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
52
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 241
diff changeset
54 /* A keymap contains six slots:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 parents Ordered list of keymaps to search after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 this one if no match is found.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Keymaps can thus be arranged in a hierarchy.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 table A hash table, hashing keysyms to their bindings.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
61 It will be one of the following:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
62
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
63 -- a symbol, e.g. 'home
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
64 -- a character, representing something printable
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
65 (not ?\C-c meaning C-c, for instance)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
66 -- an integer representing a modifier combination
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 inverse_table A hash table, hashing bindings to the list of keysyms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 in this keymap which are bound to them. This is to make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 the Fwhere_is_internal() function be fast. It needs to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 fast because we want to be able to call it in realtime to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 update the keyboard-equivalents on the pulldown menus.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Values of the table are either atoms (keysyms)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 or a dotted list of keysyms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 sub_maps_cache An alist; for each entry in this keymap whose binding is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 a keymap (that is, Fkeymapp()) this alist associates that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 keysym with that binding. This is used to optimize both
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Fwhere_is_internal() and Faccessible_keymaps(). This slot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 gets set to the symbol `t' every time a change is made to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 this keymap, causing it to be recomputed when next needed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 prompt See `set-keymap-prompt'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 default_binding See `set-keymap-default-binding'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Sequences of keys are stored in the obvious way: if the sequence of keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 "abc" was bound to some command `foo', the hierarchy would look like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 keymap-1: associates "a" with keymap-2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 keymap-2: associates "b" with keymap-3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 keymap-3: associates "c" with foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 However, bucky bits ("modifiers" to the X-minded) are represented in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 keymap hierarchy as well. (This lets us use EQable objects as hash keys.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Each combination of modifiers (e.g. control-hyper) gets its own submap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 off of the main map. The hash key for a modifier combination is
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
98 an integer, computed by MAKE_MODIFIER_HASH_KEY().
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
99
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 If the key `C-a' was bound to some command, the hierarchy would look like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
102 keymap-1: associates the integer MOD_CONTROL with keymap-2
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 keymap-2: associates "a" with the command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 Similarly, if the key `C-H-a' was bound to some command, the hierarchy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 would look like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
108 keymap-1: associates the integer (MOD_CONTROL | MOD_HYPER)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 with keymap-2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 keymap-2: associates "a" with the command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 Note that a special exception is made for the meta modifier, in order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 to deal with ESC/meta lossage. Any key combination containing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 meta modifier is first indexed off of the main map into the meta
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
115 submap (with hash key MOD_META) and then indexed off of the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 meta submap with the meta modifier removed from the key combination.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 For example, when associating a command with C-M-H-a, we'd have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
119 keymap-1: associates the integer MOD_META with keymap-2
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
120 keymap-2: associates the integer (MOD_CONTROL | MOD_HYPER)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 with keymap-3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 keymap-3: associates "a" with the command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Note that keymap-2 might have normal bindings in it; these would be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 for key combinations containing only the meta modifier, such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 M-y or meta-backspace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 If the command that "a" was bound to in keymap-3 was itself a keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 then that would make the key "C-M-H-a" be a prefix character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Note that this new model of keymaps takes much of the magic away from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 the Escape key: the value of the variable `esc-map' is no longer indexed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 in the `global-map' under the ESC key. It's indexed under the integer
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
134 MOD_META. This is not user-visible, however; none of the "bucky"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 maps are.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 There is a hack in Flookup_key() that makes (lookup-key global-map "\^[")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 and (define-key some-random-map "\^[" my-esc-map) work as before, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 compatibility.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 Since keymaps are opaque, the only way to extract information from them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 is with the functions lookup-key, key-binding, local-key-binding, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 global-key-binding, which work just as before, and the new function
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
144 map-keymap, which is roughly analogous to maphash.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 Note that map-keymap perpetuates the illusion that the "bucky" submaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 don't exist: if you map over a keymap with bucky submaps, it will also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 map over those submaps. It does not, however, map over other random
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 submaps of the keymap, just the bucky ones.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 One implication of this is that when you map over `global-map', you will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 also map over `esc-map'. It is merely for compatibility that the esc-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 is accessible at all; I think that's a bad thing, since it blurs the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 distinction between ESC and "meta" even more. "M-x" is no more a two-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 key sequence than "C-x" is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
159 struct Lisp_Keymap
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 struct lcrecord_header header;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
162 Lisp_Object parents; /* Keymaps to be searched after this one.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
163 An ordered list */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 Lisp_Object prompt; /* Qnil or a string to print in the minibuffer
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
165 when reading from this keymap */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 Lisp_Object table; /* The contents of this keymap */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 Lisp_Object inverse_table; /* The inverse mapping of the above */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 Lisp_Object default_binding; /* Use this if no other binding is found
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
169 (this overrides parent maps and the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
170 normal global-map lookup). */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 Lisp_Object sub_maps_cache; /* Cache of directly inferior keymaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 This holds an alist, of the key and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 maps, or the modifier bit and the map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 If this is the symbol t, then the cache
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
175 needs to be recomputed. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 Lisp_Object name; /* Just for debugging convenience */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
177 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
179 #define MAKE_MODIFIER_HASH_KEY(modifier) make_int (modifier)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
180 #define MODIFIER_HASH_KEY_BITS(x) (INTP (x) ? XINT (x) : 0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 /* Actually allocate storage for these variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
186 Lisp_Object Vcurrent_global_map; /* Always a keymap */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 static Lisp_Object Vmouse_grabbed_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 /* Alist of minor mode variables and keymaps. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 static Lisp_Object Qminor_mode_map_alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 static Lisp_Object Voverriding_local_map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 static Lisp_Object Vkey_translation_map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
197 static Lisp_Object Vvertical_divider_map;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
198
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 /* This is incremented whenever a change is made to a keymap. This is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 so that things which care (such as the menubar code) can recompute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 privately-cached data when the user has changed keybindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 int keymap_tick;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 /* Prefixing a key with this character is the same as sending a meta bit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 Lisp_Object Vmeta_prefix_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 Lisp_Object Qkeymapp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 Lisp_Object Vsingle_space_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 Lisp_Object Qsuppress_keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 Lisp_Object Qmodeline_map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 Lisp_Object Qtoolbar_map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
214 EXFUN (Fkeymap_fullness, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
215 EXFUN (Fset_keymap_name, 2);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
216 EXFUN (Fsingle_key_description, 1);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
217
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
218 static void describe_command (Lisp_Object definition, Lisp_Object buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 static void describe_map (Lisp_Object keymap, Lisp_Object elt_prefix,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
220 void (*elt_describer) (Lisp_Object, Lisp_Object),
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
221 int partial,
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
222 Lisp_Object shadow,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
223 int mice_only_p,
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
224 Lisp_Object buffer);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
225 static Lisp_Object keymap_submaps (Lisp_Object keymap);
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
226
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 Lisp_Object Qcontrol, Qctrl, Qmeta, Qsuper, Qhyper, Qalt, Qshift;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
228 Lisp_Object Qbutton0, Qbutton1, Qbutton2, Qbutton3;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
229 Lisp_Object Qbutton4, Qbutton5, Qbutton6, Qbutton7;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
230 Lisp_Object Qbutton0up, Qbutton1up, Qbutton2up, Qbutton3up;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
231 Lisp_Object Qbutton4up, Qbutton5up, Qbutton6up, Qbutton7up;
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
232
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 Lisp_Object Qmenu_selection;
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
234 /* Emacs compatibility */
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
235 Lisp_Object Qdown_mouse_1, Qdown_mouse_2, Qdown_mouse_3, Qdown_mouse_4,
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
236 Qdown_mouse_5;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
237 Lisp_Object Qmouse_1, Qmouse_2, Qmouse_3, Qmouse_4, Qmouse_5;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 /* Kludge kludge kludge */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 Lisp_Object QLFD, QTAB, QRET, QESC, QDEL, QSPC, QBS;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 /* The keymap Lisp object */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 static Lisp_Object
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
248 mark_keymap (Lisp_Object obj)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
250 Lisp_Keymap *keymap = XKEYMAP (obj);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
251 mark_object (keymap->parents);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
252 mark_object (keymap->prompt);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
253 mark_object (keymap->inverse_table);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
254 mark_object (keymap->sub_maps_cache);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
255 mark_object (keymap->default_binding);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
256 mark_object (keymap->name);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
257 return keymap->table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
259
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 print_keymap (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 /* This function can GC */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
264 Lisp_Keymap *keymap = XKEYMAP (obj);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 char buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 if (print_readably)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 error ("printing unreadable object #<keymap 0x%x>", keymap->header.uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 write_c_string ("#<keymap ", printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 if (!NILP (keymap->name))
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
270 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
271 print_internal (keymap->name, printcharfun, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
272 write_c_string (" ", printcharfun);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
273 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
274 sprintf (buf, "size %ld 0x%x>",
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
275 (long) XINT (Fkeymap_fullness (obj)), keymap->header.uid);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 write_c_string (buf, printcharfun);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
279 static const struct lrecord_description keymap_description[] = {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
280 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, parents) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
281 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, prompt) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
282 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, table) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
283 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, inverse_table) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
284 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, default_binding) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
285 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, sub_maps_cache) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
286 { XD_LISP_OBJECT, offsetof (Lisp_Keymap, name) },
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
287 { XD_END }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
288 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
289
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
290 /* No need for keymap_equal #### Why not? */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
291 DEFINE_LRECORD_IMPLEMENTATION ("keymap", keymap,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
292 mark_keymap, print_keymap, 0, 0, 0,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
293 keymap_description,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
294 Lisp_Keymap);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 /* Traversing keymaps and their parents */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 traverse_keymaps (Lisp_Object start_keymap, Lisp_Object start_parents,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 Lisp_Object (*mapper) (Lisp_Object keymap, void *mapper_arg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 void *mapper_arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 Lisp_Object keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 Lisp_Object tail = start_parents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 Lisp_Object malloc_sucks[10];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 Lisp_Object malloc_bites = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 int stack_depth = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 GCPRO4 (*malloc_sucks, malloc_bites, start_keymap, tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 gcpro1.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 start_keymap = get_keymap (start_keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 keymap = start_keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 /* Hack special-case parents at top-level */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
318 tail = !NILP (tail) ? tail : XKEYMAP (keymap)->parents;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 Lisp_Object result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 QUIT;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
325 result = mapper (keymap, mapper_arg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 if (!NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 while (CONSP (malloc_bites))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
330 Lisp_Cons *victim = XCONS (malloc_bites);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 malloc_bites = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
335 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 if (stack_depth == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
342 return Qnil; /* Nothing found */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 stack_depth--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 if (CONSP (malloc_bites))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
347 Lisp_Cons *victim = XCONS (malloc_bites);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 tail = victim->car;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 malloc_bites = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 tail = malloc_sucks[stack_depth];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 gcpro1.nvars = stack_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 keymap = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 tail = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 Lisp_Object parents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 keymap = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 tail = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 parents = XKEYMAP (keymap)->parents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 if (!CONSP (parents))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 else if (NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 /* Tail-recurse */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 tail = parents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 if (CONSP (malloc_bites))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 malloc_bites = noseeum_cons (tail, malloc_bites);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 else if (stack_depth < countof (malloc_sucks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 malloc_sucks[stack_depth++] = tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 gcpro1.nvars = stack_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 /* *&@##[*&^$ C. @#[$*&@# Unix. Losers all. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 for (i = 0, malloc_bites = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 i < countof (malloc_sucks);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 malloc_bites = noseeum_cons (malloc_sucks[i],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 malloc_bites);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 gcpro1.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 tail = parents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 if (EQ (keymap, start_keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 signal_simple_error ("Cyclic keymap indirection",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 start_keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 /* Some low-level functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 static unsigned int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 bucky_sym_to_bucky_bit (Lisp_Object sym)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
412 if (EQ (sym, Qcontrol)) return MOD_CONTROL;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
413 if (EQ (sym, Qmeta)) return MOD_META;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
414 if (EQ (sym, Qsuper)) return MOD_SUPER;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
415 if (EQ (sym, Qhyper)) return MOD_HYPER;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
416 if (EQ (sym, Qalt)) return MOD_ALT;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
417 if (EQ (sym, Qsymbol)) return MOD_ALT; /* #### - reverse compat */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
418 if (EQ (sym, Qshift)) return MOD_SHIFT;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
419
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
420 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 control_meta_superify (Lisp_Object frob, unsigned int modifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 if (modifiers == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 return frob;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 frob = Fcons (frob, Qnil);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
429 if (modifiers & MOD_SHIFT) frob = Fcons (Qshift, frob);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
430 if (modifiers & MOD_ALT) frob = Fcons (Qalt, frob);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
431 if (modifiers & MOD_HYPER) frob = Fcons (Qhyper, frob);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
432 if (modifiers & MOD_SUPER) frob = Fcons (Qsuper, frob);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
433 if (modifiers & MOD_CONTROL) frob = Fcons (Qcontrol, frob);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
434 if (modifiers & MOD_META) frob = Fcons (Qmeta, frob);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
435 return frob;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 static Lisp_Object
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
439 make_key_description (const struct key_data *key, int prettify)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 Lisp_Object keysym = key->keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 unsigned int modifiers = key->modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
444 if (prettify && CHARP (keysym))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 /* This is a little slow, but (control a) is prettier than (control 65).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 It's now ok to do this for digit-chars too, since we've fixed the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 bug where \9 read as the integer 9 instead of as the symbol with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 "9" as its name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 /* !!#### I'm not sure how correct this is. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 Bufbyte str [1 + MAX_EMCHAR_LEN];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 Bytecount count = set_charptr_emchar (str, XCHAR (keysym));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 str[count] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 keysym = intern ((char *) str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
457 return control_meta_superify (keysym, modifiers);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 /* Low-level keymap-store functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 raw_lookup_key (Lisp_Object keymap,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
467 const struct key_data *raw_keys, int raw_keys_count,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 int keys_so_far, int accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 /* Relies on caller to gc-protect args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 keymap_lookup_directly (Lisp_Object keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 Lisp_Object keysym, unsigned int modifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
475 Lisp_Keymap *k;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 if ((modifiers & ~(MOD_CONTROL | MOD_META | MOD_SUPER | MOD_HYPER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 | MOD_ALT | MOD_SHIFT)) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 k = XKEYMAP (keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 /* If the keysym is a one-character symbol, use the char code instead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 if (SYMBOLP (keysym) && string_char_length (XSYMBOL (keysym)->name) == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 Lisp_Object i_fart_on_gcc =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 make_char (string_char (XSYMBOL (keysym)->name, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 keysym = i_fart_on_gcc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 if (modifiers & MOD_META) /* Utterly hateful ESC lossage */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
492 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
493 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (MOD_META),
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
494 k->table, Qnil);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
495 if (NILP (submap))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
496 return Qnil;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
497 k = XKEYMAP (submap);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
498 modifiers &= ~MOD_META;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
499 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 if (modifiers != 0)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
502 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
503 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (modifiers),
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
504 k->table, Qnil);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
505 if (NILP (submap))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
506 return Qnil;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
507 k = XKEYMAP (submap);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
508 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
509 return Fgethash (keysym, k->table, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 keymap_store_inverse_internal (Lisp_Object inverse_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 Lisp_Object keysym,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 Lisp_Object keys = Fgethash (value, inverse_table, Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 if (UNBOUNDP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 keys = keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 /* Don't cons this unless necessary */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 /* keys = Fcons (keysym, Qnil); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 Fputhash (value, keys, inverse_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 else if (!CONSP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 /* Now it's necessary to cons */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 keys = Fcons (keys, keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 Fputhash (value, keys, inverse_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
534 while (CONSP (XCDR (keys)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 keys = XCDR (keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 XCDR (keys) = Fcons (XCDR (keys), keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 /* No need to call puthash because we've destructively
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 modified the list tail in place */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 keymap_delete_inverse_internal (Lisp_Object inverse_table,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
545 Lisp_Object keysym,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 Lisp_Object keys = Fgethash (value, inverse_table, Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 Lisp_Object new_keys = keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 Lisp_Object *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 if (UNBOUNDP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 for (prev = &new_keys, tail = new_keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 prev = &(XCDR (tail)), tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 if (EQ (tail, keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 *prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 else if (EQ (keysym, XCAR (tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 *prev = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 if (NILP (new_keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 Fremhash (value, inverse_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 else if (!EQ (keys, new_keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 /* Removed the first elt */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 Fputhash (value, new_keys, inverse_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 /* else the list's tail has been modified, so we don't need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 touch the hash table again (the pointer in there is ok).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
582 /* Prevent luser from shooting herself in the foot using something like
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
583 (define-key ctl-x-4-map "p" global-map) */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
584 static void
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
585 check_keymap_definition_loop (Lisp_Object def, Lisp_Keymap *to_keymap)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
586 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
587 def = get_keymap (def, 0, 0);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
588
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
589 if (KEYMAPP (def))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
590 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
591 Lisp_Object maps;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
592
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
593 if (XKEYMAP (def) == to_keymap)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
594 signal_simple_error ("Cyclic keymap definition", def);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
595
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
596 for (maps = keymap_submaps (def);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
597 CONSP (maps);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
598 maps = XCDR (maps))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
599 check_keymap_definition_loop (XCDR (XCAR (maps)), to_keymap);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
600 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
601 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 static void
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
604 keymap_store_internal (Lisp_Object keysym, Lisp_Keymap *keymap,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
605 Lisp_Object def)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
607 Lisp_Object prev_def = Fgethash (keysym, keymap->table, Qnil);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
608
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
609 if (EQ (prev_def, def))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 return;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
611
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
612 check_keymap_definition_loop (def, keymap);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
613
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
614 if (!NILP (prev_def))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
615 keymap_delete_inverse_internal (keymap->inverse_table,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
616 keysym, prev_def);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
617 if (NILP (def))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 Fremhash (keysym, keymap->table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
623 Fputhash (keysym, def, keymap->table);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
624 keymap_store_inverse_internal (keymap->inverse_table,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
625 keysym, def);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 keymap_tick++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 static Lisp_Object
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
632 create_bucky_submap (Lisp_Keymap *k, unsigned int modifiers,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 Lisp_Object parent_for_debugging_info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 Lisp_Object submap = Fmake_sparse_keymap (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 /* User won't see this, but it is nice for debugging Emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 XKEYMAP (submap)->name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 = control_meta_superify (parent_for_debugging_info, modifiers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 /* Invalidate cache */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 k->sub_maps_cache = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 keymap_store_internal (MAKE_MODIFIER_HASH_KEY (modifiers), k, submap);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
642 return submap;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 /* Relies on caller to gc-protect keymap, keysym, value */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
648 keymap_store (Lisp_Object keymap, const struct key_data *key,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 Lisp_Object value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 Lisp_Object keysym = key->keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 unsigned int modifiers = key->modifiers;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
653 Lisp_Keymap *k = XKEYMAP (keymap);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
654
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
655 assert ((modifiers & ~(MOD_CONTROL | MOD_META | MOD_SUPER | MOD_HYPER
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
656 | MOD_ALT | MOD_SHIFT)) == 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 /* If the keysym is a one-character symbol, use the char code instead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 if (SYMBOLP (keysym) && string_char_length (XSYMBOL (keysym)->name) == 1)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
660 keysym = make_char (string_char (XSYMBOL (keysym)->name, 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 if (modifiers & MOD_META) /* Utterly hateful ESC lossage */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (MOD_META),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 k->table, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 if (NILP (submap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 submap = create_bucky_submap (k, MOD_META, keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 k = XKEYMAP (submap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 modifiers &= ~MOD_META;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 if (modifiers != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 Lisp_Object submap = Fgethash (MAKE_MODIFIER_HASH_KEY (modifiers),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 k->table, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 if (NILP (submap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 submap = create_bucky_submap (k, modifiers, keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 k = XKEYMAP (submap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 k->sub_maps_cache = Qt; /* Invalidate cache */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 keymap_store_internal (keysym, k, value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 /* Listing the submaps of a keymap */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 struct keymap_submaps_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 Lisp_Object *result_locative;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
694 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
695 keymap_submaps_mapper_0 (Lisp_Object key, Lisp_Object value,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 void *keymap_submaps_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 /* Perform any autoloads, etc */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
700 Fkeymapp (value);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
701 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
704 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
705 keymap_submaps_mapper (Lisp_Object key, Lisp_Object value,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 void *keymap_submaps_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 Lisp_Object *result_locative;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
710 struct keymap_submaps_closure *cl =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
711 (struct keymap_submaps_closure *) keymap_submaps_closure;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 result_locative = cl->result_locative;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
714 if (!NILP (Fkeymapp (value)))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
715 *result_locative = Fcons (Fcons (key, value), *result_locative);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
716 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
719 static int map_keymap_sort_predicate (Lisp_Object obj1, Lisp_Object obj2,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 Lisp_Object pred);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 keymap_submaps (Lisp_Object keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 /* This function can GC */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
726 Lisp_Keymap *k = XKEYMAP (keymap);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 if (EQ (k->sub_maps_cache, Qt)) /* Unknown */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 struct keymap_submaps_closure keymap_submaps_closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 GCPRO2 (keymap, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 keymap_submaps_closure.result_locative = &result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 /* Do this first pass to touch (and load) any autoloaded maps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 elisp_maphash (keymap_submaps_mapper_0, k->table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 &keymap_submaps_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 elisp_maphash (keymap_submaps_mapper, k->table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 &keymap_submaps_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 /* keep it sorted so that the result of accessible-keymaps is ordered */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
743 k->sub_maps_cache = list_sort (result,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 map_keymap_sort_predicate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
748 return k->sub_maps_cache;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 /* Basic operations on keymaps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 static Lisp_Object
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
757 make_keymap (size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
759 Lisp_Object result;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
760 Lisp_Keymap *keymap = alloc_lcrecord_type (Lisp_Keymap, &lrecord_keymap);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 XSETKEYMAP (result, keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
764 keymap->parents = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
765 keymap->prompt = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
766 keymap->table = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
767 keymap->inverse_table = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 keymap->default_binding = Qnil;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
769 keymap->sub_maps_cache = Qnil; /* No possible submaps */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
770 keymap->name = Qnil;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
771
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 if (size != 0) /* hack for copy-keymap */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
774 keymap->table =
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
775 make_lisp_hash_table (size, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 /* Inverse table is often less dense because of duplicate key-bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 If not, it will grow anyway. */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
778 keymap->inverse_table =
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
779 make_lisp_hash_table (size * 3 / 4, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
781 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
784 DEFUN ("make-keymap", Fmake_keymap, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 Construct and return a new keymap object.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
786 All entries in it are nil, meaning "command undefined".
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 Optional argument NAME specifies a name to assign to the keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 as in `set-keymap-name'. This name is only a debugging convenience;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 it is not used except when printing the keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
791 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
792 (name))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 Lisp_Object keymap = make_keymap (60);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 if (!NILP (name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 Fset_keymap_name (keymap, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 return keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
800 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 Construct and return a new keymap object.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
802 All entries in it are nil, meaning "command undefined". The only
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 difference between this function and make-keymap is that this function
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
804 returns a "smaller" keymap (one that is expected to contain fewer
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 entries). As keymaps dynamically resize, the distinction is not great.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 Optional argument NAME specifies a name to assign to the keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 as in `set-keymap-name'. This name is only a debugging convenience;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 it is not used except when printing the keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
810 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
811 (name))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 Lisp_Object keymap = make_keymap (8);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 if (!NILP (name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 Fset_keymap_name (keymap, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 return keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
819 DEFUN ("keymap-parents", Fkeymap_parents, 1, 1, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
820 Return the `parent' keymaps of KEYMAP, or nil.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 The parents of a keymap are searched for keybindings when a key sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 isn't bound in this one. `(current-global-map)' is the default parent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 of all keymaps.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
824 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
825 (keymap))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 keymap = get_keymap (keymap, 1, 1);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
828 return Fcopy_sequence (XKEYMAP (keymap)->parents);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
831
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
832
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 traverse_keymaps_noop (Lisp_Object keymap, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
836 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
839 DEFUN ("set-keymap-parents", Fset_keymap_parents, 2, 2, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
840 Set the `parent' keymaps of KEYMAP to PARENTS.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 The parents of a keymap are searched for keybindings when a key sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 isn't bound in this one. `(current-global-map)' is the default parent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 of all keymaps.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
844 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
845 (keymap, parents))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 Lisp_Object k;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 GCPRO2 (keymap, parents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 if (KEYMAPP (parents)) /* backwards-compatibility */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 parents = list1 (parents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 if (!NILP (parents))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 Lisp_Object tail = parents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 while (!NILP (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 CHECK_CONS (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 k = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 /* Require that it be an actual keymap object, rather than a symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 with a (crockish) symbol-function which is a keymap */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 CHECK_KEYMAP (k); /* get_keymap (k, 1, 1); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 tail = XCDR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 /* Check for circularities */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 traverse_keymaps (keymap, parents, traverse_keymaps_noop, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 keymap_tick++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 XKEYMAP (keymap)->parents = Fcopy_sequence (parents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
876 return parents;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
879 DEFUN ("set-keymap-name", Fset_keymap_name, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 Set the `name' of the KEYMAP to NEW-NAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 The name is only a debugging convenience; it is not used except
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 when printing the keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
883 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
884 (keymap, new_name))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 XKEYMAP (keymap)->name = new_name;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
889 return new_name;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
892 DEFUN ("keymap-name", Fkeymap_name, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 Return the `name' of KEYMAP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 The name is only a debugging convenience; it is not used except
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 when printing the keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
896 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
897 (keymap))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
901 return XKEYMAP (keymap)->name;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
904 DEFUN ("set-keymap-prompt", Fset_keymap_prompt, 2, 2, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
905 Set the `prompt' of KEYMAP to string NEW-PROMPT, or `nil'
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 if no prompt is desired. The prompt is shown in the echo-area
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 when reading a key-sequence to be looked-up in this keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
908 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
909 (keymap, new_prompt))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 keymap = get_keymap (keymap, 1, 1);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
912
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 if (!NILP (new_prompt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 CHECK_STRING (new_prompt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 XKEYMAP (keymap)->prompt = new_prompt;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
917 return new_prompt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 keymap_prompt_mapper (Lisp_Object keymap, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
923 return XKEYMAP (keymap)->prompt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
927 DEFUN ("keymap-prompt", Fkeymap_prompt, 1, 2, 0, /*
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
928 Return the `prompt' of KEYMAP.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 If non-nil, the prompt is shown in the echo-area
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 when reading a key-sequence to be looked-up in this keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
931 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
932 (keymap, use_inherited))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 Lisp_Object prompt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 prompt = XKEYMAP (keymap)->prompt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 if (!NILP (prompt) || NILP (use_inherited))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
940 return prompt;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 else
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
942 return traverse_keymaps (keymap, Qnil, keymap_prompt_mapper, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
945 DEFUN ("set-keymap-default-binding", Fset_keymap_default_binding, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 Sets the default binding of KEYMAP to COMMAND, or `nil'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 if no default is desired. The default-binding is returned when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 no other binding for a key-sequence is found in the keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 If a keymap has a non-nil default-binding, neither the keymap's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 parents nor the current global map are searched for key bindings.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
951 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
952 (keymap, command))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 keymap = get_keymap (keymap, 1, 1);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
956
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 XKEYMAP (keymap)->default_binding = command;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
958 return command;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
961 DEFUN ("keymap-default-binding", Fkeymap_default_binding, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 Return the default binding of KEYMAP, or `nil' if it has none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 The default-binding is returned when no other binding for a key-sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 is found in the keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 If a keymap has a non-nil default-binding, neither the keymap's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 parents nor the current global map are searched for key bindings.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
967 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
968 (keymap))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 keymap = get_keymap (keymap, 1, 1);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
972 return XKEYMAP (keymap)->default_binding;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
975 DEFUN ("keymapp", Fkeymapp, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 Return t if ARG is a keymap object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 The keymap may be autoloaded first if necessary.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
978 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
979 (object))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 /* This function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
982 return KEYMAPP (get_keymap (object, 0, 0)) ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 /* Check that OBJECT is a keymap (after dereferencing through any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 symbols). If it is, return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 is an autoload form, do the autoload and try again.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
990 If AUTOLOAD is nonzero, callers must assume GC is possible.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 ERRORP controls how we respond if OBJECT isn't a keymap.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
993 If ERRORP is non-zero, signal an error; otherwise, just return Qnil.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
994
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
995 Note that most of the time, we don't want to pursue autoloads.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
996 Functions like Faccessible_keymaps which scan entire keymap trees
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
997 shouldn't load every autoloaded keymap. I'm not sure about this,
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
998 but it seems to me that only read_key_sequence, Flookup_key, and
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
999 Fdefine_key should cause keymaps to be autoloaded. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1000
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 get_keymap (Lisp_Object object, int errorp, int autoload)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 Lisp_Object tem = indirect_function (object, 0);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1008
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 if (KEYMAPP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 return tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 /* Should we do an autoload? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 else if (autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 /* (autoload "filename" doc nil keymap) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 && SYMBOLP (object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 && CONSP (tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 && EQ (XCAR (tem), Qautoload)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 && EQ (Fcar (Fcdr (Fcdr (Fcdr (Fcdr (tem))))), Qkeymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 GCPRO2 (tem, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 do_autoload (tem, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 else if (errorp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 object = wrong_type_argument (Qkeymapp, object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 /* Given OBJECT which was found in a slot in a keymap,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 trace indirect definitions to get the actual definition of that slot.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 An indirect definition is a list of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 and INDEX is an ASCII code, or a cons of (KEYSYM . MODIFIERS).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 get_keyelt (Lisp_Object object, int accept_default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 Lisp_Object map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 tail_recurse:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 if (!CONSP (object))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1045 return object;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 GCPRO1 (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 map = XCAR (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 map = get_keymap (map, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 /* If the contents are (KEYMAP . ELEMENT), go indirect. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 if (!NILP (map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 Lisp_Object idx = Fcdr (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 struct key_data indirection;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 if (CHARP (idx))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1061 Lisp_Event event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 event.event_type = empty_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 character_to_event (XCHAR (idx), &event,
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
1064 XCONSOLE (Vselected_console), 0, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 indirection = event.event.key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 else if (CONSP (idx))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 if (!INTP (XCDR (idx)))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1070 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 indirection.keysym = XCAR (idx);
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
1072 indirection.modifiers = (unsigned char) XINT (XCDR (idx));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 else if (SYMBOLP (idx))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 indirection.keysym = idx;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 indirection.modifiers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 /* Random junk */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1082 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1084 return raw_lookup_key (map, &indirection, 1, 0, accept_default);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 else if (STRINGP (XCAR (object)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 /* If the keymap contents looks like (STRING . DEFN),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 use DEFN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 Keymap alist elements like (CHAR MENUSTRING . DEFN)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 will be used by HierarKey menus. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 object = XCDR (object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 /* Anything else is really the value. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1098 return object;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 static Lisp_Object
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1103 keymap_lookup_1 (Lisp_Object keymap, const struct key_data *key,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 int accept_default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 /* This function can GC */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1107 return get_keyelt (keymap_lookup_directly (keymap,
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1108 key->keysym, key->modifiers),
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1109 accept_default);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 /* Copying keymaps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 struct copy_keymap_inverse_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 Lisp_Object inverse_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
1122 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1123 copy_keymap_inverse_mapper (Lisp_Object key, Lisp_Object value,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 void *copy_keymap_inverse_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1126 struct copy_keymap_inverse_closure *closure =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1127 (struct copy_keymap_inverse_closure *) copy_keymap_inverse_closure;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 /* copy-sequence deals with dotted lists. */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1130 if (CONSP (value))
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1131 value = Fcopy_list (value);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1132 Fputhash (key, value, closure->inverse_table);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
1133
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
1134 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 static Lisp_Object
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1139 copy_keymap_internal (Lisp_Keymap *keymap)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 Lisp_Object nkm = make_keymap (0);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1142 Lisp_Keymap *new_keymap = XKEYMAP (nkm);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 struct copy_keymap_inverse_closure copy_keymap_inverse_closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 copy_keymap_inverse_closure.inverse_table = keymap->inverse_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1146 new_keymap->parents = Fcopy_sequence (keymap->parents);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 new_keymap->sub_maps_cache = Qnil; /* No submaps */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1148 new_keymap->table = Fcopy_hash_table (keymap->table);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1149 new_keymap->inverse_table = Fcopy_hash_table (keymap->inverse_table);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1150 new_keymap->default_binding = keymap->default_binding;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 /* After copying the inverse map, we need to copy the conses which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 are its values, lest they be shared by the copy, and mangled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 elisp_maphash (copy_keymap_inverse_mapper, keymap->inverse_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 &copy_keymap_inverse_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 return nkm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 static Lisp_Object copy_keymap (Lisp_Object keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 struct copy_keymap_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1164 Lisp_Keymap *self;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
1167 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1168 copy_keymap_mapper (Lisp_Object key, Lisp_Object value,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 void *copy_keymap_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 /* This function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1172 struct copy_keymap_closure *closure =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1173 (struct copy_keymap_closure *) copy_keymap_closure;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 /* When we encounter a keymap which is indirected through a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 symbol, we need to copy the sub-map. In v18, the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 (lookup-key (copy-keymap global-map) "\C-x")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 returned a new keymap, not the symbol 'Control-X-prefix.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 */
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1180 value = get_keymap (value, 0, 1); /* #### autoload GC-safe here? */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1181 if (KEYMAPP (value))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 keymap_store_internal (key, closure->self,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1183 copy_keymap (value));
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
1184 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 copy_keymap (Lisp_Object keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 struct copy_keymap_closure copy_keymap_closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 keymap = copy_keymap_internal (XKEYMAP (keymap));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 copy_keymap_closure.self = XKEYMAP (keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 elisp_maphash (copy_keymap_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 XKEYMAP (keymap)->table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 &copy_keymap_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 return keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1201 DEFUN ("copy-keymap", Fcopy_keymap, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 Return a copy of the keymap KEYMAP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 The copy starts out with the same definitions of KEYMAP,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 but changing either the copy or KEYMAP does not affect the other.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 Any key definitions that are subkeymaps are recursively copied.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1206 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1207 (keymap))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 return copy_keymap (keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 keymap_fullness (Lisp_Object keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 int fullness;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 Lisp_Object sub_maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 keymap = get_keymap (keymap, 1, 1);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1224 fullness = XINT (Fhash_table_count (XKEYMAP (keymap)->table));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 GCPRO2 (keymap, sub_maps);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1226 for (sub_maps = keymap_submaps (keymap);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1227 !NILP (sub_maps);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1228 sub_maps = XCDR (sub_maps))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 if (MODIFIER_HASH_KEY_BITS (XCAR (XCAR (sub_maps))) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1232 Lisp_Object bucky_map = XCDR (XCAR (sub_maps));
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1233 fullness--; /* don't count bucky maps themselves. */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1234 fullness += keymap_fullness (bucky_map);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1238 return fullness;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1241 DEFUN ("keymap-fullness", Fkeymap_fullness, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 Return the number of bindings in the keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1243 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1244 (keymap))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 /* This function can GC */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1247 return make_int (keymap_fullness (get_keymap (keymap, 1, 1)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 /* Defining keys in keymaps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1255 /* Given a keysym (should be a symbol, int, char), make sure it's valid
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1256 and perform any necessary canonicalization. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1257
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 static void
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1259 define_key_check_and_coerce_keysym (Lisp_Object spec,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1260 Lisp_Object *keysym,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1261 unsigned int modifiers)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 /* Now, check and massage the trailing keysym specifier. */
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
1264 if (SYMBOLP (*keysym))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 {
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1266 if (string_char_length (XSYMBOL (*keysym)->name) == 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 {
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1268 Lisp_Object ream_gcc_up_the_ass =
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1269 make_char (string_char (XSYMBOL (*keysym)->name, 0));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1270 *keysym = ream_gcc_up_the_ass;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 goto fixnum_keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 }
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1274 else if (CHAR_OR_CHAR_INTP (*keysym))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 {
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1276 CHECK_CHAR_COERCE_INT (*keysym);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 fixnum_keysym:
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1278 if (XCHAR (*keysym) < ' '
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1279 /* || (XCHAR (*keysym) >= 128 && XCHAR (*keysym) < 160) */)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1280 /* yuck! Can't make the above restriction; too many compatibility
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1281 problems ... */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1282 signal_simple_error ("keysym char must be printable", *keysym);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 /* #### This bites! I want to be able to write (control shift a) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 if (modifiers & MOD_SHIFT)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1285 signal_simple_error
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1286 ("The `shift' modifier may not be applied to ASCII keysyms",
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1287 spec);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1291 signal_simple_error ("Unknown keysym specifier", *keysym);
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
1292 }
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
1293
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
1294 if (SYMBOLP (*keysym))
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
1295 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1296 char *name = (char *) string_data (XSYMBOL (*keysym)->name);
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 2
diff changeset
1297
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1298 /* FSFmacs uses symbols with the printed representation of keysyms in
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1299 their names, like 'M-x, and we use the syntax '(meta x). So, to avoid
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1300 confusion, notice the M-x syntax and signal an error - because
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1301 otherwise it would be interpreted as a regular keysym, and would even
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1302 show up in the list-buffers output, causing confusion to the naive.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1303
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1304 We can get away with this because none of the X keysym names contain
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1305 a hyphen (some contain underscore, however).
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1306
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1307 It might be useful to reject keysyms which are not x-valid-keysym-
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1308 name-p, but that would interfere with various tricks we do to
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1309 sanitize the Sun keyboards, and would make it trickier to
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1310 conditionalize a .emacs file for multiple X servers.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1311 */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1312 if (((int) strlen (name) >= 2 && name[1] == '-')
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1313 #if 1
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1314 ||
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1315 /* Ok, this is a bit more dubious - prevent people from doing things
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1316 like (global-set-key 'RET 'something) because that will have the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1317 same problem as above. (Gag!) Maybe we should just silently
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1318 accept these as aliases for the "real" names?
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1319 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1320 (string_length (XSYMBOL (*keysym)->name) <= 3 &&
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1321 (!strcmp (name, "LFD") ||
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1322 !strcmp (name, "TAB") ||
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1323 !strcmp (name, "RET") ||
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1324 !strcmp (name, "ESC") ||
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1325 !strcmp (name, "DEL") ||
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1326 !strcmp (name, "SPC") ||
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1327 !strcmp (name, "BS")))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1328 #endif /* unused */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1329 )
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1330 signal_simple_error
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1331 ("Invalid (FSF Emacs) key format (see doc of define-key)",
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1332 *keysym);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1333
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1334 /* #### Ok, this is a bit more dubious - make people not lose if they
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1335 do things like (global-set-key 'RET 'something) because that would
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1336 otherwise have the same problem as above. (Gag!) We silently
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1337 accept these as aliases for the "real" names.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1338 */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1339 else if (!strncmp(name, "kp_", 3)) {
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1340 /* Likewise, the obsolete keysym binding of kp_.* should not lose. */
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1341 char temp[50];
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1342
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1343 strncpy(temp, name, sizeof (temp));
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1344 temp[sizeof (temp) - 1] = '\0';
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1345 temp[2] = '-';
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
1346 *keysym = Fintern_soft(make_string((Bufbyte *)temp,
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
1347 strlen(temp)),
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
1348 Qnil);
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1349 } else if (EQ (*keysym, QLFD))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1350 *keysym = QKlinefeed;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1351 else if (EQ (*keysym, QTAB))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1352 *keysym = QKtab;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1353 else if (EQ (*keysym, QRET))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1354 *keysym = QKreturn;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1355 else if (EQ (*keysym, QESC))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1356 *keysym = QKescape;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1357 else if (EQ (*keysym, QDEL))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1358 *keysym = QKdelete;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1359 else if (EQ (*keysym, QSPC))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1360 *keysym = QKspace;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1361 else if (EQ (*keysym, QBS))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1362 *keysym = QKbackspace;
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1363 /* Emacs compatibility */
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1364 else if (EQ(*keysym, Qdown_mouse_1))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1365 *keysym = Qbutton1;
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1366 else if (EQ(*keysym, Qdown_mouse_2))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1367 *keysym = Qbutton2;
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1368 else if (EQ(*keysym, Qdown_mouse_3))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1369 *keysym = Qbutton3;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1370 else if (EQ(*keysym, Qdown_mouse_4))
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1371 *keysym = Qbutton4;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1372 else if (EQ(*keysym, Qdown_mouse_5))
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1373 *keysym = Qbutton5;
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1374 else if (EQ(*keysym, Qmouse_1))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1375 *keysym = Qbutton1up;
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1376 else if (EQ(*keysym, Qmouse_2))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1377 *keysym = Qbutton2up;
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1378 else if (EQ(*keysym, Qmouse_3))
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
1379 *keysym = Qbutton3up;
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1380 else if (EQ(*keysym, Qmouse_4))
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1381 *keysym = Qbutton4up;
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1382 else if (EQ(*keysym, Qmouse_5))
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1383 *keysym = Qbutton5up;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1387
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 /* Given any kind of key-specifier, return a keysym and modifier mask.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1389 Proper canonicalization is performed:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1390
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1391 -- integers are converted into the equivalent characters.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1392 -- one-character strings are converted into the equivalent characters.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1394
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 define_key_parser (Lisp_Object spec, struct key_data *returned_value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 {
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1398 if (CHAR_OR_CHAR_INTP (spec))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1400 Lisp_Event event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 event.event_type = empty_event;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1402 character_to_event (XCHAR_OR_CHAR_INT (spec), &event,
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
1403 XCONSOLE (Vselected_console), 0, 0);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1404 returned_value->keysym = event.event.key.keysym;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 returned_value->modifiers = event.event.key.modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 else if (EVENTP (spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 switch (XEVENT (spec)->event_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 case key_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1413 returned_value->keysym = XEVENT (spec)->event.key.keysym;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 returned_value->modifiers = XEVENT (spec)->event.key.modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 case button_press_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 case button_release_event:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 int down = (XEVENT (spec)->event_type == button_press_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 switch (XEVENT (spec)->event.button.button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 case 1:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 returned_value->keysym = (down ? Qbutton1 : Qbutton1up); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 case 2:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 returned_value->keysym = (down ? Qbutton2 : Qbutton2up); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 case 3:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 returned_value->keysym = (down ? Qbutton3 : Qbutton3up); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 case 4:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 returned_value->keysym = (down ? Qbutton4 : Qbutton4up); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 case 5:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 returned_value->keysym = (down ? Qbutton5 : Qbutton5up); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 case 6:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 returned_value->keysym = (down ? Qbutton6 : Qbutton6up); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 case 7:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 returned_value->keysym = (down ? Qbutton7 : Qbutton7up); break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 default:
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1438 returned_value->keysym = (down ? Qbutton0 : Qbutton0up); break;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 returned_value->modifiers = XEVENT (spec)->event.button.modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 signal_error (Qwrong_type_argument,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 list2 (build_translated_string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 ("unable to bind this type of event"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 spec));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 else if (SYMBOLP (spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 /* Be nice, allow = to mean (=) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 if (bucky_sym_to_bucky_bit (spec) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 signal_simple_error ("Key is a modifier name", spec);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1455 define_key_check_and_coerce_keysym (spec, &spec, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 returned_value->keysym = spec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 returned_value->modifiers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 else if (CONSP (spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 unsigned int modifiers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 Lisp_Object keysym = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 Lisp_Object rest = spec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 /* First, parse out the leading modifier symbols. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 while (CONSP (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 unsigned int modifier;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 keysym = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 modifier = bucky_sym_to_bucky_bit (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 modifiers |= modifier;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 if (!NILP (XCDR (rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 if (! modifier)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1476 signal_simple_error ("Unknown modifier", keysym);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 if (modifier)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1481 signal_simple_error ("Nothing but modifiers here",
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 spec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 rest = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 if (!NILP (rest))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1488 signal_simple_error ("List must be nil-terminated", spec);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1490 define_key_check_and_coerce_keysym (spec, &keysym, modifiers);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 returned_value->keysym = keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 returned_value->modifiers = modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1496 signal_simple_error ("Unknown key-sequence specifier",
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 spec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 /* Used by character-to-event */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 key_desc_list_to_event (Lisp_Object list, Lisp_Object event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 int allow_menu_events)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 struct key_data raw_key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 if (allow_menu_events &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 CONSP (list) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 /* #### where the hell does this come from? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 EQ (XCAR (list), Qmenu_selection))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 Lisp_Object fn, arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 if (! NILP (Fcdr (Fcdr (list))))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1515 signal_simple_error ("Invalid menu event desc", list);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 arg = Fcar (Fcdr (list));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 if (SYMBOLP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 fn = Qcall_interactively;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 fn = Qeval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 XSETFRAME (XEVENT (event)->channel, selected_frame ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 XEVENT (event)->event_type = misc_user_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 XEVENT (event)->event.eval.function = fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 XEVENT (event)->event.eval.object = arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 define_key_parser (list, &raw_key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 if (EQ (raw_key.keysym, Qbutton0) || EQ (raw_key.keysym, Qbutton0up) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 EQ (raw_key.keysym, Qbutton1) || EQ (raw_key.keysym, Qbutton1up) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 EQ (raw_key.keysym, Qbutton2) || EQ (raw_key.keysym, Qbutton2up) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 EQ (raw_key.keysym, Qbutton3) || EQ (raw_key.keysym, Qbutton3up) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 EQ (raw_key.keysym, Qbutton4) || EQ (raw_key.keysym, Qbutton4up) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 EQ (raw_key.keysym, Qbutton5) || EQ (raw_key.keysym, Qbutton5up) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 EQ (raw_key.keysym, Qbutton6) || EQ (raw_key.keysym, Qbutton6up) ||
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 272
diff changeset
1537 EQ (raw_key.keysym, Qbutton7) || EQ (raw_key.keysym, Qbutton7up))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 error ("Mouse-clicks can't appear in saved keyboard macros.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 XEVENT (event)->channel = Vselected_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 XEVENT (event)->event_type = key_press_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 XEVENT (event)->event.key.keysym = raw_key.keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 XEVENT (event)->event.key.modifiers = raw_key.modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 int
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1548 event_matches_key_specifier_p (Lisp_Event *event, Lisp_Object key_specifier)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 {
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 367
diff changeset
1550 Lisp_Object event2;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 int retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 if (event->event_type != key_press_event || NILP (key_specifier) ||
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1555 (INTP (key_specifier) && !CHAR_INTP (key_specifier)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 /* if the specifier is an integer such as 27, then it should match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 both of the events 'escape' and 'control ['. Calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 Fcharacter_to_event() will only match 'escape'. */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1561 if (CHAR_OR_CHAR_INTP (key_specifier))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1562 return (XCHAR_OR_CHAR_INT (key_specifier)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1563 == event_to_character (event, 0, 0, 0));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 /* Otherwise, we cannot call event_to_character() because we may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 be dealing with non-ASCII keystrokes. In any case, if I ask
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 for 'control [' then I should get exactly that, and not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 'escape'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 However, we have to behave differently on TTY's, where 'control ['
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 is silently converted into 'escape' by the keyboard driver.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 In this case, ASCII is the only thing we know about, so we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 to compare the ASCII values. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 GCPRO1 (event2);
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 185
diff changeset
1576 event2 = Fmake_event (Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 Fcharacter_to_event (key_specifier, event2, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 if (XEVENT (event2)->event_type != key_press_event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 retval = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 else if (CONSOLE_TTY_P (XCONSOLE (EVENT_CHANNEL (event))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 int ch1, ch2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 ch1 = event_to_character (event, 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 ch2 = event_to_character (XEVENT (event2), 0, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 retval = (ch1 >= 0 && ch2 >= 0 && ch1 == ch2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 else if (EQ (event->event.key.keysym, XEVENT (event2)->event.key.keysym) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 event->event.key.modifiers == XEVENT (event2)->event.key.modifiers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 retval = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 retval = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 Fdeallocate_event (event2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 return retval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 static int
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1599 meta_prefix_char_p (const struct key_data *key)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1601 Lisp_Event event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 event.event_type = key_press_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 event.channel = Vselected_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 event.event.key.keysym = key->keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 event.event.key.modifiers = key->modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 return event_matches_key_specifier_p (&event, Vmeta_prefix_char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1610 DEFUN ("event-matches-key-specifier-p", Fevent_matches_key_specifier_p, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 Return non-nil if EVENT matches KEY-SPECIFIER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 This can be useful, e.g., to determine if the user pressed `help-char' or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 `quit-char'.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1614 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1615 (event, key_specifier))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 CHECK_LIVE_EVENT (event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 return (event_matches_key_specifier_p (XEVENT (event), key_specifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1622 #define MACROLET(k,m) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1623 returned_value->keysym = (k); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1624 returned_value->modifiers = (m); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1625 RETURN_SANS_WARNINGS; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1626 } while (0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1627
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 /* ASCII grunge.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1629 Given a keysym, return another keysym/modifier pair which could be
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1630 considered the same key in an ASCII world. Backspace returns ^H, for
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 example.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 define_key_alternate_name (struct key_data *key,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 struct key_data *returned_value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 Lisp_Object keysym = key->keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 unsigned int modifiers = key->modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 unsigned int modifiers_sans_control = (modifiers & (~MOD_CONTROL));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 unsigned int modifiers_sans_meta = (modifiers & (~MOD_META));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 returned_value->keysym = Qnil; /* By default, no "alternate" key */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 returned_value->modifiers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 if (modifiers_sans_meta == MOD_CONTROL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 if EQ (keysym, QKspace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 MACROLET (make_char ('@'), modifiers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 else if (!CHARP (keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 else switch (XCHAR (keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 case '@': /* c-@ => c-space */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 MACROLET (QKspace, modifiers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 case 'h': /* c-h => backspace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 MACROLET (QKbackspace, modifiers_sans_control);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 case 'i': /* c-i => tab */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 MACROLET (QKtab, modifiers_sans_control);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 case 'j': /* c-j => linefeed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 MACROLET (QKlinefeed, modifiers_sans_control);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 case 'm': /* c-m => return */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 MACROLET (QKreturn, modifiers_sans_control);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 case '[': /* c-[ => escape */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 MACROLET (QKescape, modifiers_sans_control);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 else if (modifiers_sans_meta != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 else if (EQ (keysym, QKbackspace)) /* backspace => c-h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 MACROLET (make_char ('h'), (modifiers | MOD_CONTROL));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 else if (EQ (keysym, QKtab)) /* tab => c-i */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 MACROLET (make_char ('i'), (modifiers | MOD_CONTROL));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 else if (EQ (keysym, QKlinefeed)) /* linefeed => c-j */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 MACROLET (make_char ('j'), (modifiers | MOD_CONTROL));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 else if (EQ (keysym, QKreturn)) /* return => c-m */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 MACROLET (make_char ('m'), (modifiers | MOD_CONTROL));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 else if (EQ (keysym, QKescape)) /* escape => c-[ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 MACROLET (make_char ('['), (modifiers | MOD_CONTROL));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 #undef MACROLET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 ensure_meta_prefix_char_keymapp (Lisp_Object keys, int indx,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 Lisp_Object keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 Lisp_Object new_keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 Lisp_Object mpc_binding;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 struct key_data meta_key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 if (NILP (Vmeta_prefix_char) ||
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1696 (INTP (Vmeta_prefix_char) && !CHAR_INTP (Vmeta_prefix_char)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 define_key_parser (Vmeta_prefix_char, &meta_key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 mpc_binding = keymap_lookup_1 (keymap, &meta_key, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 if (NILP (mpc_binding) || !NILP (Fkeymapp (mpc_binding)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 if (indx == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 new_keys = keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 else if (STRINGP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 new_keys = Fsubstring (keys, Qzero, make_int (indx));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 else if (VECTORP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 new_keys = make_vector (indx, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 for (i = 0; i < indx; i++)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1712 XVECTOR_DATA (new_keys) [i] = XVECTOR_DATA (keys) [i];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 abort ();
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1716
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 if (EQ (keys, new_keys))
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1718 error_with_frob (mpc_binding,
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1719 "can't bind %s: %s has a non-keymap binding",
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1720 (char *) XSTRING_DATA (Fkey_description (keys)),
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1721 (char *) XSTRING_DATA (Fsingle_key_description
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1722 (Vmeta_prefix_char)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 else
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1724 error_with_frob (mpc_binding,
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1725 "can't bind %s: %s %s has a non-keymap binding",
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1726 (char *) XSTRING_DATA (Fkey_description (keys)),
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1727 (char *) XSTRING_DATA (Fkey_description (new_keys)),
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1728 (char *) XSTRING_DATA (Fsingle_key_description
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
1729 (Vmeta_prefix_char)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1732 DEFUN ("define-key", Fdefine_key, 3, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 Define key sequence KEYS, in KEYMAP, as DEF.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 KEYMAP is a keymap object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 KEYS is the sequence of keystrokes to bind, described below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 DEF is anything that can be a key's definition:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 nil (means key is undefined in this keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 a command (a Lisp function suitable for interactive calling);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 a string or key sequence vector (treated as a keyboard macro);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 a keymap (to define a prefix key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 a symbol; when the key is looked up, the symbol will stand for its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 function definition, that should at that time be one of the above,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 or another symbol whose function definition is used, and so on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 a cons (STRING . DEFN), meaning that DEFN is the definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 (DEFN should be a valid definition in its own right);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 Contrary to popular belief, the world is not ASCII. When running under a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 window manager, XEmacs can tell the difference between, for example, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 keystrokes control-h, control-shift-h, and backspace. You can, in fact,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 bind different commands to each of these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 A `key sequence' is a set of keystrokes. A `keystroke' is a keysym and some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 set of modifiers (such as control and meta). A `keysym' is what is printed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 on the keys on your keyboard.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 A keysym may be represented by a symbol, or (if and only if it is equivalent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 to an ASCII character in the range 32 - 255) by a character or its equivalent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 ASCII code. The `A' key may be represented by the symbol `A', the character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 `?A', or by the number 65. The `break' key may be represented only by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 symbol `break'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 A keystroke may be represented by a list: the last element of the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 is the key (a symbol, character, or number, as above) and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 preceding elements are the symbolic names of modifier keys (control,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 meta, super, hyper, alt, and shift). Thus, the sequence control-b is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 represented by the forms `(control b)', `(control ?b)', and `(control
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 98)'. A keystroke may also be represented by an event object, as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 returned by the `next-command-event' and `read-key-sequence'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 Note that in this context, the keystroke `control-b' is *not* represented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 by the number 2 (the ASCII code for ^B) or the character `?\^B'. See below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 The `shift' modifier is somewhat of a special case. You should not (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 cannot) use `(meta shift a)' to mean `(meta A)', since for characters that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 have ASCII equivalents, the state of the shift key is implicit in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 keysym (a vs. A). You also cannot say `(shift =)' to mean `+', as that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 sort of thing varies from keyboard to keyboard. The shift modifier is for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 use only with characters that do not have a second keysym on the same key,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 such as `backspace' and `tab'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 A key sequence is a vector of keystrokes. As a degenerate case, elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 of this vector may also be keysyms if they have no modifiers. That is,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 the `A' keystroke is represented by all of these forms:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 A ?A 65 (A) (?A) (65)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 [A] [?A] [65] [(A)] [(?A)] [(65)]
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1788
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 the `control-a' keystroke is represented by these forms:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 (control A) (control ?A) (control 65)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 [(control A)] [(control ?A)] [(control 65)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 the key sequence `control-c control-a' is represented by these forms:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 [(control c) (control a)] [(control ?c) (control ?a)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 [(control 99) (control 65)] etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 Mouse button clicks work just like keypresses: (control button1) means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 pressing the left mouse button while holding down the control key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 \[(control c) (shift button3)] means control-c, hold shift, click right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 Commands may be bound to the mouse-button up-stroke rather than the down-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 stroke as well. `button1' means the down-stroke, and `button1up' means the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 up-stroke. Different commands may be bound to the up and down strokes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 though that is probably not what you want, so be careful.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 For backward compatibility, a key sequence may also be represented by a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 string. In this case, it represents the key sequence(s) that would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 produce that sequence of ASCII characters in a purely ASCII world. For
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1808 example, a string containing the ASCII backspace character, "\\^H", would
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 represent two key sequences: `(control h)' and `backspace'. Binding a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 command to this will actually bind both of those key sequences. Likewise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 for the following pairs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 control h backspace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 control i tab
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 control m return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 control j linefeed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 control [ escape
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 control @ control space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 After binding a command to two key sequences with a form like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1822 (define-key global-map "\\^X\\^I" \'command-1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 it is possible to redefine only one of those sequences like so:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 (define-key global-map [(control x) (control i)] \'command-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 (define-key global-map [(control x) tab] \'command-3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 Of course, all of this applies only when running under a window system. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 you're talking to XEmacs through a TTY connection, you don't get any of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 these features.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1832 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
1833 (keymap, keys, def))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 int idx;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 int metized = 0;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1838 int len;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 int ascii_hack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 struct gcpro gcpro1, gcpro2, gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 if (VECTORP (keys))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1843 len = XVECTOR_LENGTH (keys);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 else if (STRINGP (keys))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
1845 len = XSTRING_CHAR_LENGTH (keys);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
1846 else if (CHAR_OR_CHAR_INTP (keys) || SYMBOLP (keys) || CONSP (keys))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 if (!CONSP (keys)) keys = list1 (keys);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1849 len = 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 keys = make_vector (1, keys); /* this is kinda sleazy. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 keys = wrong_type_argument (Qsequencep, keys);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1855 len = XINT (Flength (keys));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1857 if (len == 0)
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1858 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 GCPRO3 (keymap, keys, def);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 /* ASCII grunge.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 When the user defines a key which, in a strictly ASCII world, would be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 produced by two different keys (^J and linefeed, or ^H and backspace,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 for example) then the binding will be made for both keysyms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 This is done if the user binds a command to a string, as in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 (define-key map "\^H" 'something), but not when using one of the new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 syntaxes, like (define-key map '(control h) 'something).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 ascii_hack = (STRINGP (keys));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 idx = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 Lisp_Object c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 struct key_data raw_key1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 struct key_data raw_key2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 if (STRINGP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 c = make_char (string_char (XSTRING (keys), idx));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 else
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1885 c = XVECTOR_DATA (keys) [idx];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 define_key_parser (c, &raw_key1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 if (!metized && ascii_hack && meta_prefix_char_p (&raw_key1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1891 if (idx == (len - 1))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 /* This is a hack to prevent a binding for the meta-prefix-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 from being made in a map which already has a non-empty "meta"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 submap. That is, we can't let both "escape" and "meta" have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 a binding in the same keymap. This implies that the idiom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 (define-key my-map "\e" my-escape-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 (define-key my-escape-map "a" 'my-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 no longer works. That's ok. Instead the luser should do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 (define-key my-map "\ea" 'my-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 or, more correctly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 (define-key my-map "\M-a" 'my-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 and then perhaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 (defvar my-escape-map (lookup-key my-map "\e"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 if the luser really wants the map in a variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 */
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1907 Lisp_Object meta_map;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 struct gcpro ngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 NGCPRO1 (c);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1911 meta_map = Fgethash (MAKE_MODIFIER_HASH_KEY (MOD_META),
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1912 XKEYMAP (keymap)->table, Qnil);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1913 if (!NILP (meta_map)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1914 && keymap_fullness (meta_map) != 0)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1915 signal_simple_error_2
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1916 ("Map contains meta-bindings, can't bind",
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1917 Fsingle_key_description (Vmeta_prefix_char), keymap);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 metized = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 idx++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 if (ascii_hack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 define_key_alternate_name (&raw_key1, &raw_key2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 raw_key2.keysym = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 raw_key2.modifiers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1935
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 if (metized)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1938 raw_key1.modifiers |= MOD_META;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 raw_key2.modifiers |= MOD_META;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 metized = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 /* This crap is to make sure that someone doesn't bind something like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 "C-x M-a" while "C-x ESC" has a non-keymap binding. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 if (raw_key1.modifiers & MOD_META)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 ensure_meta_prefix_char_keymapp (keys, idx, keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
1948 if (++idx == len)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 keymap_store (keymap, &raw_key1, def);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 if (ascii_hack && !NILP (raw_key2.keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 keymap_store (keymap, &raw_key2, def);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 return def;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1956
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 Lisp_Object cmd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 struct gcpro ngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 NGCPRO1 (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 cmd = keymap_lookup_1 (keymap, &raw_key1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 if (NILP (cmd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 cmd = Fmake_sparse_keymap (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 XKEYMAP (cmd)->name /* for debugging */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 = list2 (make_key_description (&raw_key1, 1), keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 keymap_store (keymap, &raw_key1, cmd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 if (NILP (Fkeymapp (cmd)))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
1971 signal_simple_error_2 ("Invalid prefix keys in sequence",
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 c, keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 if (ascii_hack && !NILP (raw_key2.keysym) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 NILP (keymap_lookup_1 (keymap, &raw_key2, 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 keymap_store (keymap, &raw_key2, cmd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 keymap = get_keymap (cmd, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 /* Looking up keys in keymaps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
1989 /* We need a very fast (i.e., non-consing) version of lookup-key in order
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1990 to make where-is-internal really fly. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 struct raw_lookup_key_mapper_closure
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1993 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1994 int remaining;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
1995 const struct key_data *raw_keys;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1996 int raw_keys_count;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1997 int keys_so_far;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1998 int accept_default;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1999 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 static Lisp_Object raw_lookup_key_mapper (Lisp_Object k, void *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 /* Caller should gc-protect args (keymaps may autoload) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 raw_lookup_key (Lisp_Object keymap,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2006 const struct key_data *raw_keys, int raw_keys_count,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 int keys_so_far, int accept_default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 struct raw_lookup_key_mapper_closure c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 c.remaining = raw_keys_count - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 c.raw_keys = raw_keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 c.raw_keys_count = raw_keys_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 c.keys_so_far = keys_so_far;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 c.accept_default = accept_default;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2017 return traverse_keymaps (keymap, Qnil, raw_lookup_key_mapper, &c);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 raw_lookup_key_mapper (Lisp_Object k, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 /* This function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2024 struct raw_lookup_key_mapper_closure *c =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2025 (struct raw_lookup_key_mapper_closure *) arg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 int accept_default = c->accept_default;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 int remaining = c->remaining;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 int keys_so_far = c->keys_so_far;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2029 const struct key_data *raw_keys = c->raw_keys;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 Lisp_Object cmd;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2031
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 if (! meta_prefix_char_p (&(raw_keys[0])))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 /* Normal case: every case except the meta-hack (see below). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2036
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 if (remaining == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 /* Return whatever we found if we're out of keys */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 else if (NILP (cmd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 /* Found nothing (though perhaps parent map may have binding) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 else if (NILP (Fkeymapp (cmd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 /* Didn't find a keymap, and we have more keys.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 * Return a fixnum to indicate that keys were too long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 cmd = make_int (keys_so_far + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2049 cmd = raw_lookup_key (cmd, raw_keys + 1, remaining,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 keys_so_far + 1, accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 /* This is a hack so that looking up a key-sequence whose last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 * element is the meta-prefix-char will return the keymap that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 * the "meta" keys are stored in, if there is no binding for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 * the meta-prefix-char (and if this map has a "meta" submap).
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2058 * If this map doesn't have a "meta" submap, then the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 * meta-prefix-char is looked up just like any other key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 if (remaining == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 /* First look for the prefix-char directly */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 if (NILP (cmd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2067 /* Do kludgy return of the meta-map */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 cmd = Fgethash (MAKE_MODIFIER_HASH_KEY (MOD_META),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 XKEYMAP (k)->table, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 /* Search for the prefix-char-prefixed sequence directly */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 cmd = keymap_lookup_1 (k, &(raw_keys[0]), accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 cmd = get_keymap (cmd, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 if (!NILP (cmd))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2078 cmd = raw_lookup_key (cmd, raw_keys + 1, remaining,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 keys_so_far + 1, accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 else if ((raw_keys[1].modifiers & MOD_META) == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 struct key_data metified;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 metified.keysym = raw_keys[1].keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 metified.modifiers = raw_keys[1].modifiers | MOD_META;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 /* Search for meta-next-char sequence directly */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 cmd = keymap_lookup_1 (k, &metified, accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 if (remaining == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 cmd = get_keymap (cmd, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 if (!NILP (cmd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 cmd = raw_lookup_key (cmd, raw_keys + 2, remaining - 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 keys_so_far + 2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 if (accept_default && NILP (cmd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 cmd = XKEYMAP (k)->default_binding;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2103 return cmd;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 /* Value is number if `keys' is too long; NIL if valid but has no definition.*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 /* Caller should gc-protect arguments */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 lookup_keys (Lisp_Object keymap, int nkeys, Lisp_Object *keys,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 int accept_default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 struct key_data kkk[20];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 struct key_data *raw_keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 if (nkeys == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2120 if (nkeys < countof (kkk))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 raw_keys = kkk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2123 raw_keys = alloca_array (struct key_data, nkeys);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 for (i = 0; i < nkeys; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 define_key_parser (keys[i], &(raw_keys[i]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2129 return raw_lookup_key (keymap, raw_keys, nkeys, 0, accept_default);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 lookup_events (Lisp_Object event_head, int nmaps, Lisp_Object keymaps[],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 int accept_default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 struct key_data kkk[20];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 Lisp_Object event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 int nkeys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 struct key_data *raw_keys;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 Lisp_Object tem = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 int iii;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 CHECK_LIVE_EVENT (event_head);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 nkeys = event_chain_count (event_head);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2150 if (nkeys < countof (kkk))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 raw_keys = kkk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2153 raw_keys = alloca_array (struct key_data, nkeys);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 nkeys = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 EVENT_CHAIN_LOOP (event, event_head)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 define_key_parser (event, &(raw_keys[nkeys++]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 GCPRO2 (keymaps[0], event_head);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 gcpro1.nvars = nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 /* ####raw_keys[].keysym slots aren't gc-protected. We rely (but shouldn't)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 * on somebody else somewhere (obarray) having a pointer to all keysyms. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 for (iii = 0; iii < nmaps; iii++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 tem = raw_lookup_key (keymaps[iii], raw_keys, nkeys, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 if (INTP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 /* Too long in some local map means don't look at global map */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 tem = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 else if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2176 return tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2179 DEFUN ("lookup-key", Flookup_key, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 In keymap KEYMAP, look up key-sequence KEYS. Return the definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 Nil is returned if KEYS is unbound. See documentation of `define-key'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 for valid key definitions and key-sequence specifications.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2183 A number is returned if KEYS is "too long"; that is, the leading
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 characters fail to be a valid sequence of prefix characters in KEYMAP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 The number is how many characters at the front of KEYS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 it takes to reach a non-prefix command.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2187 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2188 (keymap, keys, accept_default))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 if (VECTORP (keys))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2192 return lookup_keys (keymap,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2193 XVECTOR_LENGTH (keys),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2194 XVECTOR_DATA (keys),
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2195 !NILP (accept_default));
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2196 else if (SYMBOLP (keys) || CHAR_OR_CHAR_INTP (keys) || CONSP (keys))
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2197 return lookup_keys (keymap, 1, &keys, !NILP (accept_default));
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2198 else if (STRINGP (keys))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 {
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2200 int length = XSTRING_CHAR_LENGTH (keys);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 int i;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2202 struct key_data *raw_keys = alloca_array (struct key_data, length);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 if (length == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 for (i = 0; i < length; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 Emchar n = string_char (XSTRING (keys), i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 define_key_parser (make_char (n), &(raw_keys[i]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2211 return raw_lookup_key (keymap, raw_keys, length, 0,
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2212 !NILP (accept_default));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 }
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2214 else
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2215 {
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2216 keys = wrong_type_argument (Qsequencep, keys);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2217 return Flookup_key (keymap, keys, accept_default);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2218 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 /* Given a key sequence, returns a list of keymaps to search for bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 Does all manner of semi-hairy heuristics, like looking in the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 buffer's map before looking in the global map and looking in the local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 map of the buffer in which the mouse was clicked in event0 is a click.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 It would be kind of nice if this were in Lisp so that this semi-hairy
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2227 semi-heuristic command-lookup behavior could be readily understood and
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 customised. However, this needs to be pretty fast, or performance of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 keyboard macros goes to shit; putting this in lisp slows macros down
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2230 2-3x. And they're already slower than v18 by 5-6x.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 struct relevant_maps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 int nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 unsigned int max_maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 Lisp_Object *maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 struct gcpro *gcpro;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 static void get_relevant_extent_keymaps (Lisp_Object pos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 Lisp_Object buffer_or_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 Lisp_Object glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 struct relevant_maps *closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 static void get_relevant_minor_maps (Lisp_Object buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 struct relevant_maps *closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 relevant_map_push (Lisp_Object map, struct relevant_maps *closure)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2250 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 unsigned int nmaps = closure->nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 if (!KEYMAPP (map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 closure->nmaps = nmaps + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 if (nmaps < closure->max_maps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 closure->maps[nmaps] = map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 closure->gcpro->nvars = nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 get_relevant_keymaps (Lisp_Object keys,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 int max_maps, Lisp_Object maps[])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 Lisp_Object terminal = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 struct relevant_maps closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 struct console *con;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 GCPRO1 (*maps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 gcpro1.nvars = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 closure.nmaps = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 closure.max_maps = max_maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 closure.maps = maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 closure.gcpro = &gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 if (EVENTP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 terminal = event_chain_tail (keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 else if (VECTORP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2284 int len = XVECTOR_LENGTH (keys);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 if (len > 0)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2286 terminal = XVECTOR_DATA (keys)[len - 1];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 if (EVENTP (terminal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 CHECK_LIVE_EVENT (terminal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 con = event_console_or_selected (terminal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 con = XCONSOLE (Vselected_console);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2296
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 if (KEYMAPP (con->overriding_terminal_local_map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 || KEYMAPP (Voverriding_local_map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 if (KEYMAPP (con->overriding_terminal_local_map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 relevant_map_push (con->overriding_terminal_local_map, &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 if (KEYMAPP (Voverriding_local_map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 relevant_map_push (Voverriding_local_map, &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 else if (!EVENTP (terminal)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2306 || (XEVENT (terminal)->event_type != button_press_event
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 && XEVENT (terminal)->event_type != button_release_event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 XSETBUFFER (tem, current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 /* It's not a mouse event; order of keymaps searched is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 o keymap of any/all extents under the mouse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 o minor-mode maps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 o local-map of current-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 o global-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 /* The terminal element of the lookup may be nil or a keysym.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 In those cases we don't want to check for an extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 keymap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 if (EVENTP (terminal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 get_relevant_extent_keymaps (make_int (BUF_PT (current_buffer)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 tem, Qnil, &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 get_relevant_minor_maps (tem, &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 tem = current_buffer->keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 relevant_map_push (tem, &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 #ifdef HAVE_WINDOW_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 /* It's a mouse event; order of keymaps searched is:
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2335 o vertical-divider-map, if event is over a divider
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 o local-map of mouse-grabbed-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 o keymap of any/all extents under the mouse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 if the mouse is over a modeline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 o modeline-map of buffer corresponding to that modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 o else, local-map of buffer under the mouse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 o minor-mode maps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 o local-map of current-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 o global-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 Lisp_Object window = Fevent_window (terminal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2347 if (!NILP (Fevent_over_vertical_divider_p (terminal)))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2348 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2349 if (KEYMAPP (Vvertical_divider_map))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2350 relevant_map_push (Vvertical_divider_map, &closure);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2351 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2352
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 if (BUFFERP (Vmouse_grabbed_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 Lisp_Object map = XBUFFER (Vmouse_grabbed_buffer)->keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 get_relevant_minor_maps (Vmouse_grabbed_buffer, &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 if (!NILP (map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 relevant_map_push (map, &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 if (!NILP (window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 Lisp_Object buffer = Fwindow_buffer (window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 if (!NILP (buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 if (!NILP (Fevent_over_modeline_p (terminal)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 Lisp_Object map = symbol_value_in_buffer (Qmodeline_map,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 get_relevant_extent_keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 (Fevent_modeline_position (terminal),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 XBUFFER (buffer)->generated_modeline_string,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2376 Fevent_glyph_extent (terminal), &closure);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 if (!UNBOUNDP (map) && !NILP (map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 relevant_map_push (get_keymap (map, 1, 1), &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 get_relevant_extent_keymaps (Fevent_point (terminal), buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 Fevent_glyph_extent (terminal),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 if (!EQ (buffer, Vmouse_grabbed_buffer)) /* already pushed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 {
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 100
diff changeset
2390 Lisp_Object map = XBUFFER (buffer)->keymap;
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 100
diff changeset
2391
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 get_relevant_minor_maps (buffer, &closure);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 100
diff changeset
2393 if (!NILP(map))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 100
diff changeset
2394 relevant_map_push (map, &closure);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 else if (!NILP (Fevent_over_toolbar_p (terminal)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 Lisp_Object map = Fsymbol_value (Qtoolbar_map);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 if (!UNBOUNDP (map) && !NILP (map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 relevant_map_push (map, &closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 #endif /* HAVE_WINDOW_SYSTEM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 int nmaps = closure.nmaps;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2410 /* Silently truncate at 100 keymaps to prevent infinite lossage */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 if (nmaps >= max_maps && max_maps > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 maps[max_maps - 1] = Vcurrent_global_map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 maps[nmaps] = Vcurrent_global_map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2416 return nmaps + 1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 /* Returns a set of keymaps extracted from the extents at POS in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 BUFFER_OR_STRING. The GLYPH arg, if specified, is one more extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 to look for a keymap in, and if it has one, its keymap will be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 first element in the list returned. This is so we can correctly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 search the keymaps associated with glyphs which may be physically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 disjoint from their extents: for example, if a glyph is out in the
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2426 margin, we should still consult the keymap of that glyph's extent,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 which may not itself be under the mouse.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 */
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 114
diff changeset
2429
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 get_relevant_extent_keymaps (Lisp_Object pos, Lisp_Object buffer_or_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 Lisp_Object glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 struct relevant_maps *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 /* the glyph keymap, if any, comes first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 (Processing it twice is no big deal: noop.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 if (!NILP (glyph))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 Lisp_Object keymap = Fextent_property (glyph, Qkeymap, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 if (!NILP (keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 relevant_map_push (get_keymap (keymap, 1, 1), closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2444
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 /* Next check the extents at the text position, if any */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 if (!NILP (pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 Lisp_Object extent;
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
2449 for (extent = Fextent_at (pos, buffer_or_string, Qkeymap, Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 !NILP (extent);
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
2451 extent = Fextent_at (pos, buffer_or_string, Qkeymap, extent, Qnil))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 {
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
2453 Lisp_Object keymap = Fextent_property (extent, Qkeymap, Qnil);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
2454 if (!NILP (keymap))
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
2455 relevant_map_push (get_keymap (keymap, 1, 1), closure);
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 189
diff changeset
2456 QUIT;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 minor_mode_keymap_predicate (Lisp_Object assoc, Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 if (CONSP (assoc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 Lisp_Object sym = XCAR (assoc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 if (SYMBOLP (sym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 Lisp_Object val = symbol_value_in_buffer (sym, buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 if (!NILP (val) && !UNBOUNDP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 Lisp_Object map = get_keymap (XCDR (assoc), 0, 1);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2474 return map;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2478 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 get_relevant_minor_maps (Lisp_Object buffer, struct relevant_maps *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 Lisp_Object alist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 /* Will you ever lose badly if you make this circular! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 for (alist = symbol_value_in_buffer (Qminor_mode_map_alist, buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 CONSP (alist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 alist = XCDR (alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 Lisp_Object m = minor_mode_keymap_predicate (XCAR (alist),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 if (!NILP (m)) relevant_map_push (m, closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 /* #### Would map-current-keymaps be a better thing?? */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2500 DEFUN ("current-keymaps", Fcurrent_keymaps, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 Return a list of the current keymaps that will be searched for bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 This lists keymaps such as the current local map and the minor-mode maps,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 but does not list the parents of those keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 EVENT-OR-KEYS controls which keymaps will be listed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 If EVENT-OR-KEYS is a mouse event (or a vector whose last element is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 mouse event), the keymaps for that mouse event will be listed (see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 `key-binding'). Otherwise, the keymaps for key presses will be listed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2508 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2509 (event_or_keys))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 Lisp_Object maps[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 Lisp_Object *gubbish = maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 int nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 GCPRO1 (event_or_keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 nmaps = get_relevant_keymaps (event_or_keys, countof (maps),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 gubbish);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 if (nmaps > countof (maps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2522 gubbish = alloca_array (Lisp_Object, nmaps);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 nmaps = get_relevant_keymaps (event_or_keys, nmaps, gubbish);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2526 return Flist (nmaps, gubbish);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2529 DEFUN ("key-binding", Fkey_binding, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 Return the binding for command KEYS in current keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 KEYS is a string, a vector of events, or a vector of key-description lists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 as described in the documentation for the `define-key' function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 The binding is probably a symbol with a function definition; see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 the documentation for `lookup-key' for more information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 For key-presses, the order of keymaps searched is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 - the `keymap' property of any extent(s) at point;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 - any applicable minor-mode maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 - the current-local-map of the current-buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 - the current global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 For mouse-clicks, the order of keymaps searched is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 - the current-local-map of the `mouse-grabbed-buffer' if any;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2544 - vertical-divider-map, if the event happened over a vertical divider
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 - the `keymap' property of any extent(s) at the position of the click
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 (this includes modeline extents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 - the modeline-map of the buffer corresponding to the modeline under
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 the mouse (if the click happened over a modeline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 - the value of toolbar-map in the current-buffer (if the click
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 happened over a toolbar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 - the current-local-map of the buffer under the mouse (does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 apply to toolbar clicks);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 - any applicable minor-mode maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 - the current global map.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 Note that if `overriding-local-map' or `overriding-terminal-local-map'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 is non-nil, *only* those two maps and the current global map are searched.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2558 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2559 (keys, accept_default))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 Lisp_Object maps[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 int nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 GCPRO2 (keys, accept_default); /* get_relevant_keymaps may autoload */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 nmaps = get_relevant_keymaps (keys, countof (maps), maps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 if (EVENTP (keys)) /* unadvertised "feature" for the future */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2573 return lookup_events (keys, nmaps, maps, !NILP (accept_default));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 for (i = 0; i < nmaps; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 Lisp_Object tem = Flookup_key (maps[i], keys,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 accept_default);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 if (INTP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 /* Too long in some local map means don't look at global map */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2582 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 else if (!NILP (tem))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2585 return tem;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2587 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 process_event_binding_result (Lisp_Object result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 if (EQ (result, Qundefined))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 /* The suppress-keymap function binds keys to 'undefined - special-case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 that here, so that being bound to that has the same error-behavior as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 not being defined at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 if (!NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 Lisp_Object map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 /* Snap out possible keymap indirections */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 map = get_keymap (result, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 if (!NILP (map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 result = map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 /* Attempts to find a command corresponding to the event-sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 whose head is event0 (sequence is threaded though event_next).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 The return value will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 -- nil (there is no binding; this will also be returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 whenever the event chain is "too long", i.e. there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 is a non-nil, non-keymap binding for a prefix of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 the event chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 -- a keymap (part of a command has been specified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 -- a command (anything that satisfies `commandp'; this includes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 some symbols, lists, subrs, strings, vectors, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 compiled-function objects) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 event_binding (Lisp_Object event0, int accept_default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 Lisp_Object maps[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 int nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 assert (EVENTP (event0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 nmaps = get_relevant_keymaps (event0, countof (maps), maps);
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 100
diff changeset
2634 if (nmaps > countof (maps))
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 100
diff changeset
2635 nmaps = countof (maps);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2636 return process_event_binding_result (lookup_events (event0, nmaps, maps,
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2637 accept_default));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2640 /* like event_binding, but specify a keymap to search */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2641
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2642 Lisp_Object
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2643 event_binding_in (Lisp_Object event0, Lisp_Object keymap, int accept_default)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2644 {
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2645 /* This function can GC */
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2646 if (!KEYMAPP (keymap))
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2647 return Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2648
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2649 return process_event_binding_result (lookup_events (event0, 1, &keymap,
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2650 accept_default));
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2651 }
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
2652
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 /* Attempts to find a function key mapping corresponding to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 event-sequence whose head is event0 (sequence is threaded through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 event_next). The return value will be the same as for event_binding(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 munging_key_map_event_binding (Lisp_Object event0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 enum munge_me_out_the_door munge)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2660 Lisp_Object keymap = (munge == MUNGE_ME_FUNCTION_KEY) ?
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2661 CONSOLE_FUNCTION_KEY_MAP (event_console_or_selected (event0)) :
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2662 Vkey_translation_map;
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2663
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2664 if (NILP (keymap))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2667 return process_event_binding_result (lookup_events (event0, 1, &keymap, 1));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 /* Setting/querying the global and local maps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2675 DEFUN ("use-global-map", Fuse_global_map, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 Select KEYMAP as the global keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2677 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2678 (keymap))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 Vcurrent_global_map = keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2686 DEFUN ("use-local-map", Fuse_local_map, 1, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 Select KEYMAP as the local keymap in BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 If KEYMAP is nil, that means no local keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 If BUFFER is nil, the current buffer is assumed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2690 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2691 (keymap, buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 struct buffer *b = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 if (!NILP (keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 b->keymap = keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2703 DEFUN ("current-local-map", Fcurrent_local_map, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 Return BUFFER's local keymap, or nil if it has none.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 If BUFFER is nil, the current buffer is assumed.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2706 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2707 (buffer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 struct buffer *b = decode_buffer (buffer, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 return b->keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2713 DEFUN ("current-global-map", Fcurrent_global_map, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 Return the current global keymap.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2715 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2716 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2718 return Vcurrent_global_map;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 /* Mapping over keymap elements */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 /* Since keymaps are arranged in a hierarchy, one keymap per bucky bit or
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2727 prefix key, it's not entirely obvious what map-keymap should do, but
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 what it does is: map over all keys in this map; then recursively map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 over all submaps of this map that are "bucky" submaps. This means that,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 when mapping over a keymap, it appears that "x" and "C-x" are in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 same map, although "C-x" is really in the "control" submap of this one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 However, since we don't recursively descend the submaps that are bound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 to prefix keys (like C-x, C-h, etc) the caller will have to recurse on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 those explicitly, if that's what they want.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 So the end result of this is that the bucky keymaps (the ones indexed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 under the large integers returned from MAKE_MODIFIER_HASH_KEY()) are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 invisible from elisp. They're just an implementation detail that code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 outside of this file doesn't need to know about.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 struct map_keymap_unsorted_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2744 void (*fn) (const struct key_data *, Lisp_Object binding, void *arg);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 void *arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 unsigned int modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 /* used by map_keymap() */
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
2750 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2751 map_keymap_unsorted_mapper (Lisp_Object keysym, Lisp_Object value,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 void *map_keymap_unsorted_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 /* This function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2755 struct map_keymap_unsorted_closure *closure =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2756 (struct map_keymap_unsorted_closure *) map_keymap_unsorted_closure;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 unsigned int modifiers = closure->modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 unsigned int mod_bit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 mod_bit = MODIFIER_HASH_KEY_BITS (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 if (mod_bit != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 int omod = modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 closure->modifiers = (modifiers | mod_bit);
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2764 value = get_keymap (value, 1, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 elisp_maphash (map_keymap_unsorted_mapper,
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2766 XKEYMAP (value)->table,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 map_keymap_unsorted_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 closure->modifiers = omod;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 struct key_data key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 key.keysym = keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 key.modifiers = modifiers;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2775 ((*closure->fn) (&key, value, closure->arg));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 }
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
2777 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 struct map_keymap_sorted_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 Lisp_Object *result_locative;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 /* used by map_keymap_sorted() */
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
2787 static int
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2788 map_keymap_sorted_mapper (Lisp_Object key, Lisp_Object value,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 void *map_keymap_sorted_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2791 struct map_keymap_sorted_closure *cl =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2792 (struct map_keymap_sorted_closure *) map_keymap_sorted_closure;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 Lisp_Object *list = cl->result_locative;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2794 *list = Fcons (Fcons (key, value), *list);
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 219
diff changeset
2795 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 /* used by map_keymap_sorted(), describe_map_sort_predicate(),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 and keymap_submaps().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 static int
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2803 map_keymap_sort_predicate (Lisp_Object obj1, Lisp_Object obj2,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 Lisp_Object pred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 /* obj1 and obj2 are conses with keysyms in their cars. Cdrs are ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 unsigned int bit1, bit2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 int sym1_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 int sym2_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 obj1 = XCAR (obj1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 obj2 = XCAR (obj2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 if (EQ (obj1, obj2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 bit1 = MODIFIER_HASH_KEY_BITS (obj1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 bit2 = MODIFIER_HASH_KEY_BITS (obj2);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2818
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 /* If either is a symbol with a character-set-property, then sort it by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 that code instead of alphabetically.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 if (! bit1 && SYMBOLP (obj1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 Lisp_Object code = Fget (obj1, Vcharacter_set_property, Qnil);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2825 if (CHAR_OR_CHAR_INTP (code))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2826 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2827 obj1 = code;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2828 CHECK_CHAR_COERCE_INT (obj1);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2829 sym1_p = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2830 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 if (! bit2 && SYMBOLP (obj2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 Lisp_Object code = Fget (obj2, Vcharacter_set_property, Qnil);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2835 if (CHAR_OR_CHAR_INTP (code))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2836 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2837 obj2 = code;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2838 CHECK_CHAR_COERCE_INT (obj2);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2839 sym2_p = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2840 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 /* all symbols (non-ASCIIs) come after characters (ASCIIs) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 if (XTYPE (obj1) != XTYPE (obj2))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2845 return SYMBOLP (obj2) ? 1 : -1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 if (! bit1 && CHARP (obj1)) /* they're both ASCII */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 int o1 = XCHAR (obj1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 int o2 = XCHAR (obj2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 if (o1 == o2 && /* If one started out as a symbol and the */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 sym1_p != sym2_p) /* other didn't, the symbol comes last. */
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2853 return sym2_p ? 1 : -1;
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2854
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2855 return o1 < o2 ? 1 : -1; /* else just compare them */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 /* else they're both symbols. If they're both buckys, then order them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 if (bit1 && bit2)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2860 return bit1 < bit2 ? 1 : -1;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2861
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 /* if only one is a bucky, then it comes later */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 if (bit1 || bit2)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2864 return bit2 ? 1 : -1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 /* otherwise, string-sort them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 char *s1 = (char *) string_data (XSYMBOL (obj1)->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 char *s2 = (char *) string_data (XSYMBOL (obj2)->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 #ifdef I18N2
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2871 return 0 > strcoll (s1, s2) ? 1 : -1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 #else
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
2873 return 0 > strcmp (s1, s2) ? 1 : -1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 /* used by map_keymap() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 map_keymap_sorted (Lisp_Object keymap_table,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2882 unsigned int modifiers,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2883 void (*function) (const struct key_data *key,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2884 Lisp_Object binding,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 void *map_keymap_sorted_closure),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 void *map_keymap_sorted_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 Lisp_Object contents = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
2892 if (XINT (Fhash_table_count (keymap_table)) == 0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 GCPRO1 (contents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 struct map_keymap_sorted_closure c1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 c1.result_locative = &contents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 elisp_maphash (map_keymap_sorted_mapper, keymap_table, &c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 contents = list_sort (contents, Qnil, map_keymap_sort_predicate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 for (; !NILP (contents); contents = XCDR (contents))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 Lisp_Object keysym = XCAR (XCAR (contents));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 Lisp_Object binding = XCDR (XCAR (contents));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 unsigned int sub_bits = MODIFIER_HASH_KEY_BITS (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 if (sub_bits != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 map_keymap_sorted (XKEYMAP (get_keymap (binding,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 1, 1))->table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 (modifiers | sub_bits),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 map_keymap_sorted_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 struct key_data k;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 k.keysym = keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 k.modifiers = modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 ((*function) (&k, binding, map_keymap_sorted_closure));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 /* used by Fmap_keymap() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2928 map_keymap_mapper (const struct key_data *key,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2929 Lisp_Object binding,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 void *function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 Lisp_Object fn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 VOID_TO_LISP (fn, function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 call2 (fn, make_key_description (key, 1), binding);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 map_keymap (Lisp_Object keymap_table, int sort_first,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
2941 void (*function) (const struct key_data *key,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 Lisp_Object binding,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 void *fn_arg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 void *fn_arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 if (sort_first)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 map_keymap_sorted (keymap_table, 0, function, fn_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 struct map_keymap_unsorted_closure map_keymap_unsorted_closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 map_keymap_unsorted_closure.fn = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 map_keymap_unsorted_closure.arg = fn_arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 map_keymap_unsorted_closure.modifiers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 elisp_maphash (map_keymap_unsorted_mapper, keymap_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 &map_keymap_unsorted_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2960 DEFUN ("map-keymap", Fmap_keymap, 2, 3, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 Apply FUNCTION to each element of KEYMAP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 FUNCTION will be called with two arguments: a key-description list, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 the binding. The order in which the elements of the keymap are passed to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 the function is unspecified. If the function inserts new elements into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 the keymap, it may or may not be called with them later. No element of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 the keymap will ever be passed to the function more than once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 The function will not be called on elements of this keymap's parents
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
2969 \(see the function `keymap-parents') or upon keymaps which are contained
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 within this keymap (multi-character definitions).
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
2971 It will be called on "meta" characters since they are not really
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 two-character sequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 If the optional third argument SORT-FIRST is non-nil, then the elements of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 the keymap will be passed to the mapper function in a canonical order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 Otherwise, they will be passed in hash (that is, random) order, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 faster.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
2978 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
2979 (function, keymap, sort_first))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 /* tolerate obviously transposed args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 if (!NILP (Fkeymapp (function)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 Lisp_Object tmp = function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 function = keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 keymap = tmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 GCPRO2 (function, keymap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 map_keymap (XKEYMAP (keymap)->table, !NILP (sort_first),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 map_keymap_mapper, LISP_TO_VOID (function));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 /* Accessible keymaps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 struct accessible_keymaps_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 accessible_keymaps_mapper_1 (Lisp_Object keysym, Lisp_Object contents,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 unsigned int modifiers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 struct accessible_keymaps_closure *closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 unsigned int subbits = MODIFIER_HASH_KEY_BITS (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 if (subbits != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 Lisp_Object submaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 contents = get_keymap (contents, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 submaps = keymap_submaps (contents);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 for (; !NILP (submaps); submaps = XCDR (submaps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 accessible_keymaps_mapper_1 (XCAR (XCAR (submaps)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 XCDR (XCAR (submaps)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 (subbits | modifiers),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 Lisp_Object thisseq = Fcar (Fcar (closure->tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 Lisp_Object cmd = get_keyelt (contents, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 Lisp_Object vec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 int j;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3039 int len;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 struct key_data key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041 key.keysym = keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 key.modifiers = modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 if (NILP (cmd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 cmd = get_keymap (cmd, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 if (!KEYMAPP (cmd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3050 vec = make_vector (XVECTOR_LENGTH (thisseq) + 1, Qnil);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3051 len = XVECTOR_LENGTH (thisseq);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3052 for (j = 0; j < len; j++)
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3053 XVECTOR_DATA (vec) [j] = XVECTOR_DATA (thisseq) [j];
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3054 XVECTOR_DATA (vec) [j] = make_key_description (&key, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 nconc2 (closure->tail, list1 (Fcons (vec, cmd)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 accessible_keymaps_keymap_mapper (Lisp_Object thismap, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 /* This function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3065 struct accessible_keymaps_closure *closure =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3066 (struct accessible_keymaps_closure *) arg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 Lisp_Object submaps = keymap_submaps (thismap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 for (; !NILP (submaps); submaps = XCDR (submaps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 accessible_keymaps_mapper_1 (XCAR (XCAR (submaps)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 XCDR (XCAR (submaps)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3076 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3080 DEFUN ("accessible-keymaps", Faccessible_keymaps, 1, 2, 0, /*
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3081 Find all keymaps accessible via prefix characters from KEYMAP.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 Returns a list of elements of the form (KEYS . MAP), where the sequence
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3083 KEYS starting from KEYMAP gets you to MAP. These elements are ordered
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3084 so that the KEYS increase in length. The first element is ([] . KEYMAP).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 An optional argument PREFIX, if non-nil, should be a key sequence;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 then the value includes only maps for prefixes that start with PREFIX.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3087 */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3088 (keymap, prefix))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 Lisp_Object accessible_keymaps = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 struct accessible_keymaps_closure c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 c.tail = Qnil;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3095 GCPRO4 (accessible_keymaps, c.tail, prefix, keymap);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3097 keymap = get_keymap (keymap, 1, 1);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3098
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 if (NILP (prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3102 prefix = make_vector (0, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 }
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3104 else if (VECTORP (prefix) || STRINGP (prefix))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 int len = XINT (Flength (prefix));
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3107 Lisp_Object def;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 Lisp_Object p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 int iii;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 struct gcpro ngcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3112 if (len == 0)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3113 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3114 prefix = Qnil;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3115 goto retry;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3116 }
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3117
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3118 def = Flookup_key (keymap, prefix, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 def = get_keymap (def, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 if (!KEYMAPP (def))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 goto RETURN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3123 keymap = def;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 p = make_vector (len, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 NGCPRO1 (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 for (iii = 0; iii < len; iii++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 struct key_data key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 define_key_parser (Faref (prefix, make_int (iii)), &key);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3130 XVECTOR_DATA (p)[iii] = make_key_description (&key, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 prefix = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 }
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3135 else
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3136 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3137 prefix = wrong_type_argument (Qarrayp, prefix);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3138 goto retry;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3139 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3140
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3141 accessible_keymaps = list1 (Fcons (prefix, keymap));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3143 /* For each map in the list maps, look at any other maps it points
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3144 to and stick them at the end if they are not already in the list */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 for (c.tail = accessible_keymaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 !NILP (c.tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 c.tail = XCDR (c.tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 Lisp_Object thismap = Fcdr (Fcar (c.tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 CHECK_KEYMAP (thismap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 traverse_keymaps (thismap, Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 accessible_keymaps_keymap_mapper, &c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 RETURN:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 UNGCPRO;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3157 return accessible_keymaps;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 /* Pretty descriptions of key sequences */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3166 DEFUN ("key-description", Fkey_description, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 Return a pretty description of key-sequence KEYS.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3168 Control characters turn into "C-foo" sequences, meta into "M-foo",
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3169 spaces are put between sequence elements, etc...
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3170 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3171 (keys))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 {
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3173 if (CHAR_OR_CHAR_INTP (keys) || CONSP (keys) || SYMBOLP (keys)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3174 || EVENTP (keys))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 return Fsingle_key_description (keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 else if (VECTORP (keys) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 STRINGP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 Lisp_Object string = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 /* Lisp_Object sep = Qnil; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 int size = XINT (Flength (keys));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 for (i = 0; i < size; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 Lisp_Object s2 = Fsingle_key_description
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3189 (STRINGP (keys)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3190 ? make_char (string_char (XSTRING (keys), i))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3191 : XVECTOR_DATA (keys)[i]);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 if (i == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 string = s2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 /* if (NILP (sep)) Lisp_Object sep = build_string (" ") */;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 string = concat2 (string, concat2 (Vsingle_space_string, s2));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3201 return string;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 return Fkey_description (wrong_type_argument (Qsequencep, keys));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3206 DEFUN ("single-key-description", Fsingle_key_description, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 Return a pretty description of command character KEY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 Control characters turn into C-whatever, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 This differs from `text-char-description' in that it returns a description
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 of a key read from the user rather than a character from a buffer.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3211 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3212 (key))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 if (SYMBOLP (key))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 key = Fcons (key, Qnil); /* sleaze sleaze */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3217 if (EVENTP (key) || CHAR_OR_CHAR_INTP (key))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 char buf [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 if (!EVENTP (key))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3222 Lisp_Event event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 event.event_type = empty_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 CHECK_CHAR_COERCE_INT (key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 character_to_event (XCHAR (key), &event,
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 249
diff changeset
3226 XCONSOLE (Vselected_console), 0, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 format_event_object (buf, &event, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 format_event_object (buf, XEVENT (key), 1);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3231 return build_string (buf);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 if (CONSP (key))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 char buf[255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 char *bufp = buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 buf[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 LIST_LOOP (rest, key)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242 Lisp_Object keysym = XCAR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 if (EQ (keysym, Qcontrol)) strcpy (bufp, "C-"), bufp += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 else if (EQ (keysym, Qctrl)) strcpy (bufp, "C-"), bufp += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 else if (EQ (keysym, Qmeta)) strcpy (bufp, "M-"), bufp += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 else if (EQ (keysym, Qsuper)) strcpy (bufp, "S-"), bufp += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 else if (EQ (keysym, Qhyper)) strcpy (bufp, "H-"), bufp += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 else if (EQ (keysym, Qalt)) strcpy (bufp, "A-"), bufp += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 else if (EQ (keysym, Qshift)) strcpy (bufp, "Sh-"), bufp += 3;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3250 else if (CHAR_OR_CHAR_INTP (keysym))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3251 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3252 bufp += set_charptr_emchar ((Bufbyte *) bufp,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3253 XCHAR_OR_CHAR_INT (keysym));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3254 *bufp = 0;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3255 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 CHECK_SYMBOL (keysym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 #if 0 /* This is bogus */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3260 if (EQ (keysym, QKlinefeed)) strcpy (bufp, "LFD");
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3261 else if (EQ (keysym, QKtab)) strcpy (bufp, "TAB");
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3262 else if (EQ (keysym, QKreturn)) strcpy (bufp, "RET");
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3263 else if (EQ (keysym, QKescape)) strcpy (bufp, "ESC");
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3264 else if (EQ (keysym, QKdelete)) strcpy (bufp, "DEL");
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3265 else if (EQ (keysym, QKspace)) strcpy (bufp, "SPC");
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3266 else if (EQ (keysym, QKbackspace)) strcpy (bufp, "BS");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269 strcpy (bufp, (char *) string_data (XSYMBOL (keysym)->name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 if (!NILP (XCDR (rest)))
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3271 signal_simple_error ("Invalid key description",
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 return build_string (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 return Fsingle_key_description
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 (wrong_type_argument (intern ("char-or-event-p"), key));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3281 DEFUN ("text-char-description", Ftext_char_description, 1, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282 Return a pretty description of file-character CHR.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3283 Unprintable characters turn into "^char" or \\NNN, depending on the value
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 of the `ctl-arrow' variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 This differs from `single-key-description' in that it returns a description
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 of a character from a buffer rather than a key read from the user.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3287 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3288 (chr))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 Bufbyte buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 Bufbyte *p;
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3292 Emchar c;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293 Lisp_Object ctl_arrow = current_buffer->ctl_arrow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 int ctl_p = !NILP (ctl_arrow);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3295 Emchar printable_min = (CHAR_OR_CHAR_INTP (ctl_arrow)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3296 ? XCHAR_OR_CHAR_INT (ctl_arrow)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3297 : ((EQ (ctl_arrow, Qt) || NILP (ctl_arrow))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3298 ? 256 : 160));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 if (EVENTP (chr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 Lisp_Object ch = Fevent_to_character (chr, Qnil, Qnil, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 if (NILP (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 signal_simple_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 ("character has no ASCII equivalent", Fcopy_event (chr, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 chr = ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 CHECK_CHAR_COERCE_INT (chr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 c = XCHAR (chr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 p = buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 if (c >= printable_min)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 p += set_charptr_emchar (p, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 else if (c < 040 && ctl_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 *p++ = '^';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 *p++ = c + 64; /* 'A' - 1 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 else if (c == 0177)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 *p++ = '^';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 *p++ = '?';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 else if (c >= 0200 || c < 040)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331 *p++ = '\\';
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3332 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3333 /* !!#### This syntax is not readable. It will
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3334 be interpreted as a 3-digit octal number rather
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3335 than a 7-digit octal number. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3336 if (c >= 0400)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3337 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3338 *p++ = '0' + ((c & 07000000) >> 18);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3339 *p++ = '0' + ((c & 0700000) >> 15);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3340 *p++ = '0' + ((c & 070000) >> 12);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3341 *p++ = '0' + ((c & 07000) >> 9);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3342 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
3343 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 *p++ = '0' + ((c & 0700) >> 6);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 *p++ = '0' + ((c & 0070) >> 3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346 *p++ = '0' + ((c & 0007));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 p += set_charptr_emchar (p, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 *p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 return build_string ((char *) buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 /* where-is (mapping bindings to keys) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 where_is_internal (Lisp_Object definition, Lisp_Object *maps, int nmaps,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 Lisp_Object firstonly, char *target_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3366 DEFUN ("where-is-internal", Fwhere_is_internal, 1, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 Return list of keys that invoke DEFINITION in KEYMAPS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 KEYMAPS can be either a keymap (meaning search in that keymap and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 current global keymap) or a list of keymaps (meaning search in exactly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 those keymaps and no others). If KEYMAPS is nil, search in the currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 applicable maps for EVENT-OR-KEYS (this is equivalent to specifying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372 `(current-keymaps EVENT-OR-KEYS)' as the argument to KEYMAPS).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 If optional 3rd arg FIRSTONLY is non-nil, return a vector representing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 the first key sequence found, rather than a list of all possible key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 sequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 to other keymaps or slots. This makes it possible to search for an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380 indirect definition itself.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3381 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3382 (definition, keymaps, firstonly, noindirect, event_or_keys))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 Lisp_Object maps[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 Lisp_Object *gubbish = maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 int nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389 /* Get keymaps as an array */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 if (NILP (keymaps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 nmaps = get_relevant_keymaps (event_or_keys, countof (maps),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 gubbish);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394 if (nmaps > countof (maps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3396 gubbish = alloca_array (Lisp_Object, nmaps);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 nmaps = get_relevant_keymaps (event_or_keys, nmaps, gubbish);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 else if (CONSP (keymaps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 nmaps = XINT (Flength (keymaps));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406 if (nmaps > countof (maps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3408 gubbish = alloca_array (Lisp_Object, nmaps);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 for (rest = keymaps, i = 0; !NILP (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 rest = XCDR (keymaps), i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 gubbish[i] = get_keymap (XCAR (keymaps), 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418 nmaps = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419 gubbish[0] = get_keymap (keymaps, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 if (!EQ (gubbish[0], Vcurrent_global_map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422 gubbish[1] = Vcurrent_global_map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 nmaps++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3426
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 return where_is_internal (definition, gubbish, nmaps, firstonly, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 /* This function is like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 (key-description (where-is-internal definition nil t))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3432 except that it writes its output into a (char *) buffer that you
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433 provide; it doesn't cons (or allocate memory) at all, so it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434 very fast. This is used by menubar.c.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437 where_is_to_char (Lisp_Object definition, char *buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3440 Lisp_Object maps[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441 Lisp_Object *gubbish = maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 int nmaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 /* Get keymaps as an array */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445 nmaps = get_relevant_keymaps (Qnil, countof (maps), gubbish);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 if (nmaps > countof (maps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3448 gubbish = alloca_array (Lisp_Object, nmaps);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449 nmaps = get_relevant_keymaps (Qnil, nmaps, gubbish);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 buffer[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453 where_is_internal (definition, maps, nmaps, Qt, buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3457 static Lisp_Object
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3458 raw_keys_to_keys (struct key_data *keys, int count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3459 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 Lisp_Object result = make_vector (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461 while (count--)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3462 XVECTOR_DATA (result) [count] = make_key_description (&(keys[count]), 1);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3463 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468 format_raw_keys (struct key_data *keys, int count, char *buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470 int i;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3471 Lisp_Event event;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 event.event_type = key_press_event;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3473 event.channel = Vselected_console;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3474 for (i = 0; i < count; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3475 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476 event.event.key.keysym = keys[i].keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3477 event.event.key.modifiers = keys[i].modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3478 format_event_object (buf, &event, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3479 buf += strlen (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3480 if (i < count-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 buf[0] = ' ', buf++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3486 /* definition is the thing to look for.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487 map is a keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 shadow is an array of shadow_count keymaps; if there is a different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489 binding in any of the keymaps of a key that we are considering
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490 returning, then we reconsider.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491 firstonly means give up after finding the first match;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492 keys_so_far and modifiers_so_far describe which map we're looking in;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493 If we're in the "meta" submap of the map that "C-x 4" is bound to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494 then keys_so_far will be {(control x), \4}, and modifiers_so_far
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 will be MOD_META. That is, keys_so_far is the chain of keys that we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 have followed, and modifiers_so_far_so_far is the bits (partial keys)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497 beyond that.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3498
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 (keys_so_far is a global buffer and the keys_count arg says how much
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 of it we're currently interested in.)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3501
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502 If target_buffer is provided, then we write a key-description into it,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503 to avoid consing a string. This only works with firstonly on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 struct where_is_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508 Lisp_Object definition;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509 Lisp_Object *shadow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510 int shadow_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 int firstonly;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512 int keys_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513 unsigned int modifiers_so_far;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514 char *target_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3515 struct key_data *keys_so_far;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516 int keys_so_far_total_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517 int keys_so_far_malloced;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520 static Lisp_Object where_is_recursive_mapper (Lisp_Object map, void *arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523 where_is_recursive_mapper (Lisp_Object map, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 /* This function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3526 struct where_is_closure *c = (struct where_is_closure *) arg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527 Lisp_Object definition = c->definition;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3528 const int firstonly = c->firstonly;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3529 const unsigned int keys_count = c->keys_count;
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3530 const unsigned int modifiers_so_far = c->modifiers_so_far;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531 char *target_buffer = c->target_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532 Lisp_Object keys = Fgethash (definition,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3533 XKEYMAP (map)->inverse_table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535 Lisp_Object submaps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 if (!NILP (keys))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3540 /* One or more keys in this map match the definition we're looking for.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3541 Verify that these bindings aren't shadowed by other bindings
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 in the shadow maps. Either nil or number as value from
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3543 raw_lookup_key() means undefined. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 struct key_data *so_far = c->keys_so_far;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 for (;;) /* loop over all keys that match */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3548 Lisp_Object k = CONSP (keys) ? XCAR (keys) : keys;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 int i;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3550
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 so_far [keys_count].keysym = k;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 so_far [keys_count].modifiers = modifiers_so_far;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 /* now loop over all shadow maps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555 for (i = 0; i < c->shadow_count; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 Lisp_Object shadowed = raw_lookup_key (c->shadow[i],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3558 so_far,
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3559 keys_count + 1,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562 if (NILP (shadowed) || CHARP (shadowed) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563 EQ (shadowed, definition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3564 continue; /* we passed this test; it's not shadowed here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566 /* ignore this key binding, since it actually has a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567 different binding in a shadowing map */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 goto c_doesnt_have_proper_loop_exit_statements;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3571 /* OK, the key is for real */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 if (target_buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 if (!firstonly) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575 format_raw_keys (so_far, keys_count + 1, target_buffer);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3576 return make_int (1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 else if (firstonly)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579 return raw_keys_to_keys (so_far, keys_count + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581 result = Fcons (raw_keys_to_keys (so_far, keys_count + 1),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 c_doesnt_have_proper_loop_exit_statements:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3585 /* now on to the next matching key ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586 if (!CONSP (keys)) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 keys = XCDR (keys);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 /* Now search the sub-keymaps of this map.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3592 If we're in "firstonly" mode and have already found one, this
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 point is not reached. If we get one from lower down, either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 return it immediately (in firstonly mode) or tack it onto the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 end of the ones we've gotten so far.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597 for (submaps = keymap_submaps (map);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 !NILP (submaps);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 submaps = XCDR (submaps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601 Lisp_Object key = XCAR (XCAR (submaps));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 Lisp_Object submap = XCDR (XCAR (submaps));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603 unsigned int lower_modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604 int lower_keys_count = keys_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3605 unsigned int bucky;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3607 submap = get_keymap (submap, 0, 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 if (EQ (submap, map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610 /* Arrgh! Some loser has introduced a loop... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613 /* If this is not a keymap, then that's probably because someone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614 did an `fset' of a symbol that used to point to a map such that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 it no longer does. Sigh. Ignore this, and invalidate the cache
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 so that it doesn't happen to us next time too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618 if (NILP (submap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3620 XKEYMAP (map)->sub_maps_cache = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624 /* If the map is a "bucky" map, then add a bit to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625 modifiers_so_far list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3626 Otherwise, add a new raw_key onto the end of keys_so_far.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3627 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628 bucky = MODIFIER_HASH_KEY_BITS (key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 if (bucky != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630 lower_modifiers = (modifiers_so_far | bucky);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 struct key_data *so_far = c->keys_so_far;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634 lower_modifiers = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 so_far [lower_keys_count].keysym = key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3636 so_far [lower_keys_count].modifiers = modifiers_so_far;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3637 lower_keys_count++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 if (lower_keys_count >= c->keys_so_far_total_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 int size = lower_keys_count + 50;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643 if (! c->keys_so_far_malloced)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3645 struct key_data *new = xnew_array (struct key_data, size);
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3646 memcpy ((void *)new, (const void *)c->keys_so_far,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647 c->keys_so_far_total_size * sizeof (struct key_data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 else
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3650 XREALLOC_ARRAY (c->keys_so_far, struct key_data, size);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 c->keys_so_far_total_size = size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653 c->keys_so_far_malloced = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 Lisp_Object lower;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 c->keys_count = lower_keys_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 c->modifiers_so_far = lower_modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3662 lower = traverse_keymaps (submap, Qnil, where_is_recursive_mapper, c);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3663
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664 c->keys_count = keys_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 c->modifiers_so_far = modifiers_so_far;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667 if (!firstonly)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 result = nconc2 (lower, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 else if (!NILP (lower))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3670 return lower;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 }
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3673 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678 where_is_internal (Lisp_Object definition, Lisp_Object *maps, int nmaps,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679 Lisp_Object firstonly, char *target_buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 struct key_data raw[20];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 struct where_is_closure c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687 c.definition = definition;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 c.shadow = maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 c.firstonly = !NILP (firstonly);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 c.target_buffer = target_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691 c.keys_so_far = raw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 c.keys_so_far_total_size = countof (raw);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 c.keys_so_far_malloced = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695 /* Loop over each of the maps, accumulating the keys found.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696 For each map searched, all previous maps shadow this one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 so that bogus keys aren't listed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698 for (i = 0; i < nmaps; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 Lisp_Object this_result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 c.shadow_count = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 /* Reset the things set in each iteration */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 c.keys_count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 c.modifiers_so_far = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 this_result = traverse_keymaps (maps[i], Qnil, where_is_recursive_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 &c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 if (!NILP (firstonly))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 result = this_result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 if (!NILP (result))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 result = nconc2 (this_result, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718 if (NILP (firstonly))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 result = Fnreverse (result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 if (c.keys_so_far_malloced)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 xfree (c.keys_so_far);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3723 return result;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728 /* Describing keymaps */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3731 DEFUN ("describe-bindings-internal", Fdescribe_bindings_internal, 1, 5, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 Insert a list of all defined keys and their definitions in MAP.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3733 Optional second argument ALL says whether to include even "uninteresting"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 definitions (ie symbols with a non-nil `suppress-keymap' property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 Third argument SHADOW is a list of keymaps whose bindings shadow those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736 of map; if a binding is present in any shadowing map, it is not printed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 Fourth argument PREFIX, if non-nil, should be a key sequence;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738 only bindings which start with that key sequence will be printed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 Fifth argument MOUSE-ONLY-P says to only print bindings for mouse clicks.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3740 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
3741 (map, all, shadow, prefix, mouse_only_p))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743 /* This function can GC */
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3744
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3745 /* #### At some point, this function should be changed to accept a
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3746 BUFFER argument. Currently, the BUFFER argument to
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3747 describe_map_tree is being used only internally. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3748 describe_map_tree (map, NILP (all), shadow, prefix,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3749 !NILP (mouse_only_p), Fcurrent_buffer ());
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3750 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3754 /* Insert a description of the key bindings in STARTMAP,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755 followed by those of all maps reachable through STARTMAP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756 If PARTIAL is nonzero, omit certain "uninteresting" commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757 (such as `undefined').
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 If SHADOW is non-nil, it is a list of other maps;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 don't mention keys which would be shadowed by any of them
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3760 If PREFIX is non-nil, only list bindings which start with those keys.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 describe_map_tree (Lisp_Object startmap, int partial, Lisp_Object shadow,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3765 Lisp_Object prefix, int mice_only_p, Lisp_Object buffer)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 Lisp_Object maps = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 struct gcpro gcpro1, gcpro2; /* get_keymap may autoload */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 GCPRO2 (maps, shadow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 maps = Faccessible_keymaps (startmap, prefix);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 for (; !NILP (maps); maps = Fcdr (maps))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 Lisp_Object sub_shadow = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 Lisp_Object elt = Fcar (maps);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3778 Lisp_Object tail;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779 int no_prefix = (VECTORP (Fcar (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 && XINT (Flength (Fcar (elt))) == 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 struct gcpro ngcpro1, ngcpro2, ngcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 NGCPRO3 (sub_shadow, elt, tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3784 for (tail = shadow; CONSP (tail); tail = XCDR (tail))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3786 Lisp_Object shmap = XCAR (tail);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 /* If the sequence by which we reach this keymap is zero-length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 then the shadow maps for this keymap are just SHADOW. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 if (no_prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 /* If the sequence by which we reach this keymap actually has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793 some elements, then the sequence's definition in SHADOW is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 what we should use. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3797 shmap = Flookup_key (shmap, Fcar (elt), Qt);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3798 if (CHARP (shmap))
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3799 shmap = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3802 if (!NILP (shmap))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3804 Lisp_Object shm = get_keymap (shmap, 0, 1);
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3805 /* If shmap is not nil and not a keymap, it completely
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3806 shadows this map, so don't describe this map at all. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807 if (!KEYMAPP (shm))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808 goto SKIP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809 sub_shadow = Fcons (shm, sub_shadow);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814 /* Describe the contents of map MAP, assuming that this map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 itself is reached by the sequence of prefix keys KEYS (a vector).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 PARTIAL and SHADOW are as in `describe_map_tree'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817 Lisp_Object keysdesc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 = ((!no_prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819 ? concat2 (Fkey_description (Fcar (elt)), Vsingle_space_string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821 describe_map (Fcdr (elt), keysdesc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 describe_command,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 partial,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 sub_shadow,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3825 mice_only_p,
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3826 buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828 SKIP:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3829 NUNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 static void
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3836 describe_command (Lisp_Object definition, Lisp_Object buffer)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 int keymapp = !NILP (Fkeymapp (definition));
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3840 struct gcpro gcpro1;
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3841 GCPRO1 (definition);
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
3842
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 Findent_to (make_int (16), make_int (3), buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844 if (keymapp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845 buffer_insert_c_string (XBUFFER (buffer), "<< ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 if (SYMBOLP (definition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849 buffer_insert1 (XBUFFER (buffer), Fsymbol_name (definition));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 else if (STRINGP (definition) || VECTORP (definition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 buffer_insert_c_string (XBUFFER (buffer), "Kbd Macro: ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 buffer_insert1 (XBUFFER (buffer), Fkey_description (definition));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 else if (COMPILED_FUNCTIONP (definition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 buffer_insert_c_string (XBUFFER (buffer), "Anonymous Compiled Function");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 else if (CONSP (definition) && EQ (XCAR (definition), Qlambda))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 buffer_insert_c_string (XBUFFER (buffer), "Anonymous Lambda");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860 else if (KEYMAPP (definition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862 Lisp_Object name = XKEYMAP (definition)->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 if (STRINGP (name) || (SYMBOLP (name) && !NILP (name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865 buffer_insert_c_string (XBUFFER (buffer), "Prefix command ");
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3866 if (SYMBOLP (name)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 && EQ (find_symbol_value (name), definition))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 buffer_insert1 (XBUFFER (buffer), Fsymbol_name (name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 buffer_insert1 (XBUFFER (buffer), Fprin1_to_string (name, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 buffer_insert_c_string (XBUFFER (buffer), "Prefix Command");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 buffer_insert_c_string (XBUFFER (buffer), "??");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880 if (keymapp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 buffer_insert_c_string (XBUFFER (buffer), " >>");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 buffer_insert_c_string (XBUFFER (buffer), "\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 struct describe_map_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 Lisp_Object *list; /* pointer to the list to update */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 Lisp_Object partial; /* whether to ignore suppressed commands */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 Lisp_Object shadow; /* list of maps shadowing this one */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 Lisp_Object self; /* this map */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 Lisp_Object self_root; /* this map, or some map that has this map as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893 a parent. this is the base of the tree */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 int mice_only_p; /* whether we are to display only button bindings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 struct describe_map_shadow_closure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 {
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3899 const struct key_data *raw_key;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 Lisp_Object self;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 describe_map_mapper_shadow_search (Lisp_Object map, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3906 struct describe_map_shadow_closure *c =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3907 (struct describe_map_shadow_closure *) arg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 if (EQ (map, c->self))
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3910 return Qzero; /* Not shadowed; terminate search */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3911
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3912 return !NILP (keymap_lookup_directly (map,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3913 c->raw_key->keysym,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 267
diff changeset
3914 c->raw_key->modifiers))
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3915 ? Qt : Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3917
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 keymap_lookup_inherited_mapper (Lisp_Object km, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 {
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3922 struct key_data *k = (struct key_data *) arg;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
3923 return keymap_lookup_directly (km, k->keysym, k->modifiers);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 static void
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
3928 describe_map_mapper (const struct key_data *key,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 Lisp_Object binding,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 void *describe_map_closure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 /* This function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3933 struct describe_map_closure *closure =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3934 (struct describe_map_closure *) describe_map_closure;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 Lisp_Object keysym = key->keysym;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 unsigned int modifiers = key->modifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
3938 /* Don't mention suppressed commands. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 if (SYMBOLP (binding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 && !NILP (closure->partial)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 && !NILP (Fget (binding, closure->partial, Qnil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 return;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3943
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 /* If we're only supposed to display mouse bindings and this isn't one,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 then bug out. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 if (closure->mice_only_p &&
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3947 (! (EQ (keysym, Qbutton0) ||
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3948 EQ (keysym, Qbutton1) ||
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3949 EQ (keysym, Qbutton2) ||
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3950 EQ (keysym, Qbutton3) ||
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3951 EQ (keysym, Qbutton4) ||
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3952 EQ (keysym, Qbutton5) ||
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
3953 EQ (keysym, Qbutton6) ||
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3954 EQ (keysym, Qbutton7) ||
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3955 EQ (keysym, Qbutton0up) ||
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3956 EQ (keysym, Qbutton1up) ||
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3957 EQ (keysym, Qbutton2up) ||
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3958 EQ (keysym, Qbutton3up) ||
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3959 EQ (keysym, Qbutton4up) ||
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3960 EQ (keysym, Qbutton5up) ||
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3961 EQ (keysym, Qbutton6up) ||
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 203
diff changeset
3962 EQ (keysym, Qbutton7up))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 /* If this command in this map is shadowed by some other map, ignore it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 for (tail = closure->shadow; CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 if (!NILP (traverse_keymaps (XCAR (tail), Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 keymap_lookup_inherited_mapper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 /* Cast to discard `const' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 (void *)key)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 /* If this key is in some map of which this map is a parent, then ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 it (in that case, it has been shadowed).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 Lisp_Object sh;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 struct describe_map_shadow_closure c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 c.raw_key = key;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987 c.self = closure->self;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 sh = traverse_keymaps (closure->self_root, Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 describe_map_mapper_shadow_search, &c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991 if (!NILP (sh) && !ZEROP (sh))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 /* Otherwise add it to the list to be sorted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 *(closure->list) = Fcons (Fcons (Fcons (keysym, make_int (modifiers)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 binding),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 *(closure->list));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002 static int
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4003 describe_map_sort_predicate (Lisp_Object obj1, Lisp_Object obj2,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 Lisp_Object pred)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 /* obj1 and obj2 are conses of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 ( ( <keysym> . <modifiers> ) . <binding> )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 keysym and modifiers are used, binding is ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 unsigned int bit1, bit2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 obj1 = XCAR (obj1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012 obj2 = XCAR (obj2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 bit1 = XINT (XCDR (obj1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 bit2 = XINT (XCDR (obj2));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 if (bit1 != bit2)
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
4016 return bit1 < bit2 ? 1 : -1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 return map_keymap_sort_predicate (obj1, obj2, pred);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 /* Elide 2 or more consecutive numeric keysyms bound to the same thing,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022 or 2 or more symbolic keysyms that are bound to the same thing and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023 have consecutive character-set-properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 elide_next_two_p (Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 Lisp_Object s1, s2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030 if (NILP (XCDR (list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 /* next two bindings differ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 if (!EQ (XCDR (XCAR (list)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 XCDR (XCAR (XCDR (list)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 /* next two modifier-sets differ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039 if (!EQ (XCDR (XCAR (XCAR (list))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 XCDR (XCAR (XCAR (XCDR (list))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 s1 = XCAR (XCAR (XCAR (list)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 s2 = XCAR (XCAR (XCAR (XCDR (list))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046 if (SYMBOLP (s1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048 Lisp_Object code = Fget (s1, Vcharacter_set_property, Qnil);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4049 if (CHAR_OR_CHAR_INTP (code))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4050 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4051 s1 = code;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4052 CHECK_CHAR_COERCE_INT (s1);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4053 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 else return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056 if (SYMBOLP (s2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058 Lisp_Object code = Fget (s2, Vcharacter_set_property, Qnil);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4059 if (CHAR_OR_CHAR_INTP (code))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4060 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4061 s2 = code;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4062 CHECK_CHAR_COERCE_INT (s2);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 40
diff changeset
4063 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 else return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4067 return (XCHAR (s1) == XCHAR (s2) ||
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4068 XCHAR (s1) + 1 == XCHAR (s2));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073 describe_map_parent_mapper (Lisp_Object keymap, void *arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 /* This function can GC */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4076 struct describe_map_closure *describe_map_closure =
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4077 (struct describe_map_closure *) arg;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 describe_map_closure->self = keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 map_keymap (XKEYMAP (keymap)->table,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 0, /* don't sort: we'll do it later */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081 describe_map_mapper, describe_map_closure);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 161
diff changeset
4082 return Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4086 /* Describe the contents of map MAP, assuming that this map itself is
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4087 reached by the sequence of prefix keys KEYS (a string or vector).
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4088 PARTIAL, SHADOW, NOMENU are as in `describe_map_tree' above. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4089
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 describe_map (Lisp_Object keymap, Lisp_Object elt_prefix,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
4092 void (*elt_describer) (Lisp_Object, Lisp_Object),
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4093 int partial,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 Lisp_Object shadow,
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
4095 int mice_only_p,
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
4096 Lisp_Object buffer)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 struct describe_map_closure describe_map_closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 Lisp_Object list = Qnil;
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
4101 struct buffer *buf = XBUFFER (buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 Emchar printable_min = (CHAR_OR_CHAR_INTP (buf->ctl_arrow)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 ? XCHAR_OR_CHAR_INT (buf->ctl_arrow)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 : ((EQ (buf->ctl_arrow, Qt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 || EQ (buf->ctl_arrow, Qnil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 ? 256 : 160));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 int elided = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110 keymap = get_keymap (keymap, 1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111 describe_map_closure.partial = (partial ? Qsuppress_keymap : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 describe_map_closure.shadow = shadow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113 describe_map_closure.list = &list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 describe_map_closure.self_root = keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4115 describe_map_closure.mice_only_p = mice_only_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 GCPRO4 (keymap, elt_prefix, shadow, list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 traverse_keymaps (keymap, Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 describe_map_parent_mapper, &describe_map_closure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 if (!NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 list = list_sort (list, Qnil, describe_map_sort_predicate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 buffer_insert_c_string (buf, "\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126 while (!NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 Lisp_Object elt = XCAR (XCAR (list));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4129 Lisp_Object keysym = XCAR (elt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130 unsigned int modifiers = XINT (XCDR (elt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132 if (!NILP (elt_prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4133 buffer_insert_lisp_string (buf, elt_prefix);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4135 if (modifiers & MOD_META) buffer_insert_c_string (buf, "M-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136 if (modifiers & MOD_CONTROL) buffer_insert_c_string (buf, "C-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137 if (modifiers & MOD_SUPER) buffer_insert_c_string (buf, "S-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 if (modifiers & MOD_HYPER) buffer_insert_c_string (buf, "H-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139 if (modifiers & MOD_ALT) buffer_insert_c_string (buf, "Alt-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 if (modifiers & MOD_SHIFT) buffer_insert_c_string (buf, "Sh-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141 if (SYMBOLP (keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143 Lisp_Object code = Fget (keysym, Vcharacter_set_property, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144 Emchar c = (CHAR_OR_CHAR_INTP (code)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 373
diff changeset
4145 ? XCHAR_OR_CHAR_INT (code) : (Emchar) -1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146 /* Calling Fsingle_key_description() would cons more */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147 #if 0 /* This is bogus */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4148 if (EQ (keysym, QKlinefeed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149 buffer_insert_c_string (buf, "LFD");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 else if (EQ (keysym, QKtab))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 buffer_insert_c_string (buf, "TAB");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4152 else if (EQ (keysym, QKreturn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 buffer_insert_c_string (buf, "RET");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4154 else if (EQ (keysym, QKescape))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4155 buffer_insert_c_string (buf, "ESC");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 else if (EQ (keysym, QKdelete))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 buffer_insert_c_string (buf, "DEL");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 else if (EQ (keysym, QKspace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159 buffer_insert_c_string (buf, "SPC");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 else if (EQ (keysym, QKbackspace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161 buffer_insert_c_string (buf, "BS");
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4162 else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164 if (c >= printable_min)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4165 buffer_insert_emacs_char (buf, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4166 else buffer_insert1 (buf, Fsymbol_name (keysym));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4168 else if (CHARP (keysym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4169 buffer_insert_emacs_char (buf, XCHAR (keysym));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4170 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4171 buffer_insert_c_string (buf, "---bad keysym---");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173 if (elided)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174 elided = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177 int k = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179 while (elide_next_two_p (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 k++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 list = XCDR (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 if (k != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186 if (k == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 buffer_insert_c_string (buf, ", ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 buffer_insert_c_string (buf, " .. ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 elided = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 /* Print a description of the definition of this character. */
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 215
diff changeset
4196 (*elt_describer) (XCDR (XCAR (list)), buffer);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 list = XCDR (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205 syms_of_keymap (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206 {
400
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4207 INIT_LRECORD_IMPLEMENTATION (keymap);
a86b2b5e0111 Import from CVS: tag r21-2-30
cvs
parents: 398
diff changeset
4208
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 defsymbol (&Qminor_mode_map_alist, "minor-mode-map-alist");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211 defsymbol (&Qkeymapp, "keymapp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213 defsymbol (&Qsuppress_keymap, "suppress-keymap");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 defsymbol (&Qmodeline_map, "modeline-map");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216 defsymbol (&Qtoolbar_map, "toolbar-map");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4218 DEFSUBR (Fkeymap_parents);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4219 DEFSUBR (Fset_keymap_parents);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4220 DEFSUBR (Fkeymap_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4221 DEFSUBR (Fset_keymap_name);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4222 DEFSUBR (Fkeymap_prompt);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4223 DEFSUBR (Fset_keymap_prompt);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4224 DEFSUBR (Fkeymap_default_binding);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4225 DEFSUBR (Fset_keymap_default_binding);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4226
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4227 DEFSUBR (Fkeymapp);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4228 DEFSUBR (Fmake_keymap);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4229 DEFSUBR (Fmake_sparse_keymap);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4230
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4231 DEFSUBR (Fcopy_keymap);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4232 DEFSUBR (Fkeymap_fullness);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4233 DEFSUBR (Fmap_keymap);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4234 DEFSUBR (Fevent_matches_key_specifier_p);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4235 DEFSUBR (Fdefine_key);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4236 DEFSUBR (Flookup_key);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4237 DEFSUBR (Fkey_binding);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4238 DEFSUBR (Fuse_global_map);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4239 DEFSUBR (Fuse_local_map);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4240 DEFSUBR (Fcurrent_local_map);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4241 DEFSUBR (Fcurrent_global_map);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4242 DEFSUBR (Fcurrent_keymaps);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4243 DEFSUBR (Faccessible_keymaps);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4244 DEFSUBR (Fkey_description);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4245 DEFSUBR (Fsingle_key_description);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4246 DEFSUBR (Fwhere_is_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4247 DEFSUBR (Fdescribe_bindings_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4248
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 10
diff changeset
4249 DEFSUBR (Ftext_char_description);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251 defsymbol (&Qcontrol, "control");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252 defsymbol (&Qctrl, "ctrl");
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4253 defsymbol (&Qmeta, "meta");
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4254 defsymbol (&Qsuper, "super");
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4255 defsymbol (&Qhyper, "hyper");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 defsymbol (&Qalt, "alt");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 defsymbol (&Qshift, "shift");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 defsymbol (&Qbutton0, "button0");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 defsymbol (&Qbutton1, "button1");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260 defsymbol (&Qbutton2, "button2");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 defsymbol (&Qbutton3, "button3");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262 defsymbol (&Qbutton4, "button4");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 defsymbol (&Qbutton5, "button5");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 defsymbol (&Qbutton6, "button6");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 defsymbol (&Qbutton7, "button7");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266 defsymbol (&Qbutton0up, "button0up");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 defsymbol (&Qbutton1up, "button1up");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268 defsymbol (&Qbutton2up, "button2up");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269 defsymbol (&Qbutton3up, "button3up");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 defsymbol (&Qbutton4up, "button4up");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271 defsymbol (&Qbutton5up, "button5up");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 defsymbol (&Qbutton6up, "button6up");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 defsymbol (&Qbutton7up, "button7up");
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
4274 defsymbol (&Qmouse_1, "mouse-1");
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
4275 defsymbol (&Qmouse_2, "mouse-2");
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
4276 defsymbol (&Qmouse_3, "mouse-3");
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4277 defsymbol (&Qmouse_4, "mouse-4");
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4278 defsymbol (&Qmouse_5, "mouse-5");
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
4279 defsymbol (&Qdown_mouse_1, "down-mouse-1");
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
4280 defsymbol (&Qdown_mouse_2, "down-mouse-2");
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 76
diff changeset
4281 defsymbol (&Qdown_mouse_3, "down-mouse-3");
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4282 defsymbol (&Qdown_mouse_4, "down-mouse-4");
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
4283 defsymbol (&Qdown_mouse_5, "down-mouse-5");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 defsymbol (&Qmenu_selection, "menu-selection");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285 defsymbol (&QLFD, "LFD");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 defsymbol (&QTAB, "TAB");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 defsymbol (&QRET, "RET");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288 defsymbol (&QESC, "ESC");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 defsymbol (&QDEL, "DEL");
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
4290 defsymbol (&QSPC, "SPC");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291 defsymbol (&QBS, "BS");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 vars_of_keymap (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297 DEFVAR_LISP ("meta-prefix-char", &Vmeta_prefix_char /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 Meta-prefix character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 This character followed by some character `foo' turns into `Meta-foo'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300 This can be any form recognized as a single key specifier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 To disable the meta-prefix-char, set it to a negative number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303 Vmeta_prefix_char = make_char (033);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4305 DEFVAR_LISP ("mouse-grabbed-buffer", &Vmouse_grabbed_buffer /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 A buffer which should be consulted first for all mouse activity.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 When a mouse-click is processed, it will first be looked up in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 local-map of this buffer, and then through the normal mechanism if there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309 is no binding for that click. This buffer's value of `mode-motion-hook'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 will be consulted instead of the `mode-motion-hook' of the buffer of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 window under the mouse. You should *bind* this, not set it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4312 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313 Vmouse_grabbed_buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316 Keymap that overrides all other local keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317 If this variable is non-nil, it is used as a keymap instead of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318 buffer's local map, and the minor mode keymaps and extent-local keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319 You should *bind* this, not set it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 Voverriding_local_map = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 Fset (Qminor_mode_map_alist, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 Keymap of key translations that can override keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 This keymap works like `function-key-map', but comes after that,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4328 and applies even for keys that have ordinary bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329 */ );
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4330 Vkey_translation_map = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4332 DEFVAR_LISP ("vertical-divider-map", &Vvertical_divider_map /*
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4333 Keymap which handles mouse clicks over vertical dividers.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4334 */ );
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
4335 Vvertical_divider_map = Qnil;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
4336
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4337 DEFVAR_INT ("keymap-tick", &keymap_tick /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338 Incremented for each change to any keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4339 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 keymap_tick = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 staticpro (&Vcurrent_global_map);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 380
diff changeset
4344 Vsingle_space_string = make_string ((const Bufbyte *) " ", 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345 staticpro (&Vsingle_space_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349 complex_vars_of_keymap (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 Lisp_Object ESC_prefix = intern ("ESC-prefix");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353 Lisp_Object meta_disgustitute;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 Vcurrent_global_map = Fmake_keymap (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 meta_disgustitute = Fmake_keymap (Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 Ffset (ESC_prefix, meta_disgustitute);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 /* no need to protect meta_disgustitute, though */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360 keymap_store_internal (MAKE_MODIFIER_HASH_KEY (MOD_META),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361 XKEYMAP (Vcurrent_global_map),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 meta_disgustitute);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363 XKEYMAP (Vcurrent_global_map)->sub_maps_cache = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 Vkey_translation_map = Fmake_sparse_keymap (intern ("key-translation-map"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 }