diff options
| author | Richard M. Stallman | 2002-04-28 03:18:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-04-28 03:18:29 +0000 |
| commit | e8e98f20c2f0a346c5f43905d297ebe7169485f0 (patch) | |
| tree | e48e5d0516f9bfd57f710a57ca8997af149fe93a | |
| parent | 332b907c86bd6f335c3d3681ae09bb5539d05d1a (diff) | |
| download | emacs-e8e98f20c2f0a346c5f43905d297ebe7169485f0.tar.gz emacs-e8e98f20c2f0a346c5f43905d297ebe7169485f0.zip | |
(ada-add-ada-menu): Menu pseudo-keys generated by easymenu are now lowercase.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/ada-xref.el | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0c20df2ac02..52fe70d3f90 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -5,6 +5,11 @@ | |||
| 5 | 5 | ||
| 6 | 2002-04-27 Richard M. Stallman <rms@gnu.org> | 6 | 2002-04-27 Richard M. Stallman <rms@gnu.org> |
| 7 | 7 | ||
| 8 | * progmodes/ada-xref.el (ada-add-ada-menu): Menu pseudo-keys | ||
| 9 | generated by easymenu are now lowercase. | ||
| 10 | |||
| 11 | 2002-04-27 Richard M. Stallman <rms@gnu.org> | ||
| 12 | |||
| 8 | * menu-bar.el (menu-bar-update-buffers): Add menu items | 13 | * menu-bar.el (menu-bar-update-buffers): Add menu items |
| 9 | Next Buffer and Previous Buffer. | 14 | Next Buffer and Previous Buffer. |
| 10 | 15 | ||
diff --git a/lisp/progmodes/ada-xref.el b/lisp/progmodes/ada-xref.el index 5cf2c2e75b9..94eb7ef26e5 100644 --- a/lisp/progmodes/ada-xref.el +++ b/lisp/progmodes/ada-xref.el | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | ;; Rolf Ebert <ebert@inf.enst.fr> | 7 | ;; Rolf Ebert <ebert@inf.enst.fr> |
| 8 | ;; Emmanuel Briot <briot@gnat.com> | 8 | ;; Emmanuel Briot <briot@gnat.com> |
| 9 | ;; Maintainer: Emmanuel Briot <briot@gnat.com> | 9 | ;; Maintainer: Emmanuel Briot <briot@gnat.com> |
| 10 | ;; Ada Core Technologies's version: $Revision: 1.150 $ | 10 | ;; Ada Core Technologies's version: $Revision: 1.9 $ |
| 11 | ;; Keywords: languages ada xref | 11 | ;; Keywords: languages ada xref |
| 12 | 12 | ||
| 13 | ;; This file is part of GNU Emacs. | 13 | ;; This file is part of GNU Emacs. |
| @@ -620,11 +620,11 @@ name as was passed to `ada-create-menu'." | |||
| 620 | ) | 620 | ) |
| 621 | 621 | ||
| 622 | ;; for Emacs | 622 | ;; for Emacs |
| 623 | (let* ((menu (lookup-key ada-mode-map [menu-bar Ada])) | 623 | (let* ((menu (lookup-key ada-mode-map [menu-bar ada])) |
| 624 | (edit-menu (lookup-key ada-mode-map [menu-bar Ada Edit])) | 624 | (edit-menu (lookup-key ada-mode-map [menu-bar ada edit])) |
| 625 | (help-menu (lookup-key ada-mode-map [menu-bar Ada Help])) | 625 | (help-menu (lookup-key ada-mode-map [menu-bar ada help])) |
| 626 | (goto-menu (lookup-key ada-mode-map [menu-bar Ada Goto])) | 626 | (goto-menu (lookup-key ada-mode-map [menu-bar ada goto])) |
| 627 | (options-menu (lookup-key ada-mode-map [menu-bar Ada Options]))) | 627 | (options-menu (lookup-key ada-mode-map [menu-bar ada options]))) |
| 628 | 628 | ||
| 629 | (define-key-after menu [Check] '("Check file" . ada-check-current) | 629 | (define-key-after menu [Check] '("Check file" . ada-check-current) |
| 630 | 'Customize) | 630 | 'Customize) |