From: Richard M. Stallman Date: Fri, 7 Apr 1995 05:19:14 +0000 (+0000) Subject: (internal_equal): Use XMISCTYPE. X-Git-Tag: emacs-19.34~4618 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=81d1fba6c9224cc3aa6636bfc9779381811270e1;p=emacs.git (internal_equal): Use XMISCTYPE. --- 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) goto tail_recurse; case Lisp_Misc: - if (XMISC (o1)->type != XMISC (o2)->type) + if (XMISCTYPE (o1) != XMISCTYPE (o2)) return 0; if (OVERLAYP (o1)) {