Mercurial > emacs
changeset 13357:74a891e3ef44
(CHECK_CHAR_TABLE): Don't accept nil.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 31 Oct 1995 00:01:29 +0000 |
parents | a2a68cba7996 |
children | febf5ce4532c |
files | src/lisp.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lisp.h Tue Oct 31 00:01:15 1995 +0000 +++ b/src/lisp.h Tue Oct 31 00:01:29 1995 +0000 @@ -992,7 +992,7 @@ 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) \