]> git.eshelyaron.com Git - emacs.git/commitdiff
(internal_equal): Use XMISCTYPE.
authorRichard M. Stallman <rms@gnu.org>
Fri, 7 Apr 1995 05:19:14 +0000 (05:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 7 Apr 1995 05:19:14 +0000 (05:19 +0000)
src/fns.c

index 4213b170b6a37a798888bbc7e5723c97c2fafb44..0cdaf8e707bc6878eb9065789487ccefa5cc8af1 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -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))
        {