diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-11 18:21:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-11 18:21:39 +0000 |
commit | 4fd6247b5ce4e0167e64d49e2baef0be4bba33b7 (patch) | |
tree | e9f8e4c1d0558375cde9ce098e9c213b27a47e39 /lisp/emacs-lisp | |
parent | ccd5f1ca4c24003bb741ba2ce1d3c06cea87fb81 (diff) | |
download | emacs-4fd6247b5ce4e0167e64d49e2baef0be4bba33b7.tar.gz emacs-4fd6247b5ce4e0167e64d49e2baef0be4bba33b7.tar.bz2 emacs-4fd6247b5ce4e0167e64d49e2baef0be4bba33b7.zip |
entered into RCS
Diffstat (limited to 'lisp/emacs-lisp')
-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." (setq name (if (string-match "^-+$" item) "" item))) ((consp item) (setq command (easy-menu-keymap (car item) (cdr item))) - (setq name (concat (car item) "..."))) + (setq name (car item))) ((vectorp item) (setq command (make-symbol (format "menu-function-%d" easy-menu-item-count))) |