aboutsummaryrefslogtreecommitdiffstats
path: root/src/commands.h
diff options
context:
space:
mode:
authorStefan Monnier2021-01-04 23:20:44 -0500
committerStefan Monnier2021-01-04 23:43:40 -0500
commit8ef4314c44a046e92bcd7dddde26203a9d641f09 (patch)
treebc221fa8fa938e7e30b254b344134fde8beaaae2 /src/commands.h
parent5bddc097385c1d9088748ed92abc2370857b2202 (diff)
downloademacs-8ef4314c44a046e92bcd7dddde26203a9d641f09.tar.gz
emacs-8ef4314c44a046e92bcd7dddde26203a9d641f09.zip
* lisp/subr.el (esc-map): Initialize inside declaration
* src/commands.h (meta_map): * src/keymap.c (meta_map): Delete variable. (syms_of_keymap): Don't initialize esc-map here. (initial_define_key): * src/keymap.h (initial_define_key): Delete function. * src/keyboard.c (keys_of_keyboard): Don't initialize esc-map here. * src/window.h (keys_of_window): * src/window.c (keys_of_window): Delete function. * src/lisp.h (keys_of_casefiddle): * src/casefiddle.c (keys_of_casefiddle): Delete function. * src/emacs.c (main): Don't call them.
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/commands.h b/src/commands.h
index 8f9c76b1e2d..2205ebf7d39 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -23,12 +23,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
23 23
24#define Ctl(c) ((c)&037) 24#define Ctl(c) ((c)&037)
25 25
26/* Define the names of keymaps, just so people can refer to them in
27 calls to initial_define_key. These should *not* be used after
28 initialization; use-global-map doesn't affect these; it sets
29 current_global_map instead. */
30extern Lisp_Object meta_map;
31
32/* If not Qnil, this is a switch-frame event which we decided to put 26/* If not Qnil, this is a switch-frame event which we decided to put
33 off until the end of a key sequence. This should be read as the 27 off until the end of a key sequence. This should be read as the
34 next command input, after any Vunread_command_events. 28 next command input, after any Vunread_command_events.