diff options
| -rw-r--r-- | lisp/emacs-lisp/easymenu.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el index 90b4f55fe09..3aa27c44de7 100644 --- a/lisp/emacs-lisp/easymenu.el +++ b/lisp/emacs-lisp/easymenu.el | |||
| @@ -83,7 +83,7 @@ is a list of menu items, as above." | |||
| 83 | (setq name (if (string-match "^-+$" item) "" item))) | 83 | (setq name (if (string-match "^-+$" item) "" item))) |
| 84 | ((consp item) | 84 | ((consp item) |
| 85 | (setq command (easy-menu-keymap (car item) (cdr item))) | 85 | (setq command (easy-menu-keymap (car item) (cdr item))) |
| 86 | (setq name (concat (car item) "..."))) | 86 | (setq name (car item))) |
| 87 | ((vectorp item) | 87 | ((vectorp item) |
| 88 | (setq command (make-symbol (format "menu-function-%d" | 88 | (setq command (make-symbol (format "menu-function-%d" |
| 89 | easy-menu-item-count))) | 89 | easy-menu-item-count))) |