summaryrefslogtreecommitdiff
path: root/src/lisp.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-10-31 00:01:29 +0000
committerRichard M. Stallman <rms@gnu.org>1995-10-31 00:01:29 +0000
commit897ef8daba8512b0a82be19564140dc906bc578d (patch)
tree3bbeb161627276f90514dae5c48e28505dbeba6f /src/lisp.h
parenta20fe11b35c371b5e563b86bb5bcf20438e576ec (diff)
downloademacs-897ef8daba8512b0a82be19564140dc906bc578d.tar.gz
(CHECK_CHAR_TABLE): Don't accept nil.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 2a1c5a3c6a3..3a445446ec0 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -992,7 +992,7 @@ typedef unsigned char UCHAR;
do { if (!SYMBOLP ((x))) x = wrong_type_argument (Qsymbolp, (x)); } while (0)
#define CHECK_CHAR_TABLE(x, i) \
- do { if (!CHAR_TABLE_P ((x)) && !NILP (x)) \
+ do { if (!CHAR_TABLE_P ((x))) \
x = wrong_type_argument (Qchar_table_p, (x)); } while (0)
#define CHECK_VECTOR(x, i) \