]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/timefns.c: Fix typo in previous change.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 Mar 2020 23:49:32 +0000 (16:49 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 Mar 2020 23:49:32 +0000 (16:49 -0700)
src/timefns.c

index 4079358fc5d5d66ac90497f008108769a1fbdb9f..553daf6e6a9689031ceddb9f2f60e7888ef7c419 100644 (file)
@@ -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
-     (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)
     {