aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-12-19 22:06:32 +0000
committerRichard M. Stallman2006-12-19 22:06:32 +0000
commitd99ccfc828675a2e4c14c8fa02797cd3f01c472c (patch)
treebecc7d4d6a68f2dae89a9a3f07b7e1a98f9b1a9c
parent4b411bfe7a3ac18cefb12107b2c188225ea99e64 (diff)
downloademacs-d99ccfc828675a2e4c14c8fa02797cd3f01c472c.tar.gz
emacs-d99ccfc828675a2e4c14c8fa02797cd3f01c472c.zip
(History and Acknowledgements): Recognize that Emacs
now does have floating point.
-rw-r--r--man/ChangeLog5
-rw-r--r--man/calc.texi3
2 files changed, 7 insertions, 1 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 96f88717e5c..32836432ddf 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,8 @@
12006-12-19 Richard Stallman <rms@gnu.org>
2
3 * calc.texi (History and Acknowledgements): Recognize that Emacs
4 now does have floating point.
5
12006-12-19 Kim F. Storm <storm@cua.dk> 62006-12-19 Kim F. Storm <storm@cua.dk>
2 7
3 * major.texi (Choosing Modes): Describe match-function elements for 8 * major.texi (Choosing Modes): Describe match-function elements for
diff --git a/man/calc.texi b/man/calc.texi
index 6f3082fb776..d38becd46d9 100644
--- a/man/calc.texi
+++ b/man/calc.texi
@@ -1539,7 +1539,8 @@ To make a long story short, Emacs Lisp turned out to be a distressingly
1539solid implementation of Lisp, and the humble task of calculating 1539solid implementation of Lisp, and the humble task of calculating
1540turned out to be more open-ended than one might have expected. 1540turned out to be more open-ended than one might have expected.
1541 1541
1542Emacs Lisp doesn't have built-in floating point math, so it had to be 1542Emacs Lisp didn't have built-in floating point math (now it does), so
1543this had to be
1543simulated in software. In fact, Emacs integers will only comfortably 1544simulated in software. In fact, Emacs integers will only comfortably
1544fit six decimal digits or so---not enough for a decent calculator. So 1545fit six decimal digits or so---not enough for a decent calculator. So
1545I had to write my own high-precision integer code as well, and once I had 1546I had to write my own high-precision integer code as well, and once I had