aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-04-07 05:19:14 +0000
committerRichard M. Stallman <[email protected]>1995-04-07 05:19:14 +0000
commit81d1fba6c9224cc3aa6636bfc9779381811270e1 (patch)
tree7c3202ee76b22bfec1a5abc18743d6c00a12dbd0 /src
parent324a6eef85bf5deb6163842e68c209408aeb8456 (diff)
(internal_equal): Use XMISCTYPE.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 4213b170b6..0cdaf8e707 100644
--- 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))
{