1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 04:30:45 -08:00

* 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.
This commit is contained in:
Jim Blandy 1993-06-22 08:17:26 +00:00
parent 384c7da487
commit 6ce387e698

View file

@ -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;