1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 06:20:43 -08:00

(CHECK_CHAR_TABLE): Don't accept nil.

This commit is contained in:
Richard M. Stallman 1995-10-31 00:01:29 +00:00
parent f8d35bf3d1
commit a97eb3f351

View file

@ -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) \