Mercurial > emacs
annotate src/keymap.c @ 6008:d3ccce72be00
(get_keyelt): Discard keyboard equivalents
stored in a menu keymap element.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 19 Feb 1994 06:29:30 +0000 |
| parents | e761c2b18894 |
| children | de651e959736 |
| rev | line source |
|---|---|
| 250 | 1 /* Manipulation of keymaps |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
2 Copyright (C) 1985, 86, 87, 88, 93, 94 Free Software Foundation, Inc. |
| 250 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
| 647 | 8 the Free Software Foundation; either version 2, or (at your option) |
| 250 | 9 any later version. |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
| 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 19 | |
| 20 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4575
diff
changeset
|
21 #include <config.h> |
| 250 | 22 #include <stdio.h> |
| 23 #undef NULL | |
| 24 #include "lisp.h" | |
| 25 #include "commands.h" | |
| 26 #include "buffer.h" | |
| 517 | 27 #include "keyboard.h" |
| 2059 | 28 #include "termhooks.h" |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2358
diff
changeset
|
29 #include "blockinput.h" |
| 250 | 30 |
| 31 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
| 32 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
33 /* The number of elements in keymap vectors. */ |
| 250 | 34 #define DENSE_TABLE_SIZE (0200) |
| 35 | |
| 36 /* Actually allocate storage for these variables */ | |
| 37 | |
| 38 Lisp_Object current_global_map; /* Current global keymap */ | |
| 39 | |
| 40 Lisp_Object global_map; /* default global key bindings */ | |
| 41 | |
| 42 Lisp_Object meta_map; /* The keymap used for globally bound | |
| 43 ESC-prefixed default commands */ | |
| 44 | |
| 45 Lisp_Object control_x_map; /* The keymap used for globally bound | |
| 46 C-x-prefixed default commands */ | |
| 47 | |
| 48 /* was MinibufLocalMap */ | |
| 49 Lisp_Object Vminibuffer_local_map; | |
| 50 /* The keymap used by the minibuf for local | |
| 51 bindings when spaces are allowed in the | |
| 52 minibuf */ | |
| 53 | |
| 54 /* was MinibufLocalNSMap */ | |
| 55 Lisp_Object Vminibuffer_local_ns_map; | |
| 56 /* The keymap used by the minibuf for local | |
| 57 bindings when spaces are not encouraged | |
| 58 in the minibuf */ | |
| 59 | |
| 60 /* keymap used for minibuffers when doing completion */ | |
| 61 /* was MinibufLocalCompletionMap */ | |
| 62 Lisp_Object Vminibuffer_local_completion_map; | |
| 63 | |
| 64 /* keymap used for minibuffers when doing completion and require a match */ | |
| 65 /* was MinibufLocalMustMatchMap */ | |
| 66 Lisp_Object Vminibuffer_local_must_match_map; | |
| 67 | |
| 465 | 68 /* Alist of minor mode variables and keymaps. */ |
| 69 Lisp_Object Vminor_mode_map_alist; | |
| 70 | |
| 517 | 71 /* Keymap mapping ASCII function key sequences onto their preferred forms. |
| 72 Initialized by the terminal-specific lisp files. See DEFVAR for more | |
| 73 documentation. */ | |
| 74 Lisp_Object Vfunction_key_map; | |
| 75 | |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
76 Lisp_Object Qkeymapp, Qkeymap, Qnon_ascii; |
| 250 | 77 |
| 2886 | 78 /* A char with the CHAR_META bit set in a vector or the 0200 bit set |
| 79 in a string key sequence is equivalent to prefixing with this | |
| 80 character. */ | |
| 250 | 81 extern Lisp_Object meta_prefix_char; |
| 82 | |
|
5613
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
83 extern Lisp_Object Voverriding_local_map; |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
84 |
| 250 | 85 void describe_map_tree (); |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
86 static Lisp_Object define_as_prefix (); |
| 250 | 87 static Lisp_Object describe_buffer_bindings (); |
| 88 static void describe_command (); | |
| 89 static void describe_map (); | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
90 static void describe_map_2 (); |
| 250 | 91 |
| 465 | 92 /* Keymap object support - constructors and predicates. */ |
| 93 | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
94 DEFUN ("make-keymap", Fmake_keymap, Smake_keymap, 0, 1, 0, |
| 250 | 95 "Construct and return a new keymap, of the form (keymap VECTOR . ALIST).\n\ |
|
2790
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
96 VECTOR is a vector which holds the bindings for the ASCII\n\ |
| 250 | 97 characters. ALIST is an assoc-list which holds bindings for function keys,\n\ |
| 98 mouse events, and any other things that appear in the input stream.\n\ | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
99 All entries in it are initially nil, meaning \"command undefined\".\n\n\ |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
100 The optional arg STRING supplies a menu name for the keymap\n\ |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
101 in case you use it as a menu with `x-popup-menu'.") |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
102 (string) |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
103 Lisp_Object string; |
| 250 | 104 { |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
105 Lisp_Object tail; |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
106 if (!NILP (string)) |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
107 tail = Fcons (string, Qnil); |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
108 else |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
109 tail = Qnil; |
| 250 | 110 return Fcons (Qkeymap, |
| 111 Fcons (Fmake_vector (make_number (DENSE_TABLE_SIZE), Qnil), | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
112 tail)); |
| 250 | 113 } |
| 114 | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
115 DEFUN ("make-sparse-keymap", Fmake_sparse_keymap, Smake_sparse_keymap, 0, 1, 0, |
| 250 | 116 "Construct and return a new sparse-keymap list.\n\ |
| 117 Its car is `keymap' and its cdr is an alist of (CHAR . DEFINITION),\n\ | |
| 118 which binds the character CHAR to DEFINITION, or (SYMBOL . DEFINITION),\n\ | |
| 119 which binds the function key or mouse event SYMBOL to DEFINITION.\n\ | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
120 Initially the alist is nil.\n\n\ |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
121 The optional arg STRING supplies a menu name for the keymap\n\ |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
122 in case you use it as a menu with `x-popup-menu'.") |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
123 (string) |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
124 Lisp_Object string; |
| 250 | 125 { |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
126 if (!NILP (string)) |
|
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
127 return Fcons (Qkeymap, Fcons (string, Qnil)); |
| 250 | 128 return Fcons (Qkeymap, Qnil); |
| 129 } | |
| 130 | |
| 131 /* This function is used for installing the standard key bindings | |
| 132 at initialization time. | |
| 133 | |
| 134 For example: | |
| 135 | |
|
1388
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
136 initial_define_key (control_x_map, Ctl('X'), "exchange-point-and-mark"); */ |
| 250 | 137 |
| 138 void | |
| 139 initial_define_key (keymap, key, defname) | |
| 140 Lisp_Object keymap; | |
| 141 int key; | |
| 142 char *defname; | |
| 143 { | |
| 144 store_in_keymap (keymap, make_number (key), intern (defname)); | |
| 145 } | |
| 146 | |
|
1388
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
147 void |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
148 initial_define_lispy_key (keymap, keyname, defname) |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
149 Lisp_Object keymap; |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
150 char *keyname; |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
151 char *defname; |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
152 { |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
153 store_in_keymap (keymap, intern (keyname), intern (defname)); |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
154 } |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
155 |
| 250 | 156 /* Define character fromchar in map frommap as an alias for character |
| 157 tochar in map tomap. Subsequent redefinitions of the latter WILL | |
| 158 affect the former. */ | |
| 159 | |
| 160 #if 0 | |
| 161 void | |
| 162 synkey (frommap, fromchar, tomap, tochar) | |
| 163 struct Lisp_Vector *frommap, *tomap; | |
| 164 int fromchar, tochar; | |
| 165 { | |
| 166 Lisp_Object v, c; | |
| 167 XSET (v, Lisp_Vector, tomap); | |
| 168 XFASTINT (c) = tochar; | |
| 169 frommap->contents[fromchar] = Fcons (v, c); | |
| 170 } | |
| 171 #endif /* 0 */ | |
| 172 | |
| 173 DEFUN ("keymapp", Fkeymapp, Skeymapp, 1, 1, 0, | |
| 174 "Return t if ARG is a keymap.\n\ | |
| 362 | 175 \n\ |
|
2790
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
176 A keymap is a list (keymap . ALIST),\n\ |
| 362 | 177 or a symbol whose function definition is a keymap is itself a keymap.\n\ |
| 178 ALIST elements look like (CHAR . DEFN) or (SYMBOL . DEFN);\n\ | |
|
2790
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
179 a vector of densely packed bindings for small character codes\n\ |
|
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
180 is also allowed as an element.") |
| 250 | 181 (object) |
| 182 Lisp_Object object; | |
| 183 { | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
184 return (NILP (get_keymap_1 (object, 0, 0)) ? Qnil : Qt); |
| 250 | 185 } |
| 186 | |
| 187 /* Check that OBJECT is a keymap (after dereferencing through any | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
188 symbols). If it is, return it. |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
189 |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
190 If AUTOLOAD is non-zero and OBJECT is a symbol whose function value |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
191 is an autoload form, do the autoload and try again. |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
192 |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
193 ERROR controls how we respond if OBJECT isn't a keymap. |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
194 If ERROR is non-zero, signal an error; otherwise, just return Qnil. |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
195 |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
196 Note that most of the time, we don't want to pursue autoloads. |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
197 Functions like Faccessible_keymaps which scan entire keymap trees |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
198 shouldn't load every autoloaded keymap. I'm not sure about this, |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
199 but it seems to me that only read_key_sequence, Flookup_key, and |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
200 Fdefine_key should cause keymaps to be autoloaded. */ |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
201 |
| 250 | 202 Lisp_Object |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
203 get_keymap_1 (object, error, autoload) |
| 250 | 204 Lisp_Object object; |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
205 int error, autoload; |
| 250 | 206 { |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
207 Lisp_Object tem; |
| 250 | 208 |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
209 autoload_retry: |
| 647 | 210 tem = indirect_function (object); |
| 250 | 211 if (CONSP (tem) && EQ (XCONS (tem)->car, Qkeymap)) |
| 212 return tem; | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
213 |
|
1566
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
214 /* Should we do an autoload? Autoload forms for keymaps have |
|
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
215 Qkeymap as their fifth element. */ |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
216 if (autoload |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
217 && XTYPE (object) == Lisp_Symbol |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
218 && CONSP (tem) |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
219 && EQ (XCONS (tem)->car, Qautoload)) |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
220 { |
|
1566
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
221 Lisp_Object tail; |
|
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
222 |
|
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
223 tail = Fnth (make_number (4), tem); |
|
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
224 if (EQ (tail, Qkeymap)) |
|
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
225 { |
|
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
226 struct gcpro gcpro1, gcpro2; |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
227 |
|
3691
49ce2242f5c1
(get_keymap_1): Add missing semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
3674
diff
changeset
|
228 GCPRO2 (tem, object); |
|
49ce2242f5c1
(get_keymap_1): Add missing semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
3674
diff
changeset
|
229 do_autoload (tem, object); |
|
1566
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
230 UNGCPRO; |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
231 |
|
1566
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
232 goto autoload_retry; |
|
892c9f61217a
* keymap.c (get_keymap_1): Don't try to autoload OBJECT's function
Jim Blandy <jimb@redhat.com>
parents:
1517
diff
changeset
|
233 } |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
234 } |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
235 |
| 250 | 236 if (error) |
| 237 wrong_type_argument (Qkeymapp, object); | |
| 465 | 238 else |
| 239 return Qnil; | |
| 250 | 240 } |
| 241 | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
242 |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
243 /* Follow any symbol chaining, and return the keymap denoted by OBJECT. |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
244 If OBJECT doesn't denote a keymap at all, signal an error. */ |
| 250 | 245 Lisp_Object |
| 246 get_keymap (object) | |
| 247 Lisp_Object object; | |
| 248 { | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
249 return get_keymap_1 (object, 0, 0); |
| 250 | 250 } |
| 251 | |
| 252 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
253 /* Look up IDX in MAP. IDX may be any sort of event. |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
254 Note that this does only one level of lookup; IDX must be a single |
|
1388
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
255 event, not a sequence. |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
256 |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
257 If T_OK is non-zero, bindings for Qt are treated as default |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
258 bindings; any key left unmentioned by other tables and bindings is |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
259 given the binding of Qt. |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
260 |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
261 If T_OK is zero, bindings for Qt are not treated specially. |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
262 |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
263 If NOINHERIT, don't accept a subkeymap found in an inherited keymap. */ |
| 250 | 264 |
| 265 Lisp_Object | |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
266 access_keymap (map, idx, t_ok, noinherit) |
| 250 | 267 Lisp_Object map; |
| 268 Lisp_Object idx; | |
|
1388
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
269 int t_ok; |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
270 int noinherit; |
| 250 | 271 { |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
272 int noprefix = 0; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
273 Lisp_Object val; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
274 |
| 250 | 275 /* If idx is a list (some sort of mouse click, perhaps?), |
| 276 the index we want to use is the car of the list, which | |
| 277 ought to be a symbol. */ | |
|
1315
884c3d7e7172
* keymap.c (access_keymap, store_in_keymap,
Jim Blandy <jimb@redhat.com>
parents:
1264
diff
changeset
|
278 idx = EVENT_HEAD (idx); |
| 250 | 279 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
280 /* If idx is a symbol, it might have modifiers, which need to |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
281 be put in the canonical order. */ |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
282 if (XTYPE (idx) == Lisp_Symbol) |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
283 idx = reorder_modifiers (idx); |
|
3515
9d0af0f2dc0d
(access_keymap, store_in_keymap): Discard meaningless
Richard M. Stallman <rms@gnu.org>
parents:
3425
diff
changeset
|
284 else if (INTEGERP (idx)) |
|
9d0af0f2dc0d
(access_keymap, store_in_keymap): Discard meaningless
Richard M. Stallman <rms@gnu.org>
parents:
3425
diff
changeset
|
285 /* Clobber the high bits that can be present on a machine |
|
9d0af0f2dc0d
(access_keymap, store_in_keymap): Discard meaningless
Richard M. Stallman <rms@gnu.org>
parents:
3425
diff
changeset
|
286 with more than 24 bits of integer. */ |
|
3632
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
287 XFASTINT (idx) = XINT (idx) & (CHAR_META | (CHAR_META - 1)); |
| 250 | 288 |
| 289 { | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
290 Lisp_Object tail; |
|
1388
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
291 Lisp_Object t_binding = Qnil; |
| 250 | 292 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
293 for (tail = map; CONSP (tail); tail = XCONS (tail)->cdr) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
294 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
295 Lisp_Object binding = XCONS (tail)->car; |
| 250 | 296 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
297 switch (XTYPE (binding)) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
298 { |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
299 case Lisp_Symbol: |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
300 /* If NOINHERIT, stop finding prefix definitions |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
301 after we pass a second occurrence of the `keymap' symbol. */ |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
302 if (noinherit && EQ (binding, Qkeymap) && ! EQ (tail, map)) |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
303 noprefix = 1; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
304 break; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
305 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
306 case Lisp_Cons: |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
307 if (EQ (XCONS (binding)->car, idx)) |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
308 { |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
309 val = XCONS (binding)->cdr; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
310 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap)) |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
311 return Qnil; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
312 return val; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
313 } |
|
1388
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
314 if (t_ok && EQ (XCONS (binding)->car, Qt)) |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
315 t_binding = XCONS (binding)->cdr; |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
316 break; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
317 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
318 case Lisp_Vector: |
|
2790
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
319 if (XTYPE (idx) == Lisp_Int |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
320 && XINT (idx) >= 0 |
|
2790
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
321 && XINT (idx) < XVECTOR (binding)->size) |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
322 { |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
323 val = XVECTOR (binding)->contents[XINT (idx)]; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
324 if (noprefix && CONSP (val) && EQ (XCONS (val)->car, Qkeymap)) |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
325 return Qnil; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
326 return val; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
327 } |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
328 break; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
329 } |
|
1264
6ba9d5aaace6
* keymap.c (access_keymap): Don't forget to QUIT while scanning
Jim Blandy <jimb@redhat.com>
parents:
1236
diff
changeset
|
330 |
|
6ba9d5aaace6
* keymap.c (access_keymap): Don't forget to QUIT while scanning
Jim Blandy <jimb@redhat.com>
parents:
1236
diff
changeset
|
331 QUIT; |
| 250 | 332 } |
|
1388
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
333 |
|
02226bff1476
* keymap.c (initial_define_lispy_key): New function, for defining
Jim Blandy <jimb@redhat.com>
parents:
1315
diff
changeset
|
334 return t_binding; |
|
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
335 } |
| 250 | 336 } |
| 337 | |
| 338 /* Given OBJECT which was found in a slot in a keymap, | |
| 339 trace indirect definitions to get the actual definition of that slot. | |
| 340 An indirect definition is a list of the form | |
| 341 (KEYMAP . INDEX), where KEYMAP is a keymap or a symbol defined as one | |
| 342 and INDEX is the object to look up in KEYMAP to yield the definition. | |
| 343 | |
| 344 Also if OBJECT has a menu string as the first element, | |
|
1160
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
345 remove that. Also remove a menu help string as second element. */ |
| 250 | 346 |
| 347 Lisp_Object | |
| 348 get_keyelt (object) | |
| 349 register Lisp_Object object; | |
| 350 { | |
| 351 while (1) | |
| 352 { | |
| 353 register Lisp_Object map, tem; | |
| 354 | |
|
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
355 /* If the contents are (KEYMAP . ELEMENT), go indirect. */ |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
356 map = get_keymap_1 (Fcar_safe (object), 0, 0); |
| 250 | 357 tem = Fkeymapp (map); |
| 485 | 358 if (!NILP (tem)) |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
359 object = access_keymap (map, Fcdr (object), 0, 0); |
| 250 | 360 |
| 361 /* If the keymap contents looks like (STRING . DEFN), | |
| 362 use DEFN. | |
| 363 Keymap alist elements like (CHAR MENUSTRING . DEFN) | |
| 364 will be used by HierarKey menus. */ | |
| 365 else if (XTYPE (object) == Lisp_Cons | |
| 366 && XTYPE (XCONS (object)->car) == Lisp_String) | |
|
1160
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
367 { |
|
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
368 object = XCONS (object)->cdr; |
|
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
369 /* Also remove a menu help string, if any, |
|
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
370 following the menu item name. */ |
|
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
371 if (XTYPE (object) == Lisp_Cons |
|
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
372 && XTYPE (XCONS (object)->car) == Lisp_String) |
|
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
373 object = XCONS (object)->cdr; |
|
6008
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
374 /* Also remove the vector that caches key equivalences, if any. */ |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
375 if (XTYPE (object) == Lisp_Cons |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
376 && XTYPE (XCONS (object)->car) == Lisp_Vector) |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
377 { |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
378 object = XCONS (object)->cdr; |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
379 /* Also remove the key's description. */ |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
380 if (XTYPE (object) == Lisp_Cons |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
381 && XTYPE (XCONS (object)->car) == Lisp_String) |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
382 object = XCONS (object)->cdr; |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
383 } |
|
1160
f7b55bfe1c05
(get_keyelt): Skip menu help string after menu item name.
Richard M. Stallman <rms@gnu.org>
parents:
1120
diff
changeset
|
384 } |
| 250 | 385 |
| 386 else | |
| 387 /* Anything else is really the value. */ | |
| 388 return object; | |
| 389 } | |
| 390 } | |
| 391 | |
| 392 Lisp_Object | |
| 393 store_in_keymap (keymap, idx, def) | |
| 394 Lisp_Object keymap; | |
| 395 register Lisp_Object idx; | |
| 396 register Lisp_Object def; | |
| 397 { | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
398 if (XTYPE (keymap) != Lisp_Cons |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
399 || ! EQ (XCONS (keymap)->car, Qkeymap)) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
400 error ("attempt to define a key in a non-keymap"); |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
401 |
| 250 | 402 /* If idx is a list (some sort of mouse click, perhaps?), |
| 403 the index we want to use is the car of the list, which | |
| 404 ought to be a symbol. */ | |
|
1315
884c3d7e7172
* keymap.c (access_keymap, store_in_keymap,
Jim Blandy <jimb@redhat.com>
parents:
1264
diff
changeset
|
405 idx = EVENT_HEAD (idx); |
| 250 | 406 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
407 /* If idx is a symbol, it might have modifiers, which need to |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
408 be put in the canonical order. */ |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
409 if (XTYPE (idx) == Lisp_Symbol) |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
410 idx = reorder_modifiers (idx); |
|
3515
9d0af0f2dc0d
(access_keymap, store_in_keymap): Discard meaningless
Richard M. Stallman <rms@gnu.org>
parents:
3425
diff
changeset
|
411 else if (INTEGERP (idx)) |
|
9d0af0f2dc0d
(access_keymap, store_in_keymap): Discard meaningless
Richard M. Stallman <rms@gnu.org>
parents:
3425
diff
changeset
|
412 /* Clobber the high bits that can be present on a machine |
|
9d0af0f2dc0d
(access_keymap, store_in_keymap): Discard meaningless
Richard M. Stallman <rms@gnu.org>
parents:
3425
diff
changeset
|
413 with more than 24 bits of integer. */ |
|
3632
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
414 XFASTINT (idx) = XINT (idx) & (CHAR_META | (CHAR_META - 1)); |
| 250 | 415 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
416 /* Scan the keymap for a binding of idx. */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
417 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
418 Lisp_Object tail; |
| 250 | 419 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
420 /* The cons after which we should insert new bindings. If the |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
421 keymap has a table element, we record its position here, so new |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
422 bindings will go after it; this way, the table will stay |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
423 towards the front of the alist and character lookups in dense |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
424 keymaps will remain fast. Otherwise, this just points at the |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
425 front of the keymap. */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
426 Lisp_Object insertion_point = keymap; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
427 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
428 for (tail = XCONS (keymap)->cdr; CONSP (tail); tail = XCONS (tail)->cdr) |
| 250 | 429 { |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
430 Lisp_Object elt = XCONS (tail)->car; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
431 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
432 switch (XTYPE (elt)) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
433 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
434 case Lisp_Vector: |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
435 if (XTYPE (idx) == Lisp_Int |
|
2790
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
436 && XINT (idx) >= 0 && XINT (idx) < XVECTOR (elt)->size) |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
437 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
438 XVECTOR (elt)->contents[XFASTINT (idx)] = def; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
439 return def; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
440 } |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
441 insertion_point = tail; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
442 break; |
| 250 | 443 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
444 case Lisp_Cons: |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
445 if (EQ (idx, XCONS (elt)->car)) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
446 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
447 XCONS (elt)->cdr = def; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
448 return def; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
449 } |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
450 break; |
| 250 | 451 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
452 case Lisp_Symbol: |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
453 /* If we find a 'keymap' symbol in the spine of KEYMAP, |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
454 then we must have found the start of a second keymap |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
455 being used as the tail of KEYMAP, and a binding for IDX |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
456 should be inserted before it. */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
457 if (EQ (elt, Qkeymap)) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
458 goto keymap_end; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
459 break; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
460 } |
|
1441
929409595312
* keymap.c (store_in_keymap): Don't forget to QUIT in the
Jim Blandy <jimb@redhat.com>
parents:
1388
diff
changeset
|
461 |
|
929409595312
* keymap.c (store_in_keymap): Don't forget to QUIT in the
Jim Blandy <jimb@redhat.com>
parents:
1388
diff
changeset
|
462 QUIT; |
| 250 | 463 } |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
464 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
465 keymap_end: |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
466 /* We have scanned the entire keymap, and not found a binding for |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
467 IDX. Let's add one. */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
468 XCONS (insertion_point)->cdr = |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
469 Fcons (Fcons (idx, def), XCONS (insertion_point)->cdr); |
| 250 | 470 } |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
471 |
| 250 | 472 return def; |
| 473 } | |
| 474 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
475 |
| 250 | 476 DEFUN ("copy-keymap", Fcopy_keymap, Scopy_keymap, 1, 1, 0, |
| 477 "Return a copy of the keymap KEYMAP.\n\ | |
| 478 The copy starts out with the same definitions of KEYMAP,\n\ | |
| 479 but changing either the copy or KEYMAP does not affect the other.\n\ | |
| 362 | 480 Any key definitions that are subkeymaps are recursively copied.\n\ |
| 481 However, a key definition which is a symbol whose definition is a keymap\n\ | |
| 482 is not copied.") | |
| 250 | 483 (keymap) |
| 484 Lisp_Object keymap; | |
| 485 { | |
| 486 register Lisp_Object copy, tail; | |
| 487 | |
| 488 copy = Fcopy_alist (get_keymap (keymap)); | |
| 489 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
490 for (tail = copy; CONSP (tail); tail = XCONS (tail)->cdr) |
| 250 | 491 { |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
492 Lisp_Object elt = XCONS (tail)->car; |
| 250 | 493 |
|
2790
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
494 if (XTYPE (elt) == Lisp_Vector) |
| 250 | 495 { |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
496 int i; |
| 250 | 497 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
498 elt = Fcopy_sequence (elt); |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
499 XCONS (tail)->car = elt; |
| 250 | 500 |
|
2790
cf431814ce6a
(access_keymap): Handle any length vector.
Richard M. Stallman <rms@gnu.org>
parents:
2755
diff
changeset
|
501 for (i = 0; i < XVECTOR (elt)->size; i++) |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
502 if (XTYPE (XVECTOR (elt)->contents[i]) != Lisp_Symbol |
|
3674
cfa45731460e
(Fcopy_keymap): Check Fkeymapp value with NILP.
Richard M. Stallman <rms@gnu.org>
parents:
3632
diff
changeset
|
503 && ! NILP (Fkeymapp (XVECTOR (elt)->contents[i]))) |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
504 XVECTOR (elt)->contents[i] = |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
505 Fcopy_keymap (XVECTOR (elt)->contents[i]); |
| 250 | 506 } |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
507 else if (CONSP (elt) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
508 && XTYPE (XCONS (elt)->cdr) != Lisp_Symbol |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
509 && ! NILP (Fkeymapp (XCONS (elt)->cdr))) |
| 250 | 510 XCONS (elt)->cdr = Fcopy_keymap (XCONS (elt)->cdr); |
| 511 } | |
| 512 | |
| 513 return copy; | |
| 514 } | |
| 515 | |
| 465 | 516 /* Simple Keymap mutators and accessors. */ |
| 517 | |
| 250 | 518 DEFUN ("define-key", Fdefine_key, Sdefine_key, 3, 3, 0, |
| 519 "Args KEYMAP, KEY, DEF. Define key sequence KEY, in KEYMAP, as DEF.\n\ | |
| 520 KEYMAP is a keymap. KEY is a string or a vector of symbols and characters\n\ | |
| 521 meaning a sequence of keystrokes and events.\n\ | |
| 5100 | 522 Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\ |
| 523 can be included if you use a vector.\n\ | |
| 250 | 524 DEF is anything that can be a key's definition:\n\ |
| 525 nil (means key is undefined in this keymap),\n\ | |
| 526 a command (a Lisp function suitable for interactive calling)\n\ | |
| 527 a string (treated as a keyboard macro),\n\ | |
| 528 a keymap (to define a prefix key),\n\ | |
| 529 a symbol. When the key is looked up, the symbol will stand for its\n\ | |
| 530 function definition, which should at that time be one of the above,\n\ | |
| 531 or another symbol whose function definition is used, etc.\n\ | |
| 532 a cons (STRING . DEFN), meaning that DEFN is the definition\n\ | |
| 533 (DEFN should be a valid definition in its own right),\n\ | |
| 368 | 534 or a cons (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP.\n\ |
| 535 \n\ | |
| 536 If KEYMAP is a sparse keymap, the pair binding KEY to DEF is added at\n\ | |
| 537 the front of KEYMAP.") | |
| 250 | 538 (keymap, key, def) |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
539 Lisp_Object keymap; |
| 250 | 540 Lisp_Object key; |
| 541 Lisp_Object def; | |
| 542 { | |
| 543 register int idx; | |
| 544 register Lisp_Object c; | |
| 545 register Lisp_Object tem; | |
| 546 register Lisp_Object cmd; | |
| 547 int metized = 0; | |
| 2059 | 548 int meta_bit; |
| 250 | 549 int length; |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
550 struct gcpro gcpro1, gcpro2, gcpro3; |
| 250 | 551 |
| 552 keymap = get_keymap (keymap); | |
| 553 | |
| 554 if (XTYPE (key) != Lisp_Vector | |
| 555 && XTYPE (key) != Lisp_String) | |
| 556 key = wrong_type_argument (Qarrayp, key); | |
| 557 | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
558 length = XFASTINT (Flength (key)); |
| 250 | 559 if (length == 0) |
| 560 return Qnil; | |
| 561 | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
562 GCPRO3 (keymap, key, def); |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
563 |
| 2059 | 564 if (XTYPE (key) == Lisp_Vector) |
| 565 meta_bit = meta_modifier; | |
| 566 else | |
| 567 meta_bit = 0x80; | |
| 568 | |
| 250 | 569 idx = 0; |
| 570 while (1) | |
| 571 { | |
| 572 c = Faref (key, make_number (idx)); | |
| 573 | |
| 574 if (XTYPE (c) == Lisp_Int | |
| 2059 | 575 && (XINT (c) & meta_bit) |
| 250 | 576 && !metized) |
| 577 { | |
| 578 c = meta_prefix_char; | |
| 579 metized = 1; | |
| 580 } | |
| 581 else | |
| 582 { | |
| 583 if (XTYPE (c) == Lisp_Int) | |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
584 XSETINT (c, XINT (c) & ~meta_bit); |
| 250 | 585 |
| 586 metized = 0; | |
| 587 idx++; | |
| 588 } | |
| 589 | |
| 590 if (idx == length) | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
591 RETURN_UNGCPRO (store_in_keymap (keymap, c, def)); |
| 250 | 592 |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
593 cmd = get_keyelt (access_keymap (keymap, c, 0, 1)); |
| 250 | 594 |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
595 /* If this key is undefined, make it a prefix. */ |
| 485 | 596 if (NILP (cmd)) |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
597 cmd = define_as_prefix (keymap, c); |
| 250 | 598 |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
599 keymap = get_keymap_1 (cmd, 0, 1); |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
600 if (NILP (keymap)) |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1566
diff
changeset
|
601 { |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1566
diff
changeset
|
602 /* We must use Fkey_description rather than just passing key to |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1566
diff
changeset
|
603 error; key might be a vector, not a string. */ |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1566
diff
changeset
|
604 Lisp_Object description = Fkey_description (key); |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1566
diff
changeset
|
605 |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1566
diff
changeset
|
606 error ("Key sequence %s uses invalid prefix characters", |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1566
diff
changeset
|
607 XSTRING (description)->data); |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1566
diff
changeset
|
608 } |
| 250 | 609 } |
| 610 } | |
| 611 | |
| 612 /* Value is number if KEY is too long; NIL if valid but has no definition. */ | |
| 613 | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
614 DEFUN ("lookup-key", Flookup_key, Slookup_key, 2, 3, 0, |
| 250 | 615 "In keymap KEYMAP, look up key sequence KEY. Return the definition.\n\ |
| 616 nil means undefined. See doc of `define-key' for kinds of definitions.\n\ | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
617 \n\ |
| 250 | 618 A number as value means KEY is \"too long\";\n\ |
| 619 that is, characters or symbols in it except for the last one\n\ | |
| 620 fail to be a valid sequence of prefix characters in KEYMAP.\n\ | |
| 621 The number is how many characters at the front of KEY\n\ | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
622 it takes to reach a non-prefix command.\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
623 \n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
624 Normally, `lookup-key' ignores bindings for t, which act as default\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
625 bindings, used when nothing else in the keymap applies; this makes it\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
626 useable as a general function for probing keymaps. However, if the\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
627 third optional argument ACCEPT-DEFAULT is non-nil, `lookup-key' will\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
628 recognize the default bindings, just as `read-key-sequence' does.") |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
629 (keymap, key, accept_default) |
| 250 | 630 register Lisp_Object keymap; |
| 631 Lisp_Object key; | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
632 Lisp_Object accept_default; |
| 250 | 633 { |
| 634 register int idx; | |
| 635 register Lisp_Object tem; | |
| 636 register Lisp_Object cmd; | |
| 637 register Lisp_Object c; | |
| 638 int metized = 0; | |
| 639 int length; | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
640 int t_ok = ! NILP (accept_default); |
| 2059 | 641 int meta_bit; |
| 250 | 642 |
| 643 keymap = get_keymap (keymap); | |
| 644 | |
| 645 if (XTYPE (key) != Lisp_Vector | |
| 646 && XTYPE (key) != Lisp_String) | |
| 647 key = wrong_type_argument (Qarrayp, key); | |
| 648 | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
649 length = XFASTINT (Flength (key)); |
| 250 | 650 if (length == 0) |
| 651 return keymap; | |
| 652 | |
| 2059 | 653 if (XTYPE (key) == Lisp_Vector) |
| 654 meta_bit = meta_modifier; | |
| 655 else | |
| 656 meta_bit = 0x80; | |
| 657 | |
| 250 | 658 idx = 0; |
| 659 while (1) | |
| 660 { | |
| 661 c = Faref (key, make_number (idx)); | |
| 662 | |
| 663 if (XTYPE (c) == Lisp_Int | |
| 2059 | 664 && (XINT (c) & meta_bit) |
| 250 | 665 && !metized) |
| 666 { | |
| 667 c = meta_prefix_char; | |
| 668 metized = 1; | |
| 669 } | |
| 670 else | |
| 671 { | |
| 672 if (XTYPE (c) == Lisp_Int) | |
| 2059 | 673 XSETINT (c, XINT (c) & ~meta_bit); |
| 250 | 674 |
| 675 metized = 0; | |
| 676 idx++; | |
| 677 } | |
| 678 | |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
679 cmd = get_keyelt (access_keymap (keymap, c, t_ok, 0)); |
| 250 | 680 if (idx == length) |
| 681 return cmd; | |
| 682 | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
683 keymap = get_keymap_1 (cmd, 0, 0); |
|
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
684 if (NILP (keymap)) |
| 250 | 685 return make_number (idx); |
| 686 | |
| 687 QUIT; | |
| 688 } | |
| 689 } | |
| 690 | |
|
3735
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
691 /* Make KEYMAP define event C as a keymap (i.e., as a prefix). |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
692 Assume that currently it does not define C at all. |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
693 Return the keymap. */ |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
694 |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
695 static Lisp_Object |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
696 define_as_prefix (keymap, c) |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
697 Lisp_Object keymap, c; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
698 { |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
699 Lisp_Object inherit, cmd; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
700 |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
701 cmd = Fmake_sparse_keymap (Qnil); |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
702 /* If this key is defined as a prefix in an inherited keymap, |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
703 make it a prefix in this map, and make its definition |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
704 inherit the other prefix definition. */ |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
705 inherit = access_keymap (keymap, c, 0, 0); |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
706 if (NILP (inherit)) |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
707 { |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
708 /* If there's an inherited keymap |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
709 and it doesn't define this key, |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
710 make it define this key. */ |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
711 Lisp_Object tail; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
712 |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
713 for (tail = Fcdr (keymap); CONSP (tail); tail = XCONS (tail)->cdr) |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
714 if (EQ (XCONS (tail)->car, Qkeymap)) |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
715 break; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
716 |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
717 if (!NILP (tail)) |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
718 inherit = define_as_prefix (tail, c); |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
719 } |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
720 |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
721 cmd = nconc2 (cmd, inherit); |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
722 store_in_keymap (keymap, c, cmd); |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
723 |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
724 return cmd; |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
725 } |
|
7193a99a87c1
Make prefix keys work with keymap inheritance
Richard M. Stallman <rms@gnu.org>
parents:
3691
diff
changeset
|
726 |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
727 /* Append a key to the end of a key sequence. We always make a vector. */ |
|
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
728 |
| 250 | 729 Lisp_Object |
| 730 append_key (key_sequence, key) | |
| 731 Lisp_Object key_sequence, key; | |
| 732 { | |
| 733 Lisp_Object args[2]; | |
| 734 | |
| 735 args[0] = key_sequence; | |
| 736 | |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
737 args[1] = Fcons (key, Qnil); |
|
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
738 return Fvconcat (2, args); |
| 250 | 739 } |
| 740 | |
| 741 | |
| 465 | 742 /* Global, local, and minor mode keymap stuff. */ |
| 743 | |
| 485 | 744 /* We can't put these variables inside current_minor_maps, since under |
| 517 | 745 some systems, static gets macro-defined to be the empty string. |
| 746 Ickypoo. */ | |
| 485 | 747 static Lisp_Object *cmm_modes, *cmm_maps; |
| 748 static int cmm_size; | |
| 749 | |
| 465 | 750 /* Store a pointer to an array of the keymaps of the currently active |
| 751 minor modes in *buf, and return the number of maps it contains. | |
| 752 | |
| 753 This function always returns a pointer to the same buffer, and may | |
| 754 free or reallocate it, so if you want to keep it for a long time or | |
| 755 hand it out to lisp code, copy it. This procedure will be called | |
| 756 for every key sequence read, so the nice lispy approach (return a | |
| 757 new assoclist, list, what have you) for each invocation would | |
| 758 result in a lot of consing over time. | |
| 759 | |
| 760 If we used xrealloc/xmalloc and ran out of memory, they would throw | |
| 761 back to the command loop, which would try to read a key sequence, | |
| 762 which would call this function again, resulting in an infinite | |
| 763 loop. Instead, we'll use realloc/malloc and silently truncate the | |
| 764 list, let the key sequence be read, and hope some other piece of | |
| 765 code signals the error. */ | |
| 766 int | |
| 767 current_minor_maps (modeptr, mapptr) | |
| 768 Lisp_Object **modeptr, **mapptr; | |
| 769 { | |
| 770 int i = 0; | |
| 517 | 771 Lisp_Object alist, assoc, var, val; |
| 465 | 772 |
| 773 for (alist = Vminor_mode_map_alist; | |
| 774 CONSP (alist); | |
| 775 alist = XCONS (alist)->cdr) | |
| 776 if (CONSP (assoc = XCONS (alist)->car) | |
| 777 && XTYPE (var = XCONS (assoc)->car) == Lisp_Symbol | |
| 517 | 778 && ! EQ ((val = find_symbol_value (var)), Qunbound) |
| 779 && ! NILP (val)) | |
| 465 | 780 { |
| 485 | 781 if (i >= cmm_size) |
| 465 | 782 { |
| 783 Lisp_Object *newmodes, *newmaps; | |
| 784 | |
| 485 | 785 if (cmm_maps) |
| 465 | 786 { |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2358
diff
changeset
|
787 BLOCK_INPUT; |
|
5691
a93fc56763fd
Scale by sizeof when allocating objects.
Karl Heuer <kwzh@gnu.org>
parents:
5613
diff
changeset
|
788 cmm_size *= 2; |
| 5704 | 789 newmodes |
| 790 = (Lisp_Object *) realloc (cmm_modes, | |
| 791 cmm_size * sizeof (Lisp_Object)); | |
| 792 newmaps | |
| 793 = (Lisp_Object *) realloc (cmm_maps, | |
| 794 cmm_size * sizeof (Lisp_Object)); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2358
diff
changeset
|
795 UNBLOCK_INPUT; |
| 465 | 796 } |
| 797 else | |
| 798 { | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2358
diff
changeset
|
799 BLOCK_INPUT; |
|
5691
a93fc56763fd
Scale by sizeof when allocating objects.
Karl Heuer <kwzh@gnu.org>
parents:
5613
diff
changeset
|
800 cmm_size = 30; |
| 5704 | 801 newmodes |
| 802 = (Lisp_Object *) malloc (cmm_size * sizeof (Lisp_Object)); | |
| 803 newmaps | |
| 804 = (Lisp_Object *) malloc (cmm_size * sizeof (Lisp_Object)); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2358
diff
changeset
|
805 UNBLOCK_INPUT; |
| 465 | 806 } |
| 807 | |
| 808 if (newmaps && newmodes) | |
| 809 { | |
| 485 | 810 cmm_modes = newmodes; |
| 811 cmm_maps = newmaps; | |
| 465 | 812 } |
| 813 else | |
| 814 break; | |
| 815 } | |
| 485 | 816 cmm_modes[i] = var; |
|
2755
ed10207955a4
(current_minor_maps): Call Findirect_function, so symbols
Richard M. Stallman <rms@gnu.org>
parents:
2752
diff
changeset
|
817 cmm_maps [i] = Findirect_function (XCONS (assoc)->cdr); |
| 465 | 818 i++; |
| 819 } | |
| 820 | |
| 485 | 821 if (modeptr) *modeptr = cmm_modes; |
| 822 if (mapptr) *mapptr = cmm_maps; | |
| 465 | 823 return i; |
| 824 } | |
| 825 | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
826 DEFUN ("key-binding", Fkey_binding, Skey_binding, 1, 2, 0, |
| 250 | 827 "Return the binding for command KEY in current keymaps.\n\ |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
828 KEY is a string or vector, a sequence of keystrokes.\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
829 The binding is probably a symbol with a function definition.\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
830 \n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
831 Normally, `key-binding' ignores bindings for t, which act as default\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
832 bindings, used when nothing else in the keymap applies; this makes it\n\ |
|
5055
bbe5bba17b10
(Fkey_binding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
833 usable as a general function for probing keymaps. However, if the\n\ |
|
bbe5bba17b10
(Fkey_binding): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
834 optional second argument ACCEPT-DEFAULT is non-nil, `key-binding' does\n\ |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
835 recognize the default bindings, just as `read-key-sequence' does.") |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
836 (key, accept_default) |
| 250 | 837 Lisp_Object key; |
| 838 { | |
| 465 | 839 Lisp_Object *maps, value; |
| 840 int nmaps, i; | |
| 841 | |
|
5613
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
842 if (!NILP (Voverriding_local_map)) |
| 250 | 843 { |
|
5613
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
844 value = Flookup_key (Voverriding_local_map, key, accept_default); |
| 485 | 845 if (! NILP (value) && XTYPE (value) != Lisp_Int) |
| 250 | 846 return value; |
| 847 } | |
|
5613
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
848 else |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
849 { |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
850 nmaps = current_minor_maps (0, &maps); |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
851 for (i = 0; i < nmaps; i++) |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
852 if (! NILP (maps[i])) |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
853 { |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
854 value = Flookup_key (maps[i], key, accept_default); |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
855 if (! NILP (value) && XTYPE (value) != Lisp_Int) |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
856 return value; |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
857 } |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
858 |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
859 if (! NILP (current_buffer->keymap)) |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
860 { |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
861 value = Flookup_key (current_buffer->keymap, key, accept_default); |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
862 if (! NILP (value) && XTYPE (value) != Lisp_Int) |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
863 return value; |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
864 } |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
865 } |
| 465 | 866 |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
867 value = Flookup_key (current_global_map, key, accept_default); |
| 485 | 868 if (! NILP (value) && XTYPE (value) != Lisp_Int) |
| 465 | 869 return value; |
| 870 | |
| 871 return Qnil; | |
| 250 | 872 } |
| 873 | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
874 DEFUN ("local-key-binding", Flocal_key_binding, Slocal_key_binding, 1, 2, 0, |
| 250 | 875 "Return the binding for command KEYS in current local keymap only.\n\ |
| 876 KEYS is a string, a sequence of keystrokes.\n\ | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
877 The binding is probably a symbol with a function definition.\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
878 \n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
879 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
880 bindings; see the description of `lookup-key' for more details about this.") |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
881 (keys, accept_default) |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
882 Lisp_Object keys, accept_default; |
| 250 | 883 { |
| 884 register Lisp_Object map; | |
| 885 map = current_buffer->keymap; | |
| 485 | 886 if (NILP (map)) |
| 250 | 887 return Qnil; |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
888 return Flookup_key (map, keys, accept_default); |
| 250 | 889 } |
| 890 | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
891 DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0, |
| 250 | 892 "Return the binding for command KEYS in current global keymap only.\n\ |
| 893 KEYS is a string, a sequence of keystrokes.\n\ | |
| 517 | 894 The binding is probably a symbol with a function definition.\n\ |
| 895 This function's return values are the same as those of lookup-key\n\ | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
896 (which see).\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
897 \n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
898 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
899 bindings; see the description of `lookup-key' for more details about this.") |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
900 (keys, accept_default) |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
901 Lisp_Object keys, accept_default; |
| 250 | 902 { |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
903 return Flookup_key (current_global_map, keys, accept_default); |
| 250 | 904 } |
| 905 | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
906 DEFUN ("minor-mode-key-binding", Fminor_mode_key_binding, Sminor_mode_key_binding, 1, 2, 0, |
| 465 | 907 "Find the visible minor mode bindings of KEY.\n\ |
| 908 Return an alist of pairs (MODENAME . BINDING), where MODENAME is the\n\ | |
| 909 the symbol which names the minor mode binding KEY, and BINDING is\n\ | |
| 910 KEY's definition in that mode. In particular, if KEY has no\n\ | |
| 911 minor-mode bindings, return nil. If the first binding is a\n\ | |
| 912 non-prefix, all subsequent bindings will be omitted, since they would\n\ | |
| 913 be ignored. Similarly, the list doesn't include non-prefix bindings\n\ | |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
914 that come after prefix bindings.\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
915 \n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
916 If optional argument ACCEPT-DEFAULT is non-nil, recognize default\n\ |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
917 bindings; see the description of `lookup-key' for more details about this.") |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
918 (key, accept_default) |
|
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
919 Lisp_Object key, accept_default; |
| 465 | 920 { |
| 921 Lisp_Object *modes, *maps; | |
| 922 int nmaps; | |
| 923 Lisp_Object binding; | |
| 924 int i, j; | |
| 925 | |
| 926 nmaps = current_minor_maps (&modes, &maps); | |
| 927 | |
| 928 for (i = j = 0; i < nmaps; i++) | |
| 485 | 929 if (! NILP (maps[i]) |
|
1871
00bee181f7ed
* keymap.c (Flookup_key, Fkey_binding, Flocal_key_binding,
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
930 && ! NILP (binding = Flookup_key (maps[i], key, accept_default)) |
| 465 | 931 && XTYPE (binding) != Lisp_Int) |
| 932 { | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
933 if (! NILP (get_keymap (binding))) |
| 465 | 934 maps[j++] = Fcons (modes[i], binding); |
| 935 else if (j == 0) | |
| 936 return Fcons (Fcons (modes[i], binding), Qnil); | |
| 937 } | |
| 938 | |
| 939 return Flist (j, maps); | |
| 940 } | |
| 941 | |
| 250 | 942 DEFUN ("global-set-key", Fglobal_set_key, Sglobal_set_key, 2, 2, |
| 943 "kSet key globally: \nCSet key %s to command: ", | |
| 944 "Give KEY a global binding as COMMAND.\n\ | |
| 945 COMMAND is a symbol naming an interactively-callable function.\n\ | |
| 3542 | 946 KEY is a key sequence (a string or vector of characters or event types).\n\ |
| 5100 | 947 Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\ |
| 948 can be included if you use a vector.\n\ | |
| 250 | 949 Note that if KEY has a local binding in the current buffer\n\ |
| 950 that local binding will continue to shadow any global binding.") | |
| 951 (keys, function) | |
| 952 Lisp_Object keys, function; | |
| 953 { | |
| 954 if (XTYPE (keys) != Lisp_Vector | |
| 955 && XTYPE (keys) != Lisp_String) | |
| 956 keys = wrong_type_argument (Qarrayp, keys); | |
| 957 | |
| 958 Fdefine_key (current_global_map, keys, function); | |
| 959 return Qnil; | |
| 960 } | |
| 961 | |
| 962 DEFUN ("local-set-key", Flocal_set_key, Slocal_set_key, 2, 2, | |
| 963 "kSet key locally: \nCSet key %s locally to command: ", | |
| 964 "Give KEY a local binding as COMMAND.\n\ | |
| 965 COMMAND is a symbol naming an interactively-callable function.\n\ | |
| 3542 | 966 KEY is a key sequence (a string or vector of characters or event types).\n\ |
| 5100 | 967 Non-ASCII characters with codes above 127 (such as ISO Latin-1)\n\ |
| 968 can be included if you use a vector.\n\ | |
| 250 | 969 The binding goes in the current buffer's local map,\n\ |
|
5551
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
970 which in most cases is shared with all other buffers in the same major mode.") |
| 250 | 971 (keys, function) |
| 972 Lisp_Object keys, function; | |
| 973 { | |
| 974 register Lisp_Object map; | |
| 975 map = current_buffer->keymap; | |
| 485 | 976 if (NILP (map)) |
| 250 | 977 { |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
978 map = Fmake_sparse_keymap (Qnil); |
| 250 | 979 current_buffer->keymap = map; |
| 980 } | |
| 981 | |
| 982 if (XTYPE (keys) != Lisp_Vector | |
| 983 && XTYPE (keys) != Lisp_String) | |
| 984 keys = wrong_type_argument (Qarrayp, keys); | |
| 985 | |
| 986 Fdefine_key (map, keys, function); | |
| 987 return Qnil; | |
| 988 } | |
| 989 | |
| 990 DEFUN ("global-unset-key", Fglobal_unset_key, Sglobal_unset_key, | |
| 991 1, 1, "kUnset key globally: ", | |
| 992 "Remove global binding of KEY.\n\ | |
| 993 KEY is a string representing a sequence of keystrokes.") | |
| 994 (keys) | |
| 995 Lisp_Object keys; | |
| 996 { | |
| 997 return Fglobal_set_key (keys, Qnil); | |
| 998 } | |
| 999 | |
| 1000 DEFUN ("local-unset-key", Flocal_unset_key, Slocal_unset_key, 1, 1, | |
| 1001 "kUnset key locally: ", | |
| 1002 "Remove local binding of KEY.\n\ | |
| 1003 KEY is a string representing a sequence of keystrokes.") | |
| 1004 (keys) | |
| 1005 Lisp_Object keys; | |
| 1006 { | |
| 485 | 1007 if (!NILP (current_buffer->keymap)) |
| 250 | 1008 Flocal_set_key (keys, Qnil); |
| 1009 return Qnil; | |
| 1010 } | |
| 1011 | |
| 1012 DEFUN ("define-prefix-command", Fdefine_prefix_command, Sdefine_prefix_command, 1, 2, 0, | |
|
2652
90485f37bfc3
* keymap.c (Fdefine_prefix_command): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
1013 "Define COMMAND as a prefix command. COMMAND should be a symbol.\n\ |
| 250 | 1014 A new sparse keymap is stored as COMMAND's function definition and its value.\n\ |
| 362 | 1015 If a second optional argument MAPVAR is given, the map is stored as\n\ |
| 1016 its value instead of as COMMAND's value; but COMMAND is still defined\n\ | |
| 1017 as a function.") | |
| 250 | 1018 (name, mapvar) |
| 1019 Lisp_Object name, mapvar; | |
| 1020 { | |
| 1021 Lisp_Object map; | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
1022 map = Fmake_sparse_keymap (Qnil); |
| 250 | 1023 Ffset (name, map); |
| 485 | 1024 if (!NILP (mapvar)) |
| 250 | 1025 Fset (mapvar, map); |
| 1026 else | |
| 1027 Fset (name, map); | |
| 1028 return name; | |
| 1029 } | |
| 1030 | |
| 1031 DEFUN ("use-global-map", Fuse_global_map, Suse_global_map, 1, 1, 0, | |
| 1032 "Select KEYMAP as the global keymap.") | |
| 1033 (keymap) | |
| 1034 Lisp_Object keymap; | |
| 1035 { | |
| 1036 keymap = get_keymap (keymap); | |
| 1037 current_global_map = keymap; | |
| 1038 return Qnil; | |
| 1039 } | |
| 1040 | |
| 1041 DEFUN ("use-local-map", Fuse_local_map, Suse_local_map, 1, 1, 0, | |
| 1042 "Select KEYMAP as the local keymap.\n\ | |
| 1043 If KEYMAP is nil, that means no local keymap.") | |
| 1044 (keymap) | |
| 1045 Lisp_Object keymap; | |
| 1046 { | |
| 485 | 1047 if (!NILP (keymap)) |
| 250 | 1048 keymap = get_keymap (keymap); |
| 1049 | |
| 1050 current_buffer->keymap = keymap; | |
| 1051 | |
| 1052 return Qnil; | |
| 1053 } | |
| 1054 | |
| 1055 DEFUN ("current-local-map", Fcurrent_local_map, Scurrent_local_map, 0, 0, 0, | |
| 1056 "Return current buffer's local keymap, or nil if it has none.") | |
| 1057 () | |
| 1058 { | |
| 1059 return current_buffer->keymap; | |
| 1060 } | |
| 1061 | |
| 1062 DEFUN ("current-global-map", Fcurrent_global_map, Scurrent_global_map, 0, 0, 0, | |
| 1063 "Return the current global keymap.") | |
| 1064 () | |
| 1065 { | |
| 1066 return current_global_map; | |
| 1067 } | |
| 465 | 1068 |
| 1069 DEFUN ("current-minor-mode-maps", Fcurrent_minor_mode_maps, Scurrent_minor_mode_maps, 0, 0, 0, | |
| 1070 "Return a list of keymaps for the minor modes of the current buffer.") | |
| 1071 () | |
| 1072 { | |
| 1073 Lisp_Object *maps; | |
| 1074 int nmaps = current_minor_maps (0, &maps); | |
| 1075 | |
| 1076 return Flist (nmaps, maps); | |
| 1077 } | |
| 250 | 1078 |
| 465 | 1079 /* Help functions for describing and documenting keymaps. */ |
| 1080 | |
| 250 | 1081 DEFUN ("accessible-keymaps", Faccessible_keymaps, Saccessible_keymaps, |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1082 1, 2, 0, |
| 250 | 1083 "Find all keymaps accessible via prefix characters from KEYMAP.\n\ |
| 1084 Returns a list of elements of the form (KEYS . MAP), where the sequence\n\ | |
| 1085 KEYS starting from KEYMAP gets you to MAP. These elements are ordered\n\ | |
|
3962
38041a5069a8
(Faccessible_keymaps): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3952
diff
changeset
|
1086 so that the KEYS increase in length. The first element is (\"\" . KEYMAP).\n\ |
|
38041a5069a8
(Faccessible_keymaps): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3952
diff
changeset
|
1087 An optional argument PREFIX, if non-nil, should be a key sequence;\n\ |
|
38041a5069a8
(Faccessible_keymaps): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3952
diff
changeset
|
1088 then the value includes only maps for prefixes that start with PREFIX.") |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1089 (startmap, prefix) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1090 Lisp_Object startmap, prefix; |
| 250 | 1091 { |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1092 Lisp_Object maps, good_maps, tail; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1093 int prefixlen = 0; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1094 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1095 if (!NILP (prefix)) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1096 prefixlen = XINT (Flength (prefix)); |
| 250 | 1097 |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1098 maps = Fcons (Fcons (Fmake_vector (make_number (0), Qnil), |
|
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1099 get_keymap (startmap)), |
|
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1100 Qnil); |
| 250 | 1101 |
| 1102 /* For each map in the list maps, | |
| 1103 look at any other maps it points to, | |
| 1104 and stick them at the end if they are not already in the list. | |
| 1105 | |
| 1106 This is a breadth-first traversal, where tail is the queue of | |
| 1107 nodes, and maps accumulates a list of all nodes visited. */ | |
| 1108 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1109 for (tail = maps; CONSP (tail); tail = XCONS (tail)->cdr) |
| 250 | 1110 { |
| 1111 register Lisp_Object thisseq = Fcar (Fcar (tail)); | |
| 1112 register Lisp_Object thismap = Fcdr (Fcar (tail)); | |
| 1113 Lisp_Object last = make_number (XINT (Flength (thisseq)) - 1); | |
| 1114 | |
| 1115 /* Does the current sequence end in the meta-prefix-char? */ | |
| 1116 int is_metized = (XINT (last) >= 0 | |
| 1117 && EQ (Faref (thisseq, last), meta_prefix_char)); | |
| 1118 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1119 for (; CONSP (thismap); thismap = XCONS (thismap)->cdr) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1120 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1121 Lisp_Object elt = XCONS (thismap)->car; |
| 250 | 1122 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1123 QUIT; |
| 250 | 1124 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1125 if (XTYPE (elt) == Lisp_Vector) |
| 250 | 1126 { |
| 1127 register int i; | |
| 1128 | |
| 1129 /* Vector keymap. Scan all the elements. */ | |
|
2752
93eda5bbc4df
(Faccessible_keymaps): Use whatever size the vector has.
Richard M. Stallman <rms@gnu.org>
parents:
2727
diff
changeset
|
1130 for (i = 0; i < XVECTOR (elt)->size; i++) |
| 250 | 1131 { |
| 1132 register Lisp_Object tem; | |
| 1133 register Lisp_Object cmd; | |
| 1134 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1135 cmd = get_keyelt (XVECTOR (elt)->contents[i]); |
| 485 | 1136 if (NILP (cmd)) continue; |
| 250 | 1137 tem = Fkeymapp (cmd); |
| 485 | 1138 if (!NILP (tem)) |
| 250 | 1139 { |
| 1140 cmd = get_keymap (cmd); | |
| 1141 /* Ignore keymaps that are already added to maps. */ | |
| 1142 tem = Frassq (cmd, maps); | |
| 485 | 1143 if (NILP (tem)) |
| 250 | 1144 { |
| 1145 /* If the last key in thisseq is meta-prefix-char, | |
| 1146 turn it into a meta-ized keystroke. We know | |
| 1147 that the event we're about to append is an | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1148 ascii keystroke since we're processing a |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1149 keymap table. */ |
| 250 | 1150 if (is_metized) |
| 1151 { | |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1152 int meta_bit = meta_modifier; |
| 250 | 1153 tem = Fcopy_sequence (thisseq); |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1154 |
|
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1155 Faset (tem, last, make_number (i | meta_bit)); |
| 250 | 1156 |
| 1157 /* This new sequence is the same length as | |
| 1158 thisseq, so stick it in the list right | |
| 1159 after this one. */ | |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1160 XCONS (tail)->cdr |
|
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1161 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr); |
| 250 | 1162 } |
| 1163 else | |
| 1164 { | |
| 1165 tem = append_key (thisseq, make_number (i)); | |
| 1166 nconc2 (tail, Fcons (Fcons (tem, cmd), Qnil)); | |
| 1167 } | |
| 1168 } | |
| 1169 } | |
| 1170 } | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1171 } |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1172 else if (CONSP (elt)) |
| 250 | 1173 { |
| 1174 register Lisp_Object cmd = get_keyelt (XCONS (elt)->cdr); | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1175 register Lisp_Object tem, filter; |
| 250 | 1176 |
| 1177 /* Ignore definitions that aren't keymaps themselves. */ | |
| 1178 tem = Fkeymapp (cmd); | |
| 485 | 1179 if (!NILP (tem)) |
| 250 | 1180 { |
| 1181 /* Ignore keymaps that have been seen already. */ | |
| 1182 cmd = get_keymap (cmd); | |
| 1183 tem = Frassq (cmd, maps); | |
| 485 | 1184 if (NILP (tem)) |
| 250 | 1185 { |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1186 /* Let elt be the event defined by this map entry. */ |
| 250 | 1187 elt = XCONS (elt)->car; |
| 1188 | |
| 1189 /* If the last key in thisseq is meta-prefix-char, and | |
| 1190 this entry is a binding for an ascii keystroke, | |
| 1191 turn it into a meta-ized keystroke. */ | |
| 1192 if (is_metized && XTYPE (elt) == Lisp_Int) | |
| 1193 { | |
| 1194 tem = Fcopy_sequence (thisseq); | |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1195 Faset (tem, last, |
|
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1196 make_number (XINT (elt) | meta_modifier)); |
| 250 | 1197 |
| 1198 /* This new sequence is the same length as | |
| 1199 thisseq, so stick it in the list right | |
| 1200 after this one. */ | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1201 XCONS (tail)->cdr |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1202 = Fcons (Fcons (tem, cmd), XCONS (tail)->cdr); |
| 250 | 1203 } |
| 1204 else | |
| 1205 nconc2 (tail, | |
| 1206 Fcons (Fcons (append_key (thisseq, elt), cmd), | |
| 1207 Qnil)); | |
| 1208 } | |
| 1209 } | |
| 1210 } | |
| 1211 } | |
| 1212 } | |
| 1213 | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1214 if (NILP (prefix)) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1215 return maps; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1216 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1217 /* Now find just the maps whose access prefixes start with PREFIX. */ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1218 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1219 good_maps = Qnil; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1220 for (; CONSP (maps); maps = XCONS (maps)->cdr) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1221 { |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1222 Lisp_Object elt, thisseq; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1223 elt = XCONS (maps)->car; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1224 thisseq = XCONS (elt)->car; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1225 /* The access prefix must be at least as long as PREFIX, |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1226 and the first elements must match those of PREFIX. */ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1227 if (XINT (Flength (thisseq)) >= prefixlen) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1228 { |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1229 int i; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1230 for (i = 0; i < prefixlen; i++) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1231 { |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1232 Lisp_Object i1; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1233 XFASTINT (i1) = i; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1234 if (!EQ (Faref (thisseq, i1), Faref (prefix, i1))) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1235 break; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1236 } |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1237 if (i == prefixlen) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1238 good_maps = Fcons (elt, good_maps); |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1239 } |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1240 } |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1241 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1242 return Fnreverse (good_maps); |
| 250 | 1243 } |
| 1244 | |
| 1245 Lisp_Object Qsingle_key_description, Qkey_description; | |
| 1246 | |
| 1247 DEFUN ("key-description", Fkey_description, Skey_description, 1, 1, 0, | |
| 1248 "Return a pretty description of key-sequence KEYS.\n\ | |
| 1249 Control characters turn into \"C-foo\" sequences, meta into \"M-foo\"\n\ | |
| 1250 spaces are put between sequence elements, etc.") | |
| 1251 (keys) | |
| 1252 Lisp_Object keys; | |
| 1253 { | |
| 2059 | 1254 if (XTYPE (keys) == Lisp_String) |
| 1255 { | |
| 1256 Lisp_Object vector; | |
| 1257 int i; | |
| 1258 vector = Fmake_vector (Flength (keys), Qnil); | |
| 1259 for (i = 0; i < XSTRING (keys)->size; i++) | |
| 1260 { | |
| 1261 if (XSTRING (keys)->data[i] & 0x80) | |
| 1262 XFASTINT (XVECTOR (vector)->contents[i]) | |
| 1263 = meta_modifier | (XSTRING (keys)->data[i] & ~0x80); | |
| 1264 else | |
| 1265 XFASTINT (XVECTOR (vector)->contents[i]) | |
| 1266 = XSTRING (keys)->data[i]; | |
| 1267 } | |
| 1268 keys = vector; | |
| 1269 } | |
| 250 | 1270 return Fmapconcat (Qsingle_key_description, keys, build_string (" ")); |
| 1271 } | |
| 1272 | |
| 1273 char * | |
| 1274 push_key_description (c, p) | |
| 1275 register unsigned int c; | |
| 1276 register char *p; | |
| 1277 { | |
|
2343
ddb30eaf2f56
(push_key_description): Ignore bits above meta_modifier.
Richard M. Stallman <rms@gnu.org>
parents:
2093
diff
changeset
|
1278 /* Clear all the meaningless bits above the meta bit. */ |
|
ddb30eaf2f56
(push_key_description): Ignore bits above meta_modifier.
Richard M. Stallman <rms@gnu.org>
parents:
2093
diff
changeset
|
1279 c &= meta_modifier | ~ - meta_modifier; |
|
ddb30eaf2f56
(push_key_description): Ignore bits above meta_modifier.
Richard M. Stallman <rms@gnu.org>
parents:
2093
diff
changeset
|
1280 |
| 2059 | 1281 if (c & alt_modifier) |
| 1282 { | |
| 1283 *p++ = 'A'; | |
| 1284 *p++ = '-'; | |
| 1285 c -= alt_modifier; | |
| 1286 } | |
| 1287 if (c & ctrl_modifier) | |
| 1288 { | |
| 1289 *p++ = 'C'; | |
| 1290 *p++ = '-'; | |
| 1291 c -= ctrl_modifier; | |
| 1292 } | |
| 1293 if (c & hyper_modifier) | |
| 1294 { | |
| 1295 *p++ = 'H'; | |
| 1296 *p++ = '-'; | |
| 1297 c -= hyper_modifier; | |
| 1298 } | |
| 1299 if (c & meta_modifier) | |
| 250 | 1300 { |
| 1301 *p++ = 'M'; | |
| 1302 *p++ = '-'; | |
| 2059 | 1303 c -= meta_modifier; |
| 1304 } | |
| 1305 if (c & shift_modifier) | |
| 1306 { | |
| 1307 *p++ = 'S'; | |
| 1308 *p++ = '-'; | |
| 1309 c -= shift_modifier; | |
| 1310 } | |
| 1311 if (c & super_modifier) | |
| 1312 { | |
| 1313 *p++ = 's'; | |
| 1314 *p++ = '-'; | |
| 1315 c -= super_modifier; | |
| 250 | 1316 } |
| 1317 if (c < 040) | |
| 1318 { | |
| 1319 if (c == 033) | |
| 1320 { | |
| 1321 *p++ = 'E'; | |
| 1322 *p++ = 'S'; | |
| 1323 *p++ = 'C'; | |
| 1324 } | |
| 2059 | 1325 else if (c == '\t') |
| 250 | 1326 { |
| 1327 *p++ = 'T'; | |
| 1328 *p++ = 'A'; | |
| 1329 *p++ = 'B'; | |
| 1330 } | |
| 1331 else if (c == Ctl('J')) | |
| 1332 { | |
| 1333 *p++ = 'L'; | |
| 1334 *p++ = 'F'; | |
| 1335 *p++ = 'D'; | |
| 1336 } | |
| 1337 else if (c == Ctl('M')) | |
| 1338 { | |
| 1339 *p++ = 'R'; | |
| 1340 *p++ = 'E'; | |
| 1341 *p++ = 'T'; | |
| 1342 } | |
| 1343 else | |
| 1344 { | |
| 1345 *p++ = 'C'; | |
| 1346 *p++ = '-'; | |
| 1347 if (c > 0 && c <= Ctl ('Z')) | |
| 1348 *p++ = c + 0140; | |
| 1349 else | |
| 1350 *p++ = c + 0100; | |
| 1351 } | |
| 1352 } | |
| 1353 else if (c == 0177) | |
| 1354 { | |
| 1355 *p++ = 'D'; | |
| 1356 *p++ = 'E'; | |
| 1357 *p++ = 'L'; | |
| 1358 } | |
| 1359 else if (c == ' ') | |
| 1360 { | |
| 1361 *p++ = 'S'; | |
| 1362 *p++ = 'P'; | |
| 1363 *p++ = 'C'; | |
| 1364 } | |
| 2059 | 1365 else if (c < 256) |
| 1366 *p++ = c; | |
| 250 | 1367 else |
| 2059 | 1368 { |
| 1369 *p++ = '\\'; | |
| 1370 *p++ = (7 & (c >> 15)) + '0'; | |
| 1371 *p++ = (7 & (c >> 12)) + '0'; | |
| 1372 *p++ = (7 & (c >> 9)) + '0'; | |
| 1373 *p++ = (7 & (c >> 6)) + '0'; | |
| 1374 *p++ = (7 & (c >> 3)) + '0'; | |
| 1375 *p++ = (7 & (c >> 0)) + '0'; | |
| 1376 } | |
| 250 | 1377 |
| 1378 return p; | |
| 1379 } | |
| 1380 | |
| 1381 DEFUN ("single-key-description", Fsingle_key_description, Ssingle_key_description, 1, 1, 0, | |
| 1382 "Return a pretty description of command character KEY.\n\ | |
| 1383 Control characters turn into C-whatever, etc.") | |
| 1384 (key) | |
| 1385 Lisp_Object key; | |
| 1386 { | |
| 2059 | 1387 char tem[20]; |
| 250 | 1388 |
|
1315
884c3d7e7172
* keymap.c (access_keymap, store_in_keymap,
Jim Blandy <jimb@redhat.com>
parents:
1264
diff
changeset
|
1389 key = EVENT_HEAD (key); |
| 517 | 1390 |
| 250 | 1391 switch (XTYPE (key)) |
| 1392 { | |
| 1393 case Lisp_Int: /* Normal character */ | |
| 2059 | 1394 *push_key_description (XUINT (key), tem) = 0; |
| 250 | 1395 return build_string (tem); |
| 1396 | |
| 1397 case Lisp_Symbol: /* Function key or event-symbol */ | |
| 1398 return Fsymbol_name (key); | |
| 1399 | |
| 1400 default: | |
| 1401 error ("KEY must be an integer, cons, or symbol."); | |
| 1402 } | |
| 1403 } | |
| 1404 | |
| 1405 char * | |
| 1406 push_text_char_description (c, p) | |
| 1407 register unsigned int c; | |
| 1408 register char *p; | |
| 1409 { | |
| 1410 if (c >= 0200) | |
| 1411 { | |
| 1412 *p++ = 'M'; | |
| 1413 *p++ = '-'; | |
| 1414 c -= 0200; | |
| 1415 } | |
| 1416 if (c < 040) | |
| 1417 { | |
| 1418 *p++ = '^'; | |
| 1419 *p++ = c + 64; /* 'A' - 1 */ | |
| 1420 } | |
| 1421 else if (c == 0177) | |
| 1422 { | |
| 1423 *p++ = '^'; | |
| 1424 *p++ = '?'; | |
| 1425 } | |
| 1426 else | |
| 1427 *p++ = c; | |
| 1428 return p; | |
| 1429 } | |
| 1430 | |
| 1431 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0, | |
| 1432 "Return a pretty description of file-character CHAR.\n\ | |
| 1433 Control characters turn into \"^char\", etc.") | |
| 1434 (chr) | |
| 1435 Lisp_Object chr; | |
| 1436 { | |
| 1437 char tem[6]; | |
| 1438 | |
| 1439 CHECK_NUMBER (chr, 0); | |
| 1440 | |
| 1441 *push_text_char_description (XINT (chr) & 0377, tem) = 0; | |
| 1442 | |
| 1443 return build_string (tem); | |
| 1444 } | |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1445 |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1446 /* Return non-zero if SEQ contains only ASCII characters, perhaps with |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1447 a meta bit. */ |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1448 static int |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1449 ascii_sequence_p (seq) |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1450 Lisp_Object seq; |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1451 { |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1452 Lisp_Object i; |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1453 int len = XINT (Flength (seq)); |
|
6008
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
1454 |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1455 for (XFASTINT (i) = 0; XFASTINT (i) < len; XFASTINT (i)++) |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1456 { |
|
6008
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
1457 Lisp_Object elt; |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
1458 |
|
d3ccce72be00
(get_keyelt): Discard keyboard equivalents
Richard M. Stallman <rms@gnu.org>
parents:
5785
diff
changeset
|
1459 elt = Faref (seq, i); |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1460 |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1461 if (XTYPE (elt) != Lisp_Int |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1462 || (XUINT (elt) & ~CHAR_META) >= 0x80) |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1463 return 0; |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1464 } |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1465 |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1466 return 1; |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1467 } |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1468 |
| 250 | 1469 |
| 465 | 1470 /* where-is - finding a command in a set of keymaps. */ |
| 1471 | |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1472 DEFUN ("where-is-internal", Fwhere_is_internal, Swhere_is_internal, 1, 4, 0, |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1473 "Return list of keys that invoke DEFINITION.\n\ |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1474 If KEYMAP is non-nil, search only KEYMAP and the global keymap.\n\ |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1475 If KEYMAP is nil, search all the currently active keymaps.\n\ |
| 250 | 1476 \n\ |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1477 If optional 3rd arg FIRSTONLY is non-nil, return the first key sequence found,\n\ |
|
5246
bec1126c6c00
(Fwhere_is_internal): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5100
diff
changeset
|
1478 rather than a list of all possible key sequences.\n\ |
|
bec1126c6c00
(Fwhere_is_internal): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5100
diff
changeset
|
1479 If FIRSTONLY is t, avoid key sequences which use non-ASCII\n\ |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1480 keys and therefore may not be usable on ASCII terminals. If FIRSTONLY\n\ |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1481 is the symbol `non-ascii', return the first binding found, no matter\n\ |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1482 what its components.\n\ |
| 250 | 1483 \n\ |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1484 If optional 4th arg NOINDIRECT is non-nil, don't follow indirections\n\ |
| 250 | 1485 to other keymaps or slots. This makes it possible to search for an\n\ |
| 1486 indirect definition itself.") | |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1487 (definition, keymap, firstonly, noindirect) |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1488 Lisp_Object definition, keymap; |
| 250 | 1489 Lisp_Object firstonly, noindirect; |
| 1490 { | |
| 1491 register Lisp_Object maps; | |
| 1492 Lisp_Object found; | |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1493 int keymap_specified = !NILP (keymap); |
| 250 | 1494 |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1495 if (! keymap_specified) |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1496 { |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1497 #ifdef USE_TEXT_PROPERTIES |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1498 keymap = get_local_map (PT, current_buffer); |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1499 #else |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1500 keymap = current_buffer->keymap; |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1501 #endif |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1502 } |
| 250 | 1503 |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1504 if (!NILP (keymap)) |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1505 maps = nconc2 (Faccessible_keymaps (get_keymap (keymap), Qnil), |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1506 Faccessible_keymaps (get_keymap (current_global_map), |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1507 Qnil)); |
| 250 | 1508 else |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1509 maps = Faccessible_keymaps (get_keymap (current_global_map), Qnil); |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1510 |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1511 /* Put the minor mode keymaps on the front. */ |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1512 if (! keymap_specified) |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1513 { |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1514 Lisp_Object minors; |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1515 minors = Fnreverse (Fcurrent_minor_mode_maps ()); |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1516 while (!NILP (minors)) |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1517 { |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1518 maps = nconc2 (Faccessible_keymaps (get_keymap (XCONS (minors)->car), |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1519 Qnil), |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1520 maps); |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1521 minors = XCONS (minors)->cdr; |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1522 } |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1523 } |
| 250 | 1524 |
| 1525 found = Qnil; | |
| 1526 | |
| 485 | 1527 for (; !NILP (maps); maps = Fcdr (maps)) |
| 250 | 1528 { |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1529 /* Key sequence to reach map */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1530 register Lisp_Object this = Fcar (Fcar (maps)); |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1531 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1532 /* The map that it reaches */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1533 register Lisp_Object map = Fcdr (Fcar (maps)); |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1534 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1535 /* If Fcar (map) is a VECTOR, the current element within that vector. */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1536 int i = 0; |
| 250 | 1537 |
| 1538 /* In order to fold [META-PREFIX-CHAR CHAR] sequences into | |
| 1539 [M-CHAR] sequences, check if last character of the sequence | |
| 1540 is the meta-prefix char. */ | |
| 1541 Lisp_Object last = make_number (XINT (Flength (this)) - 1); | |
| 1542 int last_is_meta = (XINT (last) >= 0 | |
| 1543 && EQ (Faref (this, last), meta_prefix_char)); | |
| 1544 | |
|
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1545 QUIT; |
|
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1546 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1547 while (CONSP (map)) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1548 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1549 /* Because the code we want to run on each binding is rather |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1550 large, we don't want to have two separate loop bodies for |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1551 sparse keymap bindings and tables; we want to iterate one |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1552 loop body over both keymap and vector bindings. |
| 250 | 1553 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1554 For this reason, if Fcar (map) is a vector, we don't |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1555 advance map to the next element until i indicates that we |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1556 have finished off the vector. */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1557 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1558 Lisp_Object elt = XCONS (map)->car; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1559 Lisp_Object key, binding, sequence; |
| 250 | 1560 |
|
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1561 QUIT; |
|
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1562 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1563 /* Set key and binding to the current key and binding, and |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1564 advance map and i to the next binding. */ |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1565 if (XTYPE (elt) == Lisp_Vector) |
| 250 | 1566 { |
| 1567 /* In a vector, look at each element. */ | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1568 binding = XVECTOR (elt)->contents[i]; |
| 250 | 1569 XFASTINT (key) = i; |
| 1570 i++; | |
| 1571 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1572 /* If we've just finished scanning a vector, advance map |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1573 to the next element, and reset i in anticipation of the |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1574 next vector we may find. */ |
|
2752
93eda5bbc4df
(Faccessible_keymaps): Use whatever size the vector has.
Richard M. Stallman <rms@gnu.org>
parents:
2727
diff
changeset
|
1575 if (i >= XVECTOR (elt)->size) |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1576 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1577 map = XCONS (map)->cdr; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1578 i = 0; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1579 } |
| 250 | 1580 } |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1581 else if (CONSP (elt)) |
| 250 | 1582 { |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1583 key = Fcar (Fcar (map)); |
| 250 | 1584 binding = Fcdr (Fcar (map)); |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1585 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1586 map = XCONS (map)->cdr; |
| 250 | 1587 } |
| 1588 else | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1589 /* We want to ignore keymap elements that are neither |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
1590 vectors nor conses. */ |
|
1236
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1591 { |
|
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1592 map = XCONS (map)->cdr; |
|
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1593 continue; |
|
5e8c234e5f03
* keymap.c (access_keymap): Remove code to notice bindings for
Jim Blandy <jimb@redhat.com>
parents:
1209
diff
changeset
|
1594 } |
| 250 | 1595 |
| 1596 /* Search through indirections unless that's not wanted. */ | |
| 485 | 1597 if (NILP (noindirect)) |
| 250 | 1598 binding = get_keyelt (binding); |
| 1599 | |
| 1600 /* End this iteration if this element does not match | |
| 1601 the target. */ | |
| 1602 | |
| 1603 if (XTYPE (definition) == Lisp_Cons) | |
| 1604 { | |
| 1605 Lisp_Object tem; | |
| 1606 tem = Fequal (binding, definition); | |
| 485 | 1607 if (NILP (tem)) |
| 250 | 1608 continue; |
| 1609 } | |
| 1610 else | |
| 1611 if (!EQ (binding, definition)) | |
| 1612 continue; | |
| 1613 | |
| 1614 /* We have found a match. | |
| 1615 Construct the key sequence where we found it. */ | |
| 1616 if (XTYPE (key) == Lisp_Int && last_is_meta) | |
| 1617 { | |
| 1618 sequence = Fcopy_sequence (this); | |
|
2093
ce8bad247b1a
(Fdefine_key): Use proper meta-bit to clear.
Richard M. Stallman <rms@gnu.org>
parents:
2059
diff
changeset
|
1619 Faset (sequence, last, make_number (XINT (key) | meta_modifier)); |
| 250 | 1620 } |
| 1621 else | |
| 1622 sequence = append_key (this, key); | |
| 1623 | |
| 1624 /* Verify that this key binding is not shadowed by another | |
| 1625 binding for the same key, before we say it exists. | |
| 1626 | |
| 1627 Mechanism: look for local definition of this key and if | |
| 1628 it is defined and does not match what we found then | |
| 1629 ignore this key. | |
| 1630 | |
| 1631 Either nil or number as value from Flookup_key | |
| 1632 means undefined. */ | |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1633 if (keymap_specified) |
| 250 | 1634 { |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1635 binding = Flookup_key (keymap, sequence, Qnil); |
| 485 | 1636 if (!NILP (binding) && XTYPE (binding) != Lisp_Int) |
| 250 | 1637 { |
| 1638 if (XTYPE (definition) == Lisp_Cons) | |
| 1639 { | |
| 1640 Lisp_Object tem; | |
| 1641 tem = Fequal (binding, definition); | |
| 485 | 1642 if (NILP (tem)) |
| 250 | 1643 continue; |
| 1644 } | |
| 1645 else | |
| 1646 if (!EQ (binding, definition)) | |
| 1647 continue; | |
| 1648 } | |
| 1649 } | |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1650 else |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1651 { |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1652 binding = Fkey_binding (sequence, Qnil); |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1653 if (!EQ (binding, definition)) |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1654 continue; |
|
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1655 } |
| 250 | 1656 |
| 1657 /* It is a true unshadowed match. Record it. */ | |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1658 found = Fcons (sequence, found); |
| 250 | 1659 |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1660 /* If firstonly is Qnon_ascii, then we can return the first |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1661 binding we find. If firstonly is not Qnon_ascii but not |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1662 nil, then we should return the first ascii-only binding |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1663 we find. */ |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1664 if (EQ (firstonly, Qnon_ascii)) |
| 250 | 1665 return sequence; |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1666 else if (! NILP (firstonly) && ascii_sequence_p (sequence)) |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1667 return sequence; |
| 250 | 1668 } |
| 1669 } | |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1670 |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1671 found = Fnreverse (found); |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1672 |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1673 /* firstonly may have been t, but we may have gone all the way through |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1674 the keymaps without finding an all-ASCII key sequence. So just |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1675 return the best we could find. */ |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1676 if (! NILP (firstonly)) |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1677 return Fcar (found); |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1678 |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
1679 return found; |
| 250 | 1680 } |
| 1681 | |
| 1682 /* Return a string listing the keys and buttons that run DEFINITION. */ | |
| 1683 | |
| 1684 static Lisp_Object | |
| 1685 where_is_string (definition) | |
| 1686 Lisp_Object definition; | |
| 1687 { | |
| 1688 register Lisp_Object keys, keys1; | |
| 1689 | |
|
5785
e761c2b18894
(Fwhere_is_internal): Take just one keymap arg.
Richard M. Stallman <rms@gnu.org>
parents:
5704
diff
changeset
|
1690 keys = Fwhere_is_internal (definition, Voverriding_local_map, Qnil, Qnil); |
| 250 | 1691 keys1 = Fmapconcat (Qkey_description, keys, build_string (", ")); |
| 1692 | |
| 1693 return keys1; | |
| 1694 } | |
| 1695 | |
| 1696 DEFUN ("where-is", Fwhere_is, Swhere_is, 1, 1, "CWhere is command: ", | |
| 1697 "Print message listing key sequences that invoke specified command.\n\ | |
| 1698 Argument is a command definition, usually a symbol with a function definition.") | |
| 1699 (definition) | |
| 1700 Lisp_Object definition; | |
| 1701 { | |
| 1702 register Lisp_Object string; | |
| 1703 | |
| 1704 CHECK_SYMBOL (definition, 0); | |
| 1705 string = where_is_string (definition); | |
| 1706 | |
| 1707 if (XSTRING (string)->size) | |
| 1708 message ("%s is on %s", XSYMBOL (definition)->name->data, | |
| 1709 XSTRING (string)->data); | |
| 1710 else | |
| 1711 message ("%s is not on any key", XSYMBOL (definition)->name->data); | |
| 1712 return Qnil; | |
| 1713 } | |
| 1714 | |
| 465 | 1715 /* describe-bindings - summarizing all the bindings in a set of keymaps. */ |
| 1716 | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1717 DEFUN ("describe-bindings", Fdescribe_bindings, Sdescribe_bindings, 0, 1, "", |
| 250 | 1718 "Show a list of all defined keys, and their definitions.\n\ |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1719 The list is put in a buffer, which is displayed.\n\ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1720 An optional argument PREFIX, if non-nil, should be a key sequence;\n\ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1721 then we display only bindings that start with that prefix.") |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1722 (prefix) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1723 Lisp_Object prefix; |
| 250 | 1724 { |
| 1725 register Lisp_Object thisbuf; | |
| 1726 XSET (thisbuf, Lisp_Buffer, current_buffer); | |
| 1727 internal_with_output_to_temp_buffer ("*Help*", | |
| 1728 describe_buffer_bindings, | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1729 Fcons (thisbuf, prefix)); |
| 250 | 1730 return Qnil; |
| 1731 } | |
| 1732 | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1733 /* ARG is (BUFFER . PREFIX). */ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1734 |
| 250 | 1735 static Lisp_Object |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1736 describe_buffer_bindings (arg) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1737 Lisp_Object arg; |
| 250 | 1738 { |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1739 Lisp_Object descbuf, prefix, shadow; |
| 250 | 1740 register Lisp_Object start1, start2; |
| 1741 | |
|
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1742 char *alternate_heading |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1743 = "\ |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1744 Alternate Characters (use anywhere the nominal character is listed):\n\ |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1745 nominal alternate\n\ |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1746 ------- ---------\n"; |
| 250 | 1747 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1748 descbuf = XCONS (arg)->car; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1749 prefix = XCONS (arg)->cdr; |
|
4575
bf0f07186369
(describe_buffer_bindings): Declare shadow just once.
Richard M. Stallman <rms@gnu.org>
parents:
4138
diff
changeset
|
1750 shadow = Qnil; |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1751 |
| 250 | 1752 Fset_buffer (Vstandard_output); |
| 1753 | |
|
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1754 /* Report on alternates for keys. */ |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1755 if (XTYPE (Vkeyboard_translate_table) == Lisp_String) |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1756 { |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1757 int c; |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1758 unsigned char *translate = XSTRING (Vkeyboard_translate_table)->data; |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1759 int translate_len = XSTRING (Vkeyboard_translate_table)->size; |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1760 |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1761 for (c = 0; c < translate_len; c++) |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1762 if (translate[c] != c) |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1763 { |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1764 char buf[20]; |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1765 char *bufend; |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1766 |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1767 if (alternate_heading) |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1768 { |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1769 insert_string (alternate_heading); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1770 alternate_heading = 0; |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1771 } |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1772 |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1773 bufend = push_key_description (translate[c], buf); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1774 insert (buf, bufend - buf); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1775 Findent_to (make_number (16), make_number (1)); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1776 bufend = push_key_description (c, buf); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1777 insert (buf, bufend - buf); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1778 |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1779 insert ("\n", 1); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1780 } |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1781 |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1782 insert ("\n", 1); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1783 } |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1784 |
| 465 | 1785 { |
| 1786 int i, nmaps; | |
| 1787 Lisp_Object *modes, *maps; | |
| 1788 | |
|
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1789 /* Temporarily switch to descbuf, so that we can get that buffer's |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1790 minor modes correctly. */ |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1791 Fset_buffer (descbuf); |
|
5613
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1792 if (!NILP (Voverriding_local_map)) |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1793 nmaps = 0; |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1794 else |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1795 nmaps = current_minor_maps (&modes, &maps); |
|
1120
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1796 Fset_buffer (Vstandard_output); |
|
0a486e1a45bc
* keymap.c (describe_buffer_bindings): Adjust key_heading to match
Jim Blandy <jimb@redhat.com>
parents:
1095
diff
changeset
|
1797 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1798 /* Print the minor mode maps. */ |
| 465 | 1799 for (i = 0; i < nmaps; i++) |
| 1800 { | |
|
4023
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1801 /* Tht title for a minor mode keymap |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1802 is constructed at run time. |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1803 We let describe_map_tree do the actual insertion |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1804 because it takes care of other features when doing so. */ |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1805 char *title = (char *) alloca (40 + XSYMBOL (modes[i])->name->size); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1806 char *p = title; |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1807 |
| 465 | 1808 if (XTYPE (modes[i]) == Lisp_Symbol) |
| 1809 { | |
|
4023
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1810 *p++ = '`'; |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1811 bcopy (XSYMBOL (modes[i])->name->data, p, |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1812 XSYMBOL (modes[i])->name->size); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1813 p += XSYMBOL (modes[i])->name->size; |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1814 *p++ = '\''; |
| 465 | 1815 } |
| 1816 else | |
|
4023
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1817 { |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1818 bcopy ("Strangely Named", p, sizeof ("Strangely Named")); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1819 p += sizeof ("Strangely Named"); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1820 } |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1821 bcopy (" Minor Mode Bindings", p, sizeof (" Minor Mode Bindings")); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1822 p += sizeof (" Minor Mode Bindings"); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1823 *p = 0; |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1824 |
|
5551
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1825 describe_map_tree (maps[i], 0, shadow, prefix, title, 0); |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1826 shadow = Fcons (maps[i], shadow); |
| 465 | 1827 } |
| 1828 } | |
| 1829 | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1830 /* Print the (major mode) local map. */ |
|
5613
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1831 if (!NILP (Voverriding_local_map)) |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1832 start1 = Voverriding_local_map; |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1833 else |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1834 start1 = XBUFFER (descbuf)->keymap; |
|
cad51b2de6cd
(Fkey_binding): Handle Voverriding_local_map.
Richard M. Stallman <rms@gnu.org>
parents:
5551
diff
changeset
|
1835 |
| 485 | 1836 if (!NILP (start1)) |
| 250 | 1837 { |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1838 describe_map_tree (start1, 0, shadow, prefix, |
|
5551
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1839 "Major Mode Bindings", 0); |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1840 shadow = Fcons (start1, shadow); |
| 250 | 1841 } |
| 1842 | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1843 describe_map_tree (current_global_map, 0, shadow, prefix, |
|
5551
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1844 "Global Bindings", 0); |
| 250 | 1845 |
| 1846 Fset_buffer (descbuf); | |
| 1847 return Qnil; | |
| 1848 } | |
| 1849 | |
| 1850 /* Insert a desription of the key bindings in STARTMAP, | |
| 1851 followed by those of all maps reachable through STARTMAP. | |
| 1852 If PARTIAL is nonzero, omit certain "uninteresting" commands | |
| 1853 (such as `undefined'). | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1854 If SHADOW is non-nil, it is a list of maps; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1855 don't mention keys which would be shadowed by any of them. |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1856 PREFIX, if non-nil, says mention only keys that start with PREFIX. |
|
4023
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1857 TITLE, if not 0, is a string to insert at the beginning. |
|
5551
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1858 TITLE should not end with a colon or a newline; we supply that. |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1859 If NOMENU is not 0, then omit menu-bar commands. */ |
| 250 | 1860 |
| 1861 void | |
|
5551
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1862 describe_map_tree (startmap, partial, shadow, prefix, title, nomenu) |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1863 Lisp_Object startmap, shadow, prefix; |
| 250 | 1864 int partial; |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1865 char *title; |
|
5551
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1866 int nomenu; |
| 250 | 1867 { |
| 1868 Lisp_Object maps; | |
| 1869 struct gcpro gcpro1; | |
|
4023
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1870 int something = 0; |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1871 char *key_heading |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1872 = "\ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1873 key binding\n\ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1874 --- -------\n"; |
| 250 | 1875 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1876 maps = Faccessible_keymaps (startmap, prefix); |
| 250 | 1877 GCPRO1 (maps); |
| 1878 | |
|
5551
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1879 if (nomenu) |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1880 { |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1881 Lisp_Object list; |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1882 |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1883 /* Delete from MAPS each element that is for the menu bar. */ |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1884 for (list = maps; !NILP (list); list = XCONS (list)->cdr) |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1885 { |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1886 Lisp_Object elt, prefix, tem; |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1887 |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1888 elt = Fcar (list); |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1889 prefix = Fcar (elt); |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1890 if (XVECTOR (prefix)->size >= 1) |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1891 { |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1892 tem = Faref (prefix, make_number (0)); |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1893 if (EQ (tem, Qmenu_bar)) |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1894 maps = Fdelq (elt, maps); |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1895 } |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1896 } |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1897 } |
|
2b8f405f5103
(describe_map_tree): New arg NOMENU.
Richard M. Stallman <rms@gnu.org>
parents:
5367
diff
changeset
|
1898 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1899 if (!NILP (maps)) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1900 { |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1901 if (title) |
|
4023
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1902 { |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1903 insert_string (title); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1904 if (!NILP (prefix)) |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1905 { |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1906 insert_string (" Starting With "); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1907 insert1 (Fkey_description (prefix)); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1908 } |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1909 insert_string (":\n"); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1910 } |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1911 insert_string (key_heading); |
|
4023
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1912 something = 1; |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1913 } |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1914 |
| 485 | 1915 for (; !NILP (maps); maps = Fcdr (maps)) |
| 250 | 1916 { |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1917 register Lisp_Object elt, prefix, sub_shadows, tail; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1918 |
| 250 | 1919 elt = Fcar (maps); |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1920 prefix = Fcar (elt); |
| 250 | 1921 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1922 sub_shadows = Qnil; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1923 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1924 for (tail = shadow; CONSP (tail); tail = XCONS (tail)->cdr) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1925 { |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1926 Lisp_Object shmap; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1927 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1928 shmap = XCONS (tail)->car; |
| 250 | 1929 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1930 /* If the sequence by which we reach this keymap is zero-length, |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1931 then the shadow map for this keymap is just SHADOW. */ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1932 if ((XTYPE (prefix) == Lisp_String |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1933 && XSTRING (prefix)->size == 0) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1934 || (XTYPE (prefix) == Lisp_Vector |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1935 && XVECTOR (prefix)->size == 0)) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1936 ; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1937 /* If the sequence by which we reach this keymap actually has |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1938 some elements, then the sequence's definition in SHADOW is |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1939 what we should use. */ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1940 else |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1941 { |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1942 shmap = Flookup_key (shadow, Fcar (elt), Qt); |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1943 if (XTYPE (shmap) == Lisp_Int) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1944 shmap = Qnil; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1945 } |
| 250 | 1946 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1947 /* If shmap is not nil and not a keymap, |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1948 it completely shadows this map, so don't |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1949 describe this map at all. */ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1950 if (!NILP (shmap) && NILP (Fkeymapp (shmap))) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1951 goto skip; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1952 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1953 if (!NILP (shmap)) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1954 sub_shadows = Fcons (shmap, sub_shadows); |
| 250 | 1955 } |
| 1956 | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1957 describe_map (Fcdr (elt), Fcar (elt), partial, sub_shadows); |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1958 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
1959 skip: ; |
| 250 | 1960 } |
| 1961 | |
|
4023
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1962 if (something) |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1963 insert_string ("\n"); |
|
5e4f918d5d44
(describe_map_tree): When inserting TITLE, mention PREFIX.
Richard M. Stallman <rms@gnu.org>
parents:
3962
diff
changeset
|
1964 |
| 250 | 1965 UNGCPRO; |
| 1966 } | |
| 1967 | |
| 1968 static void | |
| 1969 describe_command (definition) | |
| 1970 Lisp_Object definition; | |
| 1971 { | |
| 1972 register Lisp_Object tem1; | |
| 1973 | |
| 1974 Findent_to (make_number (16), make_number (1)); | |
| 1975 | |
| 1976 if (XTYPE (definition) == Lisp_Symbol) | |
| 1977 { | |
| 1978 XSET (tem1, Lisp_String, XSYMBOL (definition)->name); | |
| 1979 insert1 (tem1); | |
| 1980 insert_string ("\n"); | |
| 1981 } | |
|
5367
e4f5f2674f34
(describe_command): If binding is a kbd macro, say so.
Richard M. Stallman <rms@gnu.org>
parents:
5246
diff
changeset
|
1982 else if (STRINGP (definition)) |
|
e4f5f2674f34
(describe_command): If binding is a kbd macro, say so.
Richard M. Stallman <rms@gnu.org>
parents:
5246
diff
changeset
|
1983 insert_string ("Keyboard Macro\n"); |
| 250 | 1984 else |
| 1985 { | |
| 1986 tem1 = Fkeymapp (definition); | |
| 485 | 1987 if (!NILP (tem1)) |
| 250 | 1988 insert_string ("Prefix Command\n"); |
| 1989 else | |
| 1990 insert_string ("??\n"); | |
| 1991 } | |
| 1992 } | |
| 1993 | |
| 1994 /* Describe the contents of map MAP, assuming that this map itself is | |
| 1995 reached by the sequence of prefix keys KEYS (a string or vector). | |
| 1996 PARTIAL, SHADOW is as in `describe_map_tree' above. */ | |
| 1997 | |
| 1998 static void | |
| 1999 describe_map (map, keys, partial, shadow) | |
| 2000 Lisp_Object map, keys; | |
| 2001 int partial; | |
| 2002 Lisp_Object shadow; | |
| 2003 { | |
| 2004 register Lisp_Object keysdesc; | |
| 2005 | |
|
1517
72b7bbcaf7d8
* keymap.c (Fdefine_key, Flookup_key, describe_map): Don't assume
Jim Blandy <jimb@redhat.com>
parents:
1441
diff
changeset
|
2006 if (!NILP (keys) && XFASTINT (Flength (keys)) > 0) |
|
1890
0ca7640360bd
(describe_map): Call Fkey_description before build_string.
Richard M. Stallman <rms@gnu.org>
parents:
1871
diff
changeset
|
2007 { |
|
0ca7640360bd
(describe_map): Call Fkey_description before build_string.
Richard M. Stallman <rms@gnu.org>
parents:
1871
diff
changeset
|
2008 Lisp_Object tem; |
|
0ca7640360bd
(describe_map): Call Fkey_description before build_string.
Richard M. Stallman <rms@gnu.org>
parents:
1871
diff
changeset
|
2009 /* Call Fkey_description first, to avoid GC bug for the other string. */ |
|
0ca7640360bd
(describe_map): Call Fkey_description before build_string.
Richard M. Stallman <rms@gnu.org>
parents:
1871
diff
changeset
|
2010 tem = Fkey_description (keys); |
|
0ca7640360bd
(describe_map): Call Fkey_description before build_string.
Richard M. Stallman <rms@gnu.org>
parents:
1871
diff
changeset
|
2011 keysdesc = concat2 (tem, build_string (" ")); |
|
0ca7640360bd
(describe_map): Call Fkey_description before build_string.
Richard M. Stallman <rms@gnu.org>
parents:
1871
diff
changeset
|
2012 } |
| 250 | 2013 else |
| 2014 keysdesc = Qnil; | |
| 2015 | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2016 describe_map_2 (map, keysdesc, describe_command, partial, shadow); |
| 250 | 2017 } |
| 2018 | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2019 /* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map. |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2020 Returns the first non-nil binding found in any of those maps. */ |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2021 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2022 static Lisp_Object |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2023 shadow_lookup (shadow, key, flag) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2024 Lisp_Object shadow, key, flag; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2025 { |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2026 Lisp_Object tail, value; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2027 |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2028 for (tail = shadow; CONSP (tail); tail = XCONS (tail)->cdr) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2029 { |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2030 value = Flookup_key (XCONS (tail)->car, key, flag); |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2031 if (!NILP (value)) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2032 return value; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2033 } |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2034 return Qnil; |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2035 } |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2036 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2037 /* Insert a description of KEYMAP into the current buffer. */ |
| 250 | 2038 |
| 2039 static void | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2040 describe_map_2 (keymap, elt_prefix, elt_describer, partial, shadow) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2041 register Lisp_Object keymap; |
| 250 | 2042 Lisp_Object elt_prefix; |
| 2043 int (*elt_describer) (); | |
| 2044 int partial; | |
| 2045 Lisp_Object shadow; | |
| 2046 { | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2047 Lisp_Object tail, definition, event; |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2048 Lisp_Object tem; |
| 250 | 2049 Lisp_Object suppress; |
| 2050 Lisp_Object kludge; | |
| 2051 int first = 1; | |
| 2052 struct gcpro gcpro1, gcpro2, gcpro3; | |
| 2053 | |
| 2054 if (partial) | |
| 2055 suppress = intern ("suppress-keymap"); | |
| 2056 | |
| 2057 /* This vector gets used to present single keys to Flookup_key. Since | |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2058 that is done once per keymap element, we don't want to cons up a |
| 250 | 2059 fresh vector every time. */ |
| 2060 kludge = Fmake_vector (make_number (1), Qnil); | |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2061 definition = Qnil; |
| 250 | 2062 |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2063 GCPRO3 (elt_prefix, definition, kludge); |
| 250 | 2064 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2065 for (tail = XCONS (keymap)->cdr; CONSP (tail); tail = Fcdr (tail)) |
| 250 | 2066 { |
| 2067 QUIT; | |
| 2068 | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2069 if (XTYPE (XCONS (tail)->car) == Lisp_Vector) |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2070 describe_vector (XCONS (tail)->car, |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2071 elt_prefix, elt_describer, partial, shadow); |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2072 else |
| 250 | 2073 { |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2074 event = Fcar_safe (Fcar (tail)); |
|
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2075 definition = get_keyelt (Fcdr_safe (Fcar (tail))); |
| 250 | 2076 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2077 /* Don't show undefined commands or suppressed commands. */ |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2078 if (NILP (definition)) continue; |
|
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2079 if (XTYPE (definition) == Lisp_Symbol && partial) |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2080 { |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2081 tem = Fget (definition, suppress); |
|
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2082 if (!NILP (tem)) |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2083 continue; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2084 } |
| 250 | 2085 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2086 /* Don't show a command that isn't really visible |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2087 because a local definition of the same key shadows it. */ |
| 250 | 2088 |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2089 XVECTOR (kludge)->contents[0] = event; |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2090 if (!NILP (shadow)) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2091 { |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2092 tem = shadow_lookup (shadow, kludge, Qt); |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2093 if (!NILP (tem)) continue; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2094 } |
| 250 | 2095 |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2096 tem = Flookup_key (keymap, kludge, Qt); |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2097 if (! EQ (tem, definition)) continue; |
|
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2098 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2099 if (first) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2100 { |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2101 insert ("\n", 1); |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2102 first = 0; |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2103 } |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2104 |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2105 if (!NILP (elt_prefix)) |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2106 insert1 (elt_prefix); |
| 250 | 2107 |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2108 /* THIS gets the string to describe the character EVENT. */ |
|
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2109 insert1 (Fsingle_key_description (event)); |
| 250 | 2110 |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2111 /* Print a description of the definition of this character. |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2112 elt_describer will take care of spacing out far enough |
|
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2113 for alignment purposes. */ |
|
3908
a148b4ff79c6
(describe_map_2): Cleanups.
Richard M. Stallman <rms@gnu.org>
parents:
3735
diff
changeset
|
2114 (*elt_describer) (definition); |
|
1209
1aa2cd425737
* keymap.c (DENSE_TABLE_SIZE): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1160
diff
changeset
|
2115 } |
| 250 | 2116 } |
| 2117 | |
| 2118 UNGCPRO; | |
| 2119 } | |
| 2120 | |
| 2121 static int | |
| 2122 describe_vector_princ (elt) | |
| 2123 Lisp_Object elt; | |
| 2124 { | |
|
3691
49ce2242f5c1
(get_keymap_1): Add missing semicolon.
Richard M. Stallman <rms@gnu.org>
parents:
3674
diff
changeset
|
2125 Findent_to (make_number (16), make_number (1)); |
| 250 | 2126 Fprinc (elt, Qnil); |
|
3632
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
2127 Fterpri (Qnil); |
| 250 | 2128 } |
| 2129 | |
| 2130 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 1, 0, | |
|
3632
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
2131 "Insert a description of contents of VECTOR.\n\ |
| 250 | 2132 This is text showing the elements of vector matched against indices.") |
| 2133 (vector) | |
| 2134 Lisp_Object vector; | |
| 2135 { | |
|
3632
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
2136 int count = specpdl_ptr - specpdl; |
|
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
2137 |
|
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
2138 specbind (Qstandard_output, Fcurrent_buffer ()); |
| 250 | 2139 CHECK_VECTOR (vector, 0); |
|
1922
648bc44d182a
* keymap.c (Fdescribe_vector): Pass the proper number of arguments
Jim Blandy <jimb@redhat.com>
parents:
1890
diff
changeset
|
2140 describe_vector (vector, Qnil, describe_vector_princ, 0, Qnil); |
|
3632
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
2141 |
|
72cfde0cd8cd
(Fdescribe_vector): Use current buf, not standard-output.
Richard M. Stallman <rms@gnu.org>
parents:
3542
diff
changeset
|
2142 return unbind_to (count, Qnil); |
| 250 | 2143 } |
| 2144 | |
| 2145 describe_vector (vector, elt_prefix, elt_describer, partial, shadow) | |
| 2146 register Lisp_Object vector; | |
| 2147 Lisp_Object elt_prefix; | |
| 2148 int (*elt_describer) (); | |
| 2149 int partial; | |
| 2150 Lisp_Object shadow; | |
| 2151 { | |
| 2152 Lisp_Object this; | |
| 2153 Lisp_Object dummy; | |
| 2154 Lisp_Object tem1, tem2; | |
| 2155 register int i; | |
| 2156 Lisp_Object suppress; | |
| 2157 Lisp_Object kludge; | |
| 2158 int first = 1; | |
| 2159 struct gcpro gcpro1, gcpro2, gcpro3; | |
| 2160 | |
| 2161 tem1 = Qnil; | |
| 2162 | |
| 2163 /* This vector gets used to present single keys to Flookup_key. Since | |
| 2164 that is done once per vector element, we don't want to cons up a | |
| 2165 fresh vector every time. */ | |
| 2166 kludge = Fmake_vector (make_number (1), Qnil); | |
| 2167 GCPRO3 (elt_prefix, tem1, kludge); | |
| 2168 | |
| 2169 if (partial) | |
| 2170 suppress = intern ("suppress-keymap"); | |
| 2171 | |
|
2752
93eda5bbc4df
(Faccessible_keymaps): Use whatever size the vector has.
Richard M. Stallman <rms@gnu.org>
parents:
2727
diff
changeset
|
2172 for (i = 0; i < XVECTOR (vector)->size; i++) |
| 250 | 2173 { |
| 2174 QUIT; | |
| 2175 tem1 = get_keyelt (XVECTOR (vector)->contents[i]); | |
| 2176 | |
| 485 | 2177 if (NILP (tem1)) continue; |
| 250 | 2178 |
| 2179 /* Don't mention suppressed commands. */ | |
| 2180 if (XTYPE (tem1) == Lisp_Symbol && partial) | |
| 2181 { | |
| 2182 this = Fget (tem1, suppress); | |
| 485 | 2183 if (!NILP (this)) |
| 250 | 2184 continue; |
| 2185 } | |
| 2186 | |
| 2187 /* If this command in this map is shadowed by some other map, | |
| 2188 ignore it. */ | |
| 485 | 2189 if (!NILP (shadow)) |
| 250 | 2190 { |
| 2191 Lisp_Object tem; | |
| 2192 | |
| 2193 XVECTOR (kludge)->contents[0] = make_number (i); | |
|
3952
f9dfc2872fb0
(describe_map_tree): Insert key_heading here.
Richard M. Stallman <rms@gnu.org>
parents:
3908
diff
changeset
|
2194 tem = shadow_lookup (shadow, kludge, Qt); |
| 250 | 2195 |
| 485 | 2196 if (!NILP (tem)) continue; |
| 250 | 2197 } |
| 2198 | |
| 2199 if (first) | |
| 2200 { | |
| 2201 insert ("\n", 1); | |
| 2202 first = 0; | |
| 2203 } | |
| 2204 | |
| 2205 /* Output the prefix that applies to every entry in this map. */ | |
| 485 | 2206 if (!NILP (elt_prefix)) |
| 250 | 2207 insert1 (elt_prefix); |
| 2208 | |
| 2209 /* Get the string to describe the character I, and print it. */ | |
| 2210 XFASTINT (dummy) = i; | |
| 2211 | |
| 2212 /* THIS gets the string to describe the character DUMMY. */ | |
| 2213 this = Fsingle_key_description (dummy); | |
| 2214 insert1 (this); | |
| 2215 | |
| 2216 /* Find all consecutive characters that have the same definition. */ | |
|
2752
93eda5bbc4df
(Faccessible_keymaps): Use whatever size the vector has.
Richard M. Stallman <rms@gnu.org>
parents:
2727
diff
changeset
|
2217 while (i + 1 < XVECTOR (vector)->size |
| 250 | 2218 && (tem2 = get_keyelt (XVECTOR (vector)->contents[i+1]), |
| 2219 EQ (tem2, tem1))) | |
| 2220 i++; | |
| 2221 | |
| 2222 /* If we have a range of more than one character, | |
| 2223 print where the range reaches to. */ | |
| 2224 | |
| 2225 if (i != XINT (dummy)) | |
| 2226 { | |
| 2227 insert (" .. ", 4); | |
| 485 | 2228 if (!NILP (elt_prefix)) |
| 250 | 2229 insert1 (elt_prefix); |
| 2230 | |
| 2231 XFASTINT (dummy) = i; | |
| 2232 insert1 (Fsingle_key_description (dummy)); | |
| 2233 } | |
| 2234 | |
| 2235 /* Print a description of the definition of this character. | |
| 2236 elt_describer will take care of spacing out far enough | |
| 2237 for alignment purposes. */ | |
| 2238 (*elt_describer) (tem1); | |
| 2239 } | |
| 2240 | |
| 2241 UNGCPRO; | |
| 2242 } | |
| 2243 | |
| 465 | 2244 /* Apropos - finding all symbols whose names match a regexp. */ |
| 250 | 2245 Lisp_Object apropos_predicate; |
| 2246 Lisp_Object apropos_accumulate; | |
| 2247 | |
| 2248 static void | |
| 2249 apropos_accum (symbol, string) | |
| 2250 Lisp_Object symbol, string; | |
| 2251 { | |
| 2252 register Lisp_Object tem; | |
| 2253 | |
| 2254 tem = Fstring_match (string, Fsymbol_name (symbol), Qnil); | |
| 485 | 2255 if (!NILP (tem) && !NILP (apropos_predicate)) |
| 250 | 2256 tem = call1 (apropos_predicate, symbol); |
| 485 | 2257 if (!NILP (tem)) |
| 250 | 2258 apropos_accumulate = Fcons (symbol, apropos_accumulate); |
| 2259 } | |
| 2260 | |
| 2261 DEFUN ("apropos-internal", Fapropos_internal, Sapropos_internal, 1, 2, 0, | |
| 2262 "Show all symbols whose names contain match for REGEXP.\n\ | |
| 2263 If optional 2nd arg PRED is non-nil, (funcall PRED SYM) is done\n\ | |
| 2264 for each symbol and a symbol is mentioned only if that returns non-nil.\n\ | |
| 2265 Return list of symbols found.") | |
| 2266 (string, pred) | |
| 2267 Lisp_Object string, pred; | |
| 2268 { | |
| 2269 struct gcpro gcpro1, gcpro2; | |
| 2270 CHECK_STRING (string, 0); | |
| 2271 apropos_predicate = pred; | |
| 2272 GCPRO2 (apropos_predicate, apropos_accumulate); | |
| 2273 apropos_accumulate = Qnil; | |
| 2274 map_obarray (Vobarray, apropos_accum, string); | |
| 2275 apropos_accumulate = Fsort (apropos_accumulate, Qstring_lessp); | |
| 2276 UNGCPRO; | |
| 2277 return apropos_accumulate; | |
| 2278 } | |
| 2279 | |
| 2280 syms_of_keymap () | |
| 2281 { | |
| 2282 Lisp_Object tem; | |
| 2283 | |
| 2284 Qkeymap = intern ("keymap"); | |
| 2285 staticpro (&Qkeymap); | |
| 2286 | |
| 2287 /* Initialize the keymaps standardly used. | |
| 2288 Each one is the value of a Lisp variable, and is also | |
| 2289 pointed to by a C variable */ | |
| 2290 | |
|
3224
6be8f63060b3
(syms_of_keymap): Create global_map 256 slots long.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
2291 global_map = Fcons (Qkeymap, |
|
3425
c513638ee7ed
(syms_of_keymap): Add missing 2nd arg to Fcons.
Richard M. Stallman <rms@gnu.org>
parents:
3224
diff
changeset
|
2292 Fcons (Fmake_vector (make_number (0400), Qnil), Qnil)); |
| 250 | 2293 Fset (intern ("global-map"), global_map); |
| 2294 | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
2295 meta_map = Fmake_keymap (Qnil); |
| 250 | 2296 Fset (intern ("esc-map"), meta_map); |
| 2297 Ffset (intern ("ESC-prefix"), meta_map); | |
| 2298 | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
2299 control_x_map = Fmake_keymap (Qnil); |
| 250 | 2300 Fset (intern ("ctl-x-map"), control_x_map); |
| 2301 Ffset (intern ("Control-X-prefix"), control_x_map); | |
| 2302 | |
| 2303 DEFVAR_LISP ("minibuffer-local-map", &Vminibuffer_local_map, | |
| 2304 "Default keymap to use when reading from the minibuffer."); | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
2305 Vminibuffer_local_map = Fmake_sparse_keymap (Qnil); |
| 250 | 2306 |
| 2307 DEFVAR_LISP ("minibuffer-local-ns-map", &Vminibuffer_local_ns_map, | |
| 2308 "Local keymap for the minibuffer when spaces are not allowed."); | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
2309 Vminibuffer_local_ns_map = Fmake_sparse_keymap (Qnil); |
| 250 | 2310 |
| 2311 DEFVAR_LISP ("minibuffer-local-completion-map", &Vminibuffer_local_completion_map, | |
| 2312 "Local keymap for minibuffer input with completion."); | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
2313 Vminibuffer_local_completion_map = Fmake_sparse_keymap (Qnil); |
| 250 | 2314 |
| 2315 DEFVAR_LISP ("minibuffer-local-must-match-map", &Vminibuffer_local_must_match_map, | |
| 2316 "Local keymap for minibuffer input with completion, for exact match."); | |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
2317 Vminibuffer_local_must_match_map = Fmake_sparse_keymap (Qnil); |
| 250 | 2318 |
| 2319 current_global_map = global_map; | |
| 2320 | |
| 465 | 2321 DEFVAR_LISP ("minor-mode-map-alist", &Vminor_mode_map_alist, |
| 2322 "Alist of keymaps to use for minor modes.\n\ | |
| 2323 Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read\n\ | |
| 2324 key sequences and look up bindings iff VARIABLE's value is non-nil.\n\ | |
| 2325 If two active keymaps bind the same key, the keymap appearing earlier\n\ | |
| 2326 in the list takes precedence."); | |
| 2327 Vminor_mode_map_alist = Qnil; | |
| 2328 | |
| 517 | 2329 DEFVAR_LISP ("function-key-map", &Vfunction_key_map, |
| 2330 "Keymap mapping ASCII function key sequences onto their preferred forms.\n\ | |
| 2331 This allows Emacs to recognize function keys sent from ASCII\n\ | |
| 2332 terminals at any point in a key sequence.\n\ | |
| 2333 \n\ | |
| 2334 The read-key-sequence function replaces subsequences bound by\n\ | |
| 2335 function-key-map with their bindings. When the current local and global\n\ | |
| 2336 keymaps have no binding for the current key sequence but\n\ | |
|
4138
42faad1466fa
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4023
diff
changeset
|
2337 function-key-map binds a suffix of the sequence to a vector or string,\n\ |
| 517 | 2338 read-key-sequence replaces the matching suffix with its binding, and\n\ |
| 2339 continues with the new sequence.\n\ | |
| 2340 \n\ | |
|
4138
42faad1466fa
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4023
diff
changeset
|
2341 For example, suppose function-key-map binds `ESC O P' to [f1].\n\ |
|
42faad1466fa
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4023
diff
changeset
|
2342 Typing `ESC O P' to read-key-sequence would return [f1]. Typing\n\ |
|
42faad1466fa
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4023
diff
changeset
|
2343 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix\n\ |
|
42faad1466fa
* keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents:
4023
diff
changeset
|
2344 key, typing `ESC O P x' would return [f1 x]."); |
|
1095
6578f07e9eb8
(Fmake_sparse_keymap, Fmake_keymap): New optional arg. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
647
diff
changeset
|
2345 Vfunction_key_map = Fmake_sparse_keymap (Qnil); |
| 517 | 2346 |
| 250 | 2347 Qsingle_key_description = intern ("single-key-description"); |
| 2348 staticpro (&Qsingle_key_description); | |
| 2349 | |
| 2350 Qkey_description = intern ("key-description"); | |
| 2351 staticpro (&Qkey_description); | |
| 2352 | |
| 2353 Qkeymapp = intern ("keymapp"); | |
| 2354 staticpro (&Qkeymapp); | |
| 2355 | |
|
2727
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
2356 Qnon_ascii = intern ("non-ascii"); |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
2357 staticpro (&Qnon_ascii); |
|
b8911c8b9700
* keymap.c (Fwhere_is_internal): If FIRSTONLY is non-nil, avoid
Jim Blandy <jimb@redhat.com>
parents:
2652
diff
changeset
|
2358 |
| 250 | 2359 defsubr (&Skeymapp); |
| 2360 defsubr (&Smake_keymap); | |
| 2361 defsubr (&Smake_sparse_keymap); | |
| 2362 defsubr (&Scopy_keymap); | |
| 2363 defsubr (&Skey_binding); | |
| 2364 defsubr (&Slocal_key_binding); | |
| 2365 defsubr (&Sglobal_key_binding); | |
| 465 | 2366 defsubr (&Sminor_mode_key_binding); |
| 250 | 2367 defsubr (&Sglobal_set_key); |
| 2368 defsubr (&Slocal_set_key); | |
| 2369 defsubr (&Sdefine_key); | |
| 2370 defsubr (&Slookup_key); | |
| 2371 defsubr (&Sglobal_unset_key); | |
| 2372 defsubr (&Slocal_unset_key); | |
| 2373 defsubr (&Sdefine_prefix_command); | |
| 2374 defsubr (&Suse_global_map); | |
| 2375 defsubr (&Suse_local_map); | |
| 2376 defsubr (&Scurrent_local_map); | |
| 2377 defsubr (&Scurrent_global_map); | |
| 465 | 2378 defsubr (&Scurrent_minor_mode_maps); |
| 250 | 2379 defsubr (&Saccessible_keymaps); |
| 2380 defsubr (&Skey_description); | |
| 2381 defsubr (&Sdescribe_vector); | |
| 2382 defsubr (&Ssingle_key_description); | |
| 2383 defsubr (&Stext_char_description); | |
| 2384 defsubr (&Swhere_is_internal); | |
| 2385 defsubr (&Swhere_is); | |
| 2386 defsubr (&Sdescribe_bindings); | |
| 2387 defsubr (&Sapropos_internal); | |
| 2388 } | |
| 2389 | |
| 2390 keys_of_keymap () | |
| 2391 { | |
| 2392 Lisp_Object tem; | |
| 2393 | |
| 2394 initial_define_key (global_map, 033, "ESC-prefix"); | |
| 2395 initial_define_key (global_map, Ctl('X'), "Control-X-prefix"); | |
| 2396 } |
