aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/easymenu.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el
index ec8c8cd488f..e92f31568c6 100644
--- a/lisp/emacs-lisp/easymenu.el
+++ b/lisp/emacs-lisp/easymenu.el
@@ -186,7 +186,7 @@ shadow\\(Double\\)?Etched\\(In\\|Out\\)\\(Dash\\)?\\)\\)$"
186 ((vectorp item) 186 ((vectorp item)
187 (setq name (setq item-string (aref item 0))) 187 (setq name (setq item-string (aref item 0)))
188 (setq command (easy-menu-make-symbol (aref item 1) t)) 188 (setq command (easy-menu-make-symbol (aref item 1) t))
189 (let ((active (aref item 2)) 189 (let ((active (if (> (length item) 2) (aref item 2) t))
190 (count 2) 190 (count 2)
191 style selected) 191 style selected)
192 (if (and (symbolp active) (= ?: (aref (symbol-name active) 0))) 192 (if (and (symbolp active) (= ?: (aref (symbol-name active) 0)))