diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-05-22 21:42:13 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-05-22 21:42:13 +0000 |
commit | 98e05fae58f00a6cdf18e2185909e38cf0457fc0 (patch) | |
tree | 6c4b01a6a5906612b2f2ea0f70fc057f7c521b43 | |
parent | a142f21b7d4b0ea885ff5d5d77ae4b69f6044d2f (diff) | |
download | emacs-98e05fae58f00a6cdf18e2185909e38cf0457fc0.tar.gz |
(ada-add-ada-menu): Fix args to easy-menu-define.
-rw-r--r-- | lisp/progmodes/ada-mode.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el index f7077ad426f..740dcd1ca97 100644 --- a/lisp/progmodes/ada-mode.el +++ b/lisp/progmodes/ada-mode.el @@ -108,11 +108,11 @@ ;;; LCD Archive Entry: ;;; ada-mode|Rolf Ebert|<ebert@inf.enst.fr> ;;; |Major-mode for Ada -;;; |$Date: 1995/04/04 03:00:59 $|$Revision: 1.4 $| +;;; |$Date: 1995/04/07 00:14:59 $|$Revision: 1.5 $| -(defconst ada-mode-version (substring "$Revision: 1.4 $" 11 -2) - "$Id: ada-mode.el,v 1.4 1995/04/04 03:00:59 kwzh Exp kwzh $ +(defconst ada-mode-version (substring "$Revision: 1.5 $" 11 -2) + "$Id: ada-mode.el,v 1.5 1995/04/07 00:14:59 kwzh Exp kwzh $ Report bugs to: Rolf Ebert <ebert@inf.enst.fr>") @@ -3436,7 +3436,7 @@ Searches through former 'with' statements for possible completions." (defun ada-add-ada-menu () "Adds the menu 'Ada' to the menu-bar in Ada Mode." - (easy-menu-define t ada-mode-map t + (easy-menu-define ada-mode-menu ada-mode-map "Menu keymap for Ada mode." '("Ada" ["next package" ada-next-package t] ["previous package" ada-previous-package t] |