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:
parent
f8d35bf3d1
commit
a97eb3f351
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue