diff options
| author | Miles Bader | 2000-10-09 00:27:48 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-10-09 00:27:48 +0000 |
| commit | 65b61266fdabceec09be7d2ea4825fb26d88c5dc (patch) | |
| tree | a39a54b669d0a25e2e7e124c880e22ac948cf6e3 | |
| parent | 7dbc9c8a2ce6179bee9c82740b2232c22b6a6be3 (diff) | |
| download | emacs-65b61266fdabceec09be7d2ea4825fb26d88c5dc.tar.gz emacs-65b61266fdabceec09be7d2ea4825fb26d88c5dc.zip | |
(popup-menu): Balance parens.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/mouse.el | 2 |
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 | |||
| 13 | 2000-10-08 Dave Love <fx@gnu.org> | 15 | 2000-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 | ||