From: Richard M. Stallman Date: Sat, 14 Dec 1996 22:23:58 +0000 (+0000) Subject: (menu-bar-tools-menu): Add items X-Git-Tag: emacs-20.1~3267 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=147f1d2af3230d92fa920f7d64f333336217854a;p=emacs.git (menu-bar-tools-menu): Add items Debugger, Compile and Search Files. --- diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 6132e23526f..6f44121b1f5 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -60,6 +60,13 @@ A large number or nil slows down menu responsiveness.") (defvar vc-menu-map (make-sparse-keymap "Version Control")) +(define-key menu-bar-tools-menu [gdb] '("Debugger..." . gdb)) +(define-key menu-bar-tools-menu [compile] '("Compile..." . compile)) +(define-key menu-bar-tools-menu [grep] '("Search Files..." . grep)) + +(define-key menu-bar-tools-menu [separator-1] + '("--")) + (define-key menu-bar-tools-menu [calendar] '("Display Calendar" . calendar)) (define-key menu-bar-tools-menu [rmail] '("Read Mail" . rmail)) (define-key menu-bar-tools-menu [gnus] '("Read Net News" . gnus))