summaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2021-01-04 22:57:21 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2021-01-04 23:41:19 -0500
commitd6f30e5632b1c9cf43ebfbdbf164d5c54be33475 (patch)
treed358a335c8404ba9233379b5baf8bf158da90487 /src/commands.h
parent898a94a9be06a3ab51116778f6b4a263f832759d (diff)
downloademacs-d6f30e5632b1c9cf43ebfbdbf164d5c54be33475.tar.gz
emacs-d6f30e5632b1c9cf43ebfbdbf164d5c54be33475.tar.bz2
emacs-d6f30e5632b1c9cf43ebfbdbf164d5c54be33475.zip
* lisp/subr.el (global-map): Initialize inside declaration.
* src/commands.h (global_map): * src/keymap.c (global_map): Delete variable. (syms_of_keymap): Don't initialize global_map here. (keys_of_keymap): Delete function. * src/lisp.h (keys_of_cmds): * src/cmds.c (keys_of_cmds): Delete function. * src/emacs.c (main): Don't call them. * src/window.c (keys_of_window): Don't initialize global_map here. * src/keyboard.c (keys_of_keyboard): Don't initialize global_map here.
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/commands.h b/src/commands.h
index a09858d050d..be6f5823bcc 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -27,7 +27,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
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 global_map;
extern Lisp_Object meta_map;
extern Lisp_Object control_x_map;