displayed text and internal name as string.
+2002-05-14 Jason Rumney <jasonr@gnu.org>
+
+ * emacs-lisp/easymenu.el (easy-menu-name-match): Match both
+ displayed text and internal name as string.
+
2002-05-14 Kim F. Storm <storm@cua.dk>
* emulation/cua-rect.el (cua--rectangle-operation):
(if (symbolp name)
(eq (car-safe item) name)
(if (stringp name)
- (member-ignore-case name item)))))
+ ;; Match against the text that is displayed to the user.
+ (or (member-ignore-case name item)
+ ;; Also check the string version of the symbol name,
+ ;; for backwards compatibility.
+ (eq (car-safe item) (intern name)))))))
(defun easy-menu-always-true (x)
"Return true if form X never evaluates to nil."