1
0
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:
Richard M. Stallman 1994-05-24 21:12:22 +00:00
parent a7d6cde616
commit b5b90d18cc

View File

@ -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);
}