From 3c7a4fa359d4c1a898df6f07494b6aa49babee08 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 16 Nov 2004 15:32:33 +0000 Subject: [PATCH] (NILP): Use EQ rather than XFASTINT. --- src/lisp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.39.2