From: Richard M. Stallman Date: Wed, 13 Apr 1994 21:54:08 +0000 (+0000) Subject: (describe_map_tree): Fix call to Flookup_key. X-Git-Tag: emacs-19.34~8994 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=982344072cf65aae865595a19d21d6282bd50e00;p=emacs.git (describe_map_tree): Fix call to Flookup_key. --- diff --git a/src/keymap.c b/src/keymap.c index d1f0e8e579b..6351d9d1896 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1953,7 +1953,7 @@ key binding\n\ what we should use. */ else { - shmap = Flookup_key (shadow, Fcar (elt), Qt); + shmap = Flookup_key (shmap, Fcar (elt), Qt); if (XTYPE (shmap) == Lisp_Int) shmap = Qnil; }