diff options
Diffstat (limited to 'src/bignum.c')
-rw-r--r-- | src/bignum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bignum.c b/src/bignum.c index 14c4cdb82ac..4118601e108 100644 --- a/src/bignum.c +++ b/src/bignum.c @@ -271,7 +271,7 @@ bignum_to_uintmax (Lisp_Object x) /* Yield an upper bound on the buffer size needed to contain a C string representing the NUM in base BASE. This includes any - preceding '-' and the terminating null. */ + preceding '-' and the terminating NUL. */ static ptrdiff_t mpz_bufsize (mpz_t const num, int base) { @@ -336,7 +336,7 @@ bignum_to_string (Lisp_Object num, int base) /* Create a bignum by scanning NUM, with digits in BASE. NUM must consist of an optional '-', a nonempty sequence - of base-BASE digits, and a terminating null byte, and + of base-BASE digits, and a terminating NUL byte, and the represented number must not be in fixnum range. */ Lisp_Object |