diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-06-16 20:30:31 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-06-16 20:30:31 +0000 |
commit | 9817a6a3ee72823104adacb420ce5052d24da21c (patch) | |
tree | d19775beb964aa88e00340823a6e20af4d17a1c2 | |
parent | 648a3c0c3cf3594e396f36f0680bcf431ca4df48 (diff) | |
download | emacs-9817a6a3ee72823104adacb420ce5052d24da21c.tar.gz |
(ispell-menu-bar): Don't autoload.
(cvs-global-menu): Use the function rather than the variable.
-rw-r--r-- | lisp/menu-bar.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index dda1a3f6b0c..469d0b09a42 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -484,8 +484,6 @@ A large number or nil slows down menu responsiveness." (message "Selecting a region with the mouse does `copy' automatically") (kill-ring-save beg end))) -(autoload 'ispell-menu-map "ispell" nil t 'keymap) - ;; These are alternative definitions for the cut, paste and copy ;; menu items. Use them if your system expects these to use the clipboard. @@ -1037,8 +1035,8 @@ PROPS are additional properties." (defvar vc-menu-map (make-sparse-keymap "Version Control")) (define-key menu-bar-tools-menu [pcl-cvs] - `(menu-item "PCL-CVS" ,cvs-global-menu - :help "Module-level interface to CVS")) + '(menu-item "PCL-CVS" cvs-global-menu + :help "Module-level interface to CVS")) (define-key menu-bar-tools-menu [vc] (list 'menu-item "Version Control" vc-menu-map :help "Interface to RCS, CVS, SCCS")) |