aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-26 03:49:23 +0000
committerGlenn Morris2007-11-26 03:49:23 +0000
commit42e32ed89c84725531121a99129767a52b22b105 (patch)
tree143a060cf5ca19925ee1e7edbef7346eb95a7035
parenta06e7b5d44996e5be167f00c75733740935d406c (diff)
downloademacs-42e32ed89c84725531121a99129767a52b22b105.tar.gz
emacs-42e32ed89c84725531121a99129767a52b22b105.zip
(easy-menu-define): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/easymenu.el7
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2fb77a9f9a2..8b8d3798922 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-11-26 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
4
12007-11-26 Simon Josefsson <simon@josefsson.org> 52007-11-26 Simon Josefsson <simon@josefsson.org>
2 6
3 * net/imap.el: Move from ../gnus. 7 * net/imap.el: Move from ../gnus.
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el
index b802d8acd43..d6c23de0be8 100644
--- a/lisp/emacs-lisp/easymenu.el
+++ b/lisp/emacs-lisp/easymenu.el
@@ -116,10 +116,15 @@ whenever this expression's value is non-nil.
116INCLUDE is an expression; this item is only visible if this 116INCLUDE is an expression; this item is only visible if this
117expression has a non-nil value. `:included' is an alias for `:visible'. 117expression has a non-nil value. `:included' is an alias for `:visible'.
118 118
119 :label FORM
120
121FORM is an expression that will be dynamically evaluated and whose
122value will be used for the menu entry's text label (the default is NAME).
123
119 :suffix FORM 124 :suffix FORM
120 125
121FORM is an expression that will be dynamically evaluated and whose 126FORM is an expression that will be dynamically evaluated and whose
122value will be concatenated to the menu entry's NAME. 127value will be concatenated to the menu entry's label.
123 128
124 :style STYLE 129 :style STYLE
125 130