From: Stefan Monnier Date: Tue, 16 Nov 2004 15:32:33 +0000 (+0000) Subject: (NILP): Use EQ rather than XFASTINT. X-Git-Tag: ttn-vms-21-2-B4~3897 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3c7a4fa359d4c1a898df6f07494b6aa49babee08;p=emacs.git (NILP): Use EQ rather than XFASTINT. --- diff --git a/src/lisp.h b/src/lisp.h index bcaee43c558..44c8c109078 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1374,7 +1374,7 @@ typedef unsigned char UCHAR; /* Data type checking */ -#define NILP(x) (XFASTINT (x) == XFASTINT (Qnil)) +#define NILP(x) EQ (x, Qnil) #define GC_NILP(x) GC_EQ (x, Qnil) #define NUMBERP(x) (INTEGERP (x) || FLOATP (x))