2000-12-02 Stefan Monnier <monnier@cs.yale.edu>
+ * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
+
* textmodes/ispell.el (check-ispell-version): Don't use match-beginning
to check if the match succeeded.
((eq (car-safe elt) 'menu-item)
(setq plist (cdr-safe (cdr-safe (cdr-safe elt))))
(setq km (nth 2 elt))
- (setq str (nth 1 elt))
+ (setq str (eval (nth 1 elt)))
(setq filter (plist-get plist :filter))
(if filter
(setq km (funcall filter km)))
(setq km nil)))
(and km str
(or (assoc str tmm-km-list)
- (setq tmm-km-list
- (cons (cons str (cons event km)) tmm-km-list)))
- ))))
+ (push (cons str (cons event km)) tmm-km-list))))))
(defun tmm-get-keybind (keyseq)
"Return the current binding of KEYSEQ, merging prefix definitions.