mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-24 13:32:41 -08:00
* 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
Add a link
Reference in a new issue