mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
(CHECK_CHAR_TABLE): Don't accept nil.
This commit is contained in:
parent
f8d35bf3d1
commit
a97eb3f351
@ -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) \
|
||||
|
Loading…
Reference in New Issue
Block a user