1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00:00

(internal_equal): Use XMISCTYPE.

This commit is contained in:
Richard M. Stallman 1995-04-07 05:19:14 +00:00
parent 324a6eef85
commit 81d1fba6c9

View File

@ -955,7 +955,7 @@ internal_equal (o1, o2, depth)
goto tail_recurse;
case Lisp_Misc:
if (XMISC (o1)->type != XMISC (o2)->type)
if (XMISCTYPE (o1) != XMISCTYPE (o2))
return 0;
if (OVERLAYP (o1))
{