]> git.eshelyaron.com Git - emacs.git/commitdiff
(tmm-get-keymap): Fix previous change;
authorRichard M. Stallman <rms@gnu.org>
Tue, 5 May 1998 21:37:23 +0000 (21:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 5 May 1998 21:37:23 +0000 (21:37 +0000)
access the equiv string from the cache properly.

lisp/tmm.el

index 6aa4f50f6cae3296729d7ccf2051a221313239ed..e7ffce153f38410fb28ee7cfb11d3cb4b9f7f352 100644 (file)
@@ -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))))