From: Richard M. Stallman Date: Tue, 5 May 1998 21:37:23 +0000 (+0000) Subject: (tmm-get-keymap): Fix previous change; X-Git-Tag: emacs-20.3~1125 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=437d9247a0043be841f1afa5803a093109dd8472;p=emacs.git (tmm-get-keymap): Fix previous change; access the equiv string from the cache properly. --- diff --git a/lisp/tmm.el b/lisp/tmm.el index 6aa4f50f6ca..e7ffce153f3 100644 --- a/lisp/tmm.el +++ b/lisp/tmm.el @@ -429,8 +429,8 @@ It uses the free variable `tmm-table-undef' to keep undefined keys." (setq str (nth 1 elt)) (and str (consp (nth 3 elt)) - (stringp (cdr (car (nth 3 elt)))) ; keyseq cache - (setq cache (cdr (car (nth 3 elt)))) + (stringp (cdr (nth 3 elt))) ; keyseq cache + (setq cache (cdr (nth 3 elt))) cache (setq str (concat str cache)))) ((if (listp (cdr-safe (cdr-safe (cdr-safe elt))))