summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-07-17 22:51:17 +0000
committerKarl Heuer <kwzh@gnu.org>1995-07-17 22:51:17 +0000
commit260130bbb06e96a3b337e43af34b970dd726e5ff (patch)
tree7c70ef97acc159210331dcb9e42ffb9b34d33579 /lisp
parent34a5f45f7ee50c2b4ff85baf873946744c9f9af2 (diff)
downloademacs-260130bbb06e96a3b337e43af34b970dd726e5ff.tar.gz
(menu-bar-help-menu): Add finder-by-keyword.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/menu-bar.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 685d54efe2c..56903cd6c27 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -21,6 +21,8 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;; Avishai Yacobi suggested some menu rearrangements.
+
;;; Code:
;; Don't clobber an existing menu-bar keymap, to preserve any menu-bar key
@@ -302,9 +304,12 @@ Do the same for the keys of the same name."
'("Show Version" . emacs-version))
(define-key menu-bar-help-menu [report-emacs-bug]
'("Send Bug Report..." . report-emacs-bug))
+(define-key menu-bar-help-menu [finder-by-keyword]
+ '("Find Lisp Packages..." . finder-by-keyword))
(define-key menu-bar-help-menu [emacs-tutorial]
'("Emacs Tutorial" . help-with-tutorial))
-(define-key menu-bar-help-menu [man] '("Man..." . manual-entry))
+(define-key menu-bar-help-menu [man]
+ '("Man..." . manual-entry))
(define-key menu-bar-help-menu [describe-variable]
'("Describe Variable..." . describe-variable))
(define-key menu-bar-help-menu [describe-function]