summaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2021-01-04 23:20:44 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2021-01-04 23:43:40 -0500
commit8ef4314c44a046e92bcd7dddde26203a9d641f09 (patch)
treebc221fa8fa938e7e30b254b344134fde8beaaae2 /src/commands.h
parent5bddc097385c1d9088748ed92abc2370857b2202 (diff)
* 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/>. */
#define Ctl(c) ((c)&037)
-/* Define the names of keymaps, just so people can refer to them in
- calls to initial_define_key. These should *not* be used after
- initialization; use-global-map doesn't affect these; it sets
- current_global_map instead. */
-extern Lisp_Object meta_map;
-
/* If not Qnil, this is a switch-frame event which we decided to put
off until the end of a key sequence. This should be read as the
next command input, after any Vunread_command_events.