* src/lisp.h (CHECK_INTEGER): Fix the predicate. (Bug#56856)
This commit is contained in:
parent
eb11dae499
commit
78759ddcb0
1 changed files with 1 additions and 1 deletions
|
@ -2998,7 +2998,7 @@ CHECK_NUMBER (Lisp_Object x)
|
|||
INLINE void
|
||||
CHECK_INTEGER (Lisp_Object x)
|
||||
{
|
||||
CHECK_TYPE (INTEGERP (x), Qnumberp, x);
|
||||
CHECK_TYPE (INTEGERP (x), Qintegerp, x);
|
||||
}
|
||||
|
||||
INLINE void
|
||||
|
|
Loading…
Add table
Reference in a new issue