diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 2 |
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)) |