]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix minor ldexp issues
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 24 Mar 2015 18:42:53 +0000 (11:42 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 24 Mar 2015 18:43:21 +0000 (11:43 -0700)
* doc/lispref/numbers.texi (Float Basics): Improve ldexp documentation.
* src/floatfns.c (Fldexp): Require 2 args.  Avoid undefined behavior
if the exponent is out of 'int' range.  Improve documentation.
Fixes: bug#20185
doc/lispref/ChangeLog
doc/lispref/numbers.texi
src/ChangeLog
src/floatfns.c

index a546306f9e4287805b445d618109faf8df349411..9b1bbb357a5e1c1381afb421f996849570f6b8c8 100644 (file)
@@ -1,3 +1,7 @@
+2015-03-24  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * numbers.texi (Float Basics): Improve ldexp documentation.
+
 2015-03-23  Eli Zaretskii  <eliz@gnu.org>
 
        * commands.texi (Event Input Misc): Fix incorrect usage of @code.
index 8d1d3a798eb3e3be845c47571ee8f0f75283b2cb..7b4a0a6d407cf80ee64e5873a0f4950ce1784ffd 100644 (file)
@@ -265,9 +265,15 @@ If @var{x} is a NaN, then @var{s} is also a NaN@.
 If @var{x} is zero, then @var{e} is 0.
 @end defun
 
-@defun ldexp sig &optional exp
-This function returns a floating-point number corresponding to the
-significand @var{sig} and exponent @var{exp}.
+@defun ldexp s e
+Given a numeric significand @var{s} and an integer exponent @var{e},
+this function returns the floating point number
+@ifnottex
+@var{s} * 2**@var{e}.
+@end ifnottex
+@tex
+@math{s 2^e}.
+@end tex
 @end defun
 
 @defun copysign x1 x2
index 815c117308b25488b5985aec95809d95b36a1751..23f125c567d66516443bffd0e1337e70a26cfe39 100644 (file)
@@ -1,3 +1,10 @@
+2015-03-24  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Fix minor ldexp issues
+       * floatfns.c (Fldexp): Require 2 args.  Avoid undefined behavior
+       if the exponent is out of 'int' range.  Improve documentation.
+       Fixes: bug#20185
+
 2015-03-24  Daniel Colascione  <dancol@dancol.org>
 
        * process.c (Fprocess_running_child_p): Return number identifier of
index c68b9bd3a65658cf939024daea6de7ee3f75ce7c..072e85776b5231b172946c2ac56098d1ca0ace03 100644 (file)
@@ -185,14 +185,14 @@ If X is zero, both parts (SGNFCAND and EXP) are zero.  */)
   return Fcons (make_float (sgnfcand), make_number (exponent));
 }
 
-DEFUN ("ldexp", Fldexp, Sldexp, 1, 2, 0,
-       doc: /* Construct number X from significand SGNFCAND and exponent EXP.
-Returns the floating point value resulting from multiplying SGNFCAND
-(the significand) by 2 raised to the power of EXP (the exponent).   */)
+DEFUN ("ldexp", Fldexp, Sldexp, 2, 2, 0,
+       doc: /* Return X * 2**EXP, as a floating point number.
+EXP must be an integer.   */)
   (Lisp_Object sgnfcand, Lisp_Object exponent)
 {
   CHECK_NUMBER (exponent);
-  return make_float (ldexp (XFLOATINT (sgnfcand), XINT (exponent)));
+  int e = min (max (INT_MIN, XINT (exponent)), INT_MAX);
+  return make_float (ldexp (XFLOATINT (sgnfcand), e));
 }
 \f
 DEFUN ("exp", Fexp, Sexp, 1, 1, 0,