aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-01-13 00:35:28 +0000
committerKarl Heuer1995-01-13 00:35:28 +0000
commitf545df9c63d13412eca8e8a9857c400f842fc07d (patch)
tree37aee7d1a44fa29ff10587271f3a3e755b1b0fcb
parent25be741f21c18a33f7b92a9a7c24002566a6b455 (diff)
downloademacs-f545df9c63d13412eca8e8a9857c400f842fc07d.tar.gz
emacs-f545df9c63d13412eca8e8a9857c400f842fc07d.zip
(easy-menu-define): Doc fix.
-rw-r--r--lisp/emacs-lisp/easymenu.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el
index 5f8e3340a2e..4fc72fdf193 100644
--- a/lisp/emacs-lisp/easymenu.el
+++ b/lisp/emacs-lisp/easymenu.el
@@ -30,10 +30,8 @@
30;;;###autoload 30;;;###autoload
31(defmacro easy-menu-define (symbol maps doc menu) 31(defmacro easy-menu-define (symbol maps doc menu)
32 "Define a menu bar submenu in maps MAPS, according to MENU. 32 "Define a menu bar submenu in maps MAPS, according to MENU.
33The arguments SYMBOL and DOC are ignored; they are present for 33SYMBOL is used as a variable to hold the menu data. It is not evaluated.
34compatibility only. SYMBOL is not evaluated. In other Emacs versions 34DOC is a doc string for that variable.
35these arguments may be used as a variable to hold the menu data, and a
36doc string for that variable.
37 35
38The first element of MENU must be a string. It is the menu bar item name. 36The first element of MENU must be a string. It is the menu bar item name.
39The rest of the elements are menu items. 37The rest of the elements are menu items.