diff options
| author | Philipp Stephani | 2019-04-18 23:29:20 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2019-04-18 23:29:20 +0200 |
| commit | ee4ba5c8fe42311f676f4553504c3f61a3eb0168 (patch) | |
| tree | 0223c70862e3722e4055e56bd2fc437203d7d5ad /src | |
| parent | 856806d30fb16dbe695633a2dbe35a8fb4348998 (diff) | |
| download | emacs-ee4ba5c8fe42311f676f4553504c3f61a3eb0168.tar.gz emacs-ee4ba5c8fe42311f676f4553504c3f61a3eb0168.zip | |
; * src/lisp.h (integer_to_intmax): Fix typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 25d0a3d6ac1..0da20375228 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3475,7 +3475,7 @@ extern Lisp_Object make_bignum_str (char const *, int); | |||
| 3475 | extern Lisp_Object make_neg_biguint (uintmax_t); | 3475 | extern Lisp_Object make_neg_biguint (uintmax_t); |
| 3476 | extern Lisp_Object double_to_integer (double); | 3476 | extern Lisp_Object double_to_integer (double); |
| 3477 | 3477 | ||
| 3478 | /* Converthe integer NUM to *N. Return true if successful, false | 3478 | /* Convert the integer NUM to *N. Return true if successful, false |
| 3479 | (possibly setting *N) otherwise. */ | 3479 | (possibly setting *N) otherwise. */ |
| 3480 | INLINE bool | 3480 | INLINE bool |
| 3481 | integer_to_intmax (Lisp_Object num, intmax_t *n) | 3481 | integer_to_intmax (Lisp_Object num, intmax_t *n) |