diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 2c20b483cad..5ecc48b025c 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2506,7 +2506,7 @@ INTEGERP (Lisp_Object x) | |||
| 2506 | return FIXNUMP (x) || BIGNUMP (x); | 2506 | return FIXNUMP (x) || BIGNUMP (x); |
| 2507 | } | 2507 | } |
| 2508 | 2508 | ||
| 2509 | /* Return a Lisp integer with value taken from n. */ | 2509 | /* Return a Lisp integer with value taken from N. */ |
| 2510 | INLINE Lisp_Object | 2510 | INLINE Lisp_Object |
| 2511 | make_int (intmax_t n) | 2511 | make_int (intmax_t n) |
| 2512 | { | 2512 | { |
| @@ -3329,6 +3329,7 @@ extern ptrdiff_t bignum_bufsize (Lisp_Object, int); | |||
| 3329 | extern ptrdiff_t bignum_to_c_string (char *, ptrdiff_t, Lisp_Object, int); | 3329 | extern ptrdiff_t bignum_to_c_string (char *, ptrdiff_t, Lisp_Object, int); |
| 3330 | extern Lisp_Object bignum_to_string (Lisp_Object, int); | 3330 | extern Lisp_Object bignum_to_string (Lisp_Object, int); |
| 3331 | extern Lisp_Object make_bignum_str (char const *, int); | 3331 | extern Lisp_Object make_bignum_str (char const *, int); |
| 3332 | extern Lisp_Object make_neg_biguint (uintmax_t); | ||
| 3332 | extern Lisp_Object double_to_integer (double); | 3333 | extern Lisp_Object double_to_integer (double); |
| 3333 | 3334 | ||
| 3334 | /* Converthe integer NUM to *N. Return true if successful, false | 3335 | /* Converthe integer NUM to *N. Return true if successful, false |
| @@ -3839,7 +3840,7 @@ LOADHIST_ATTACH (Lisp_Object x) | |||
| 3839 | extern int openp (Lisp_Object, Lisp_Object, Lisp_Object, | 3840 | extern int openp (Lisp_Object, Lisp_Object, Lisp_Object, |
| 3840 | Lisp_Object *, Lisp_Object, bool); | 3841 | Lisp_Object *, Lisp_Object, bool); |
| 3841 | enum { S2N_IGNORE_TRAILING = 1 }; | 3842 | enum { S2N_IGNORE_TRAILING = 1 }; |
| 3842 | extern Lisp_Object string_to_number (char const *, int, int); | 3843 | extern Lisp_Object string_to_number (char const *, int, ptrdiff_t *); |
| 3843 | extern void map_obarray (Lisp_Object, void (*) (Lisp_Object, Lisp_Object), | 3844 | extern void map_obarray (Lisp_Object, void (*) (Lisp_Object, Lisp_Object), |
| 3844 | Lisp_Object); | 3845 | Lisp_Object); |
| 3845 | extern void dir_warning (const char *, Lisp_Object); | 3846 | extern void dir_warning (const char *, Lisp_Object); |