aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/mouse.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9e25fa395d1..27b732da5fc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -10,6 +10,8 @@
10 if the associated variable is non-nil, which requires that all 10 if the associated variable is non-nil, which requires that all
11 needed functions be already defined. 11 needed functions be already defined.
12 12
13 * mouse.el (popup-menu): Balance parens.
14
132000-10-08 Dave Love <fx@gnu.org> 152000-10-08 Dave Love <fx@gnu.org>
14 16
15 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map. 17 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 7a18469a020..4d5c3c495ae 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -95,7 +95,7 @@ PREFIX is the prefix argument (if any) to pass to the command."
95 ;; expects this to be set from a menu keymap. 95 ;; expects this to be set from a menu keymap.
96 (setq last-command-event (car (last event))) 96 (setq last-command-event (car (last event)))
97 ;; mouse-major-mode-menu was using `command-execute' instead. 97 ;; mouse-major-mode-menu was using `command-execute' instead.
98 (call-interactively cmd))))))) 98 (call-interactively cmd))))
99 99
100(defvar mouse-major-mode-menu-prefix) ; dynamically bound 100(defvar mouse-major-mode-menu-prefix) ; dynamically bound
101 101