mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-22 10:26:20 +00:00
(describe_map): Fix the call to Fequal.
This commit is contained in:
parent
a7d6cde616
commit
b5b90d18cc
@ -2126,7 +2126,7 @@ describe_map (map, keys, elt_describer, partial, shadow, seen)
|
||||
using an inherited keymap. So skip anything we've already
|
||||
encountered. */
|
||||
tem = Fassq (tail, *seen);
|
||||
if (CONSP (tem) && Fequal (XCONS (tem)->car, keys))
|
||||
if (CONSP (tem) && !NILP (Fequal (XCONS (tem)->car, keys)))
|
||||
break;
|
||||
*seen = Fcons (Fcons (tail, keys), *seen);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user