aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorThien-Thi Nguyen <[email protected]>2005-08-14 10:03:15 +0000
committerThien-Thi Nguyen <[email protected]>2005-08-14 10:03:15 +0000
commitc1a4c74d400c9b90c94599beba474abeeba34f7e (patch)
tree93ba7d8ee274c2df8abe6bb018786f99b443851c /etc
parentc09c82f9b37634c791a397f832c995d59906ba58 (diff)
(Lisp Changes in Emacs 22.1, General Lisp changes):
Mention `expt' handling of negative exponent to return float.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index d9367c5423..856888f123 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3209,6 +3209,10 @@ the command `undefined'. (In earlier Emacs versions, it used
** General Lisp changes:
+*** The function `expt' handles negative exponents differently.
+The value for `(expt A B)', if both A and B are integers and B is
+negative, is now a float. For example: (expt 2 -2) => 0.25.
+
+++
*** The function `eql' is now available without requiring the CL package.