aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 9047d217249..6726d69fced 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2772,7 +2772,7 @@ INLINE bool
2772NATNUMP (Lisp_Object x) 2772NATNUMP (Lisp_Object x)
2773{ 2773{
2774 if (BIGNUMP (x)) 2774 if (BIGNUMP (x))
2775 return mpz_cmp_si (XBIGNUM (x)->value, 0) >= 0; 2775 return mpz_sgn (XBIGNUM (x)->value) >= 0;
2776 return FIXNUMP (x) && 0 <= XFIXNUM (x); 2776 return FIXNUMP (x) && 0 <= XFIXNUM (x);
2777} 2777}
2778INLINE bool 2778INLINE bool