aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani2019-04-18 23:29:20 +0200
committerPhilipp Stephani2019-04-18 23:29:20 +0200
commitee4ba5c8fe42311f676f4553504c3f61a3eb0168 (patch)
tree0223c70862e3722e4055e56bd2fc437203d7d5ad /src
parent856806d30fb16dbe695633a2dbe35a8fb4348998 (diff)
downloademacs-ee4ba5c8fe42311f676f4553504c3f61a3eb0168.tar.gz
emacs-ee4ba5c8fe42311f676f4553504c3f61a3eb0168.zip
; * src/lisp.h (integer_to_intmax): Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h2
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);
3475extern Lisp_Object make_neg_biguint (uintmax_t); 3475extern Lisp_Object make_neg_biguint (uintmax_t);
3476extern Lisp_Object double_to_integer (double); 3476extern 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. */
3480INLINE bool 3480INLINE bool
3481integer_to_intmax (Lisp_Object num, intmax_t *n) 3481integer_to_intmax (Lisp_Object num, intmax_t *n)