projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20d3d3a
)
; * src/timefns.c: Fix typo in previous change.
author
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 8 Mar 2020 23:49:32 +0000
(16:49 -0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 8 Mar 2020 23:49:32 +0000
(16:49 -0700)
src/timefns.c
patch
|
blob
|
history
diff --git
a/src/timefns.c
b/src/timefns.c
index 4079358fc5d5d66ac90497f008108769a1fbdb9f..553daf6e6a9689031ceddb9f2f60e7888ef7c419 100644
(file)
--- a/
src/timefns.c
+++ b/
src/timefns.c
@@
-616,7
+616,7
@@
frac_to_double (Lisp_Object numerator, Lisp_Object denominator)
(N * FLT_RADIX**SCALE) / D [or, if SCALE is negative, N / (D *
FLT_RADIX**-SCALE)] as a bignum, convert the bignum to double,
then divide the double by FLT_RADIX**SCALE. First scale N
-
N
(or scale D, if SCALE is negative) ... */
+ (or scale D, if SCALE is negative) ... */
ptrdiff_t scale = ddig - ndig + DBL_MANT_DIG + 1;
if (scale < 0)
{