aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tmm.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1998-05-05 21:37:23 +0000
committerRichard M. Stallman <[email protected]>1998-05-05 21:37:23 +0000
commit437d9247a0043be841f1afa5803a093109dd8472 (patch)
tree83ea553b2f9c77f36625216aa0009bcde7fb1c6b /lisp/tmm.el
parent2ac86cc0fe1d61845ea27a365412756a5c269a77 (diff)
(tmm-get-keymap): Fix previous change;
access the equiv string from the cache properly.
Diffstat (limited to 'lisp/tmm.el')
-rw-r--r--lisp/tmm.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tmm.el b/lisp/tmm.el
index 6aa4f50f6c..e7ffce153f 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))))