diff options
| author | Colin Walters | 2002-05-16 19:32:32 +0000 |
|---|---|---|
| committer | Colin Walters | 2002-05-16 19:32:32 +0000 |
| commit | 1edd6ac448ce5a94c1b220ec9b56aa96b0e3a4b2 (patch) | |
| tree | 70e527df06d168e47b99d18589791e78fa2bc522 | |
| parent | 9f1f80ae688c8e64449ce52b1c2f836e5475e67f (diff) | |
| download | emacs-1edd6ac448ce5a94c1b220ec9b56aa96b0e3a4b2.tar.gz emacs-1edd6ac448ce5a94c1b220ec9b56aa96b0e3a4b2.zip | |
(menu-bar-tools-menu) <calculator>: Renamed to "Simple Calculator".
(menu-bar-tools-menu) <calc>: New.
| -rw-r--r-- | lisp/menu-bar.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 3ab40eeef05..f36214e5d88 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -904,9 +904,12 @@ Do the same for the keys of the same name." | |||
| 904 | '(menu-item "5x5" 5x5 | 904 | '(menu-item "5x5" 5x5 |
| 905 | :help "Fill in all the squares on a 5x5 board")) | 905 | :help "Fill in all the squares on a 5x5 board")) |
| 906 | 906 | ||
| 907 | (define-key menu-bar-tools-menu [calculator] | 907 | (define-key menu-bar-tools-menu [simple-calculator] |
| 908 | '(menu-item "Calculator" calculator | 908 | '(menu-item "Simple Calculator" calculator |
| 909 | :help "Invoke the Emacs built-in scientific calculator")) | 909 | :help "Invoke the Emacs built-in quick calculator")) |
| 910 | (define-key menu-bar-tools-menu [calc] | ||
| 911 | '(menu-item "Programmable Calculator" calc | ||
| 912 | :help "Invoke the Emacs built-in full scientific calculator")) | ||
| 910 | (define-key menu-bar-tools-menu [calendar] | 913 | (define-key menu-bar-tools-menu [calendar] |
| 911 | '(menu-item "Display Calendar" calendar)) | 914 | '(menu-item "Display Calendar" calendar)) |
| 912 | 915 | ||