Mercurial > emacs
changeset 21952:e71c5e32d385
(tmm-get-keymap): Fix previous change;
access the equiv string from the cache properly.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 05 May 1998 21:37:23 +0000 |
parents | ab7fa71c0957 |
children | 6655c426d447 |
files | lisp/tmm.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/tmm.el Tue May 05 21:29:28 1998 +0000 +++ b/lisp/tmm.el Tue May 05 21:37:23 1998 +0000 @@ -429,8 +429,8 @@ (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))))