diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-08-20 17:34:03 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-08-20 17:36:46 -0700 |
commit | 396ed88a50fba95cd3b989965defef0130a42c42 (patch) | |
tree | 95b03c537acf8d65b6d894a283eccf9f1d31a1e8 /src/bignum.h | |
parent | 7e2090ee80c9099ee953392444e1d73d10e973d4 (diff) | |
download | emacs-396ed88a50fba95cd3b989965defef0130a42c42.tar.gz |
Avoid some excess precision in time arithmetic
* doc/misc/emacs-mime.texi (time-date):
Adjust example to match new behavior.
* etc/NEWS: Mention this.
* lisp/calendar/time-date.el (decoded-time-add)
(decoded-time--alter-second):
Don’t lose underestimate precision of seconds component.
* src/bignum.c (mpz): Grow by 1.
* src/timefns.c (trillion_factor): New function.
(timeform_sub_ps_p): Remove.
(time_arith): Avoid unnecessarily-large hz, by reducing the hz
to a value no worse than the worse hz of the two arguments.
The result is always exact unless an error is signaled.
* test/src/timefns-tests.el (timefns-tests--decode-time):
New function.
(format-time-string-with-zone): Test (decode-time LOOK ZONE t)
resolution as well as its numeric value.
Diffstat (limited to 'src/bignum.h')
-rw-r--r-- | src/bignum.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bignum.h b/src/bignum.h index a9c7a0a09a8..9a32ffb0374 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -41,7 +41,7 @@ struct Lisp_Bignum mpz_t value; } GCALIGNED_STRUCT; -extern mpz_t mpz[4]; +extern mpz_t mpz[5]; extern void init_bignum (void); extern Lisp_Object make_integer_mpz (void); |