aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-04-07 05:19:14 +0000
committerRichard M. Stallman1995-04-07 05:19:14 +0000
commit81d1fba6c9224cc3aa6636bfc9779381811270e1 (patch)
tree7c3202ee76b22bfec1a5abc18743d6c00a12dbd0 /src
parent324a6eef85bf5deb6163842e68c209408aeb8456 (diff)
downloademacs-81d1fba6c9224cc3aa6636bfc9779381811270e1.tar.gz
emacs-81d1fba6c9224cc3aa6636bfc9779381811270e1.zip
(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 4213b170b6a..0cdaf8e707b 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -955,7 +955,7 @@ internal_equal (o1, o2, depth)
955 goto tail_recurse; 955 goto tail_recurse;
956 956
957 case Lisp_Misc: 957 case Lisp_Misc:
958 if (XMISC (o1)->type != XMISC (o2)->type) 958 if (XMISCTYPE (o1) != XMISCTYPE (o2))
959 return 0; 959 return 0;
960 if (OVERLAYP (o1)) 960 if (OVERLAYP (o1))
961 { 961 {