summaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-06-22 08:17:26 +0000
committerJim Blandy <jimb@redhat.com>1993-06-22 08:17:26 +0000
commit4442eaf1e30bd3b72a1a5a7de9ef3ef508654c6d (patch)
tree59247b9a40a9b6b51dd178f6645bfb9c9abdbd6b /src/commands.h
parent76ef4d283b962f78e0873dad96eb2474c35d8c9a (diff)
downloademacs-4442eaf1e30bd3b72a1a5a7de9ef3ef508654c6d.tar.gz
* keyboard.c (menu_bar_items, read_key_sequence): Use
current_global_map, not global_map; the latter is only meant to be used for initial_define_key. * commands.h: Doc fix. * commands.h (Vglobal_mouse_map): Removed; unused. * xfns.c (Vglobal_mouse_map): Same.
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/commands.h b/src/commands.h
index 4abdcac56f1..0f733aeb42c 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -20,18 +20,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define Ctl(c) ((c)&037)
-/* Define the names of keymaps, just so people can refer to
- them in calls to initial_define_key */
-
+/* 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 global_map;
-
extern Lisp_Object meta_map;
-
extern Lisp_Object control_x_map;
-/* Keymap for mouse commands. */
-extern Lisp_Object Vglobal_mouse_map;
-
extern Lisp_Object Vminibuffer_local_map;
extern Lisp_Object Vminibuffer_local_ns_map;