diff options
| author | Karl Heuer | 1995-01-13 00:35:28 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-13 00:35:28 +0000 |
| commit | f545df9c63d13412eca8e8a9857c400f842fc07d (patch) | |
| tree | 37aee7d1a44fa29ff10587271f3a3e755b1b0fcb | |
| parent | 25be741f21c18a33f7b92a9a7c24002566a6b455 (diff) | |
| download | emacs-f545df9c63d13412eca8e8a9857c400f842fc07d.tar.gz emacs-f545df9c63d13412eca8e8a9857c400f842fc07d.zip | |
(easy-menu-define): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/easymenu.el | 6 |
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. |
| 33 | The arguments SYMBOL and DOC are ignored; they are present for | 33 | SYMBOL is used as a variable to hold the menu data. It is not evaluated. |
| 34 | compatibility only. SYMBOL is not evaluated. In other Emacs versions | 34 | DOC is a doc string for that variable. |
| 35 | these arguments may be used as a variable to hold the menu data, and a | ||
| 36 | doc string for that variable. | ||
| 37 | 35 | ||
| 38 | The first element of MENU must be a string. It is the menu bar item name. | 36 | The first element of MENU must be a string. It is the menu bar item name. |
| 39 | The rest of the elements are menu items. | 37 | The rest of the elements are menu items. |