diff options
| -rw-r--r-- | lisp/emacs-lisp/lmenu.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lmenu.el b/lisp/emacs-lisp/lmenu.el index 3883d0ed4be..d06b4d56fee 100644 --- a/lisp/emacs-lisp/lmenu.el +++ b/lisp/emacs-lisp/lmenu.el | |||
| @@ -63,7 +63,7 @@ | |||
| 63 | command enabler name) | 63 | command enabler name) |
| 64 | (cond ((stringp item) | 64 | (cond ((stringp item) |
| 65 | (setq command nil) | 65 | (setq command nil) |
| 66 | (setq name item)) | 66 | (setq name (if (equal item "----") "" item))) |
| 67 | ((consp item) | 67 | ((consp item) |
| 68 | (setq command (make-lucid-menu-keymap (car item) (cdr item))) | 68 | (setq command (make-lucid-menu-keymap (car item) (cdr item))) |
| 69 | (setq name (car item))) | 69 | (setq name (car item))) |