aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThien-Thi Nguyen2005-08-06 18:27:09 +0000
committerThien-Thi Nguyen2005-08-06 18:27:09 +0000
commitcac87e302e52bae078f22a786ca3d9e2407683c4 (patch)
treed6474ae024ee8a8e9d7a1522453e1b266b789cee /src
parent3731a85096c5e067f05d53573e559d63c8860f15 (diff)
downloademacs-cac87e302e52bae078f22a786ca3d9e2407683c4.tar.gz
emacs-cac87e302e52bae078f22a786ca3d9e2407683c4.zip
(Fexpt): Use floats for negative exponent.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/floatfns.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6d8608dde22..9ff58e7f5a8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12005-08-06 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * floatfns.c (Fexpt): Use floats for negative
4 exponent (computing a root). Reported by D Goel.
5
12005-08-02 Richard M. Stallman <rms@gnu.org> 62005-08-02 Richard M. Stallman <rms@gnu.org>
2 7
3 * frame.c (Fframe_char_width): Doc fix. 8 * frame.c (Fframe_char_width): Doc fix.
diff --git a/src/floatfns.c b/src/floatfns.c
index 529e7b76e39..cbcc0bfe520 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -460,7 +460,8 @@ DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0,
460 CHECK_NUMBER_OR_FLOAT (arg1); 460 CHECK_NUMBER_OR_FLOAT (arg1);
461 CHECK_NUMBER_OR_FLOAT (arg2); 461 CHECK_NUMBER_OR_FLOAT (arg2);
462 if (INTEGERP (arg1) /* common lisp spec */ 462 if (INTEGERP (arg1) /* common lisp spec */
463 && INTEGERP (arg2)) /* don't promote, if both are ints */ 463 && INTEGERP (arg2) /* don't promote, if both are ints, and */
464 && 0 <= XINT (arg2)) /* we are not computing the -ARG2 root */
464 { /* this can be improved by pre-calculating */ 465 { /* this can be improved by pre-calculating */
465 EMACS_INT acc, x, y; /* some binary powers of x then accumulating */ 466 EMACS_INT acc, x, y; /* some binary powers of x then accumulating */
466 Lisp_Object val; 467 Lisp_Object val;