diff lisp/mouse.el @ 65498:f2fdccb16607

2005-09-14 Chong Yidong <cyd@stupidchicken.com> * mouse.el (mouse-major-mode-menu): Make `prefix' optional. Delete unused local var.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 13 Sep 2005 20:13:31 +0000
parents 3607a394b655
children fcbaf6135d19 fa0da9b57058
line wrap: on
line diff
--- a/lisp/mouse.el	Tue Sep 13 19:35:24 2005 +0000
+++ b/lisp/mouse.el	Tue Sep 13 20:13:31 2005 +0000
@@ -153,7 +153,7 @@
 
 (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.
 	 (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.