aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-10-31 00:01:29 +0000
committerRichard M. Stallman1995-10-31 00:01:29 +0000
commita97eb3f351a0ea70ae5a7c51458163bc1fef21e7 (patch)
treeb92f7ef255d6ee0562d24a3a0b99c60a17937ec1 /src
parentf8d35bf3d139cdec1776761593dfa243339472c2 (diff)
downloademacs-a97eb3f351a0ea70ae5a7c51458163bc1fef21e7.tar.gz
emacs-a97eb3f351a0ea70ae5a7c51458163bc1fef21e7.zip
(CHECK_CHAR_TABLE): Don't accept nil.
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 2a1c5a3c6a3..3a445446ec0 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -992,7 +992,7 @@ typedef unsigned char UCHAR;
992 do { if (!SYMBOLP ((x))) x = wrong_type_argument (Qsymbolp, (x)); } while (0) 992 do { if (!SYMBOLP ((x))) x = wrong_type_argument (Qsymbolp, (x)); } while (0)
993 993
994#define CHECK_CHAR_TABLE(x, i) \ 994#define CHECK_CHAR_TABLE(x, i) \
995 do { if (!CHAR_TABLE_P ((x)) && !NILP (x)) \ 995 do { if (!CHAR_TABLE_P ((x))) \
996 x = wrong_type_argument (Qchar_table_p, (x)); } while (0) 996 x = wrong_type_argument (Qchar_table_p, (x)); } while (0)
997 997
998#define CHECK_VECTOR(x, i) \ 998#define CHECK_VECTOR(x, i) \