diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2005-09-13 20:13:31 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2005-09-13 20:13:31 +0000 |
commit | 40cfe0d8bcc1ea04b3e55b577ed5c1c3df623074 (patch) | |
tree | 5e4f13bfe321d1c0ef9ba218869df8c6fe61c729 /lisp/mouse.el | |
parent | 1b53925a36a2367b3128c559b5735a33e3766139 (diff) | |
download | emacs-40cfe0d8bcc1ea04b3e55b577ed5c1c3df623074.tar.gz |
2005-09-14 Chong Yidong <cyd@stupidchicken.com>
* mouse.el (mouse-major-mode-menu): Make `prefix' optional.
Delete unused local var.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r-- | lisp/mouse.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 1970fbf1eeb..3b591694cfe 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -153,7 +153,7 @@ PREFIX is the prefix argument (if any) to pass to the command." (defvar mouse-major-mode-menu-prefix) ; dynamically bound -(defun mouse-major-mode-menu (event prefix) +(defun mouse-major-mode-menu (event &optional prefix) "Pop up a mode-specific menu of mouse commands. Default to the Edit menu if the major mode doesn't define a menu." ;; Switch to the window clicked on, because otherwise @@ -173,8 +173,7 @@ Default to the Edit menu if the major mode doesn't define a menu." ;; default to the edit menu. (newmap (if ancestor (make-sparse-keymap (concat mode-name " Mode")) - menu-bar-edit-menu)) - result) + menu-bar-edit-menu))) (if ancestor ;; Make our menu inherit from the desired keymap which we want ;; to display as the menu now. |