changeset 11240:2642924d2d21

(internal_equal): Use XMISCTYPE.
author Richard M. Stallman <rms@gnu.org>
date Fri, 07 Apr 1995 05:19:14 +0000
parents 38aef18e8e3d
children 5fed07fb66fb
files src/fns.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/fns.c	Fri Apr 07 05:17:56 1995 +0000
+++ b/src/fns.c	Fri Apr 07 05:19:14 1995 +0000
@@ -955,7 +955,7 @@
       goto tail_recurse;
 
     case Lisp_Misc:
-      if (XMISC (o1)->type != XMISC (o2)->type)
+      if (XMISCTYPE (o1) != XMISCTYPE (o2))
 	return 0;
       if (OVERLAYP (o1))
 	{