aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2004-11-16 15:32:33 +0000
committerStefan Monnier2004-11-16 15:32:33 +0000
commit3c7a4fa359d4c1a898df6f07494b6aa49babee08 (patch)
tree0a60ed489876e5c4a3d414ae6268046d66c2525d /src
parent27c35b9521d5c9e58d584254ab93d6c53e457a2e (diff)
downloademacs-3c7a4fa359d4c1a898df6f07494b6aa49babee08.tar.gz
emacs-3c7a4fa359d4c1a898df6f07494b6aa49babee08.zip
(NILP): Use EQ rather than XFASTINT.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
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;
1374 1374
1375/* Data type checking */ 1375/* Data type checking */
1376 1376
1377#define NILP(x) (XFASTINT (x) == XFASTINT (Qnil)) 1377#define NILP(x) EQ (x, Qnil)
1378#define GC_NILP(x) GC_EQ (x, Qnil) 1378#define GC_NILP(x) GC_EQ (x, Qnil)
1379 1379
1380#define NUMBERP(x) (INTEGERP (x) || FLOATP (x)) 1380#define NUMBERP(x) (INTEGERP (x) || FLOATP (x))