summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2007-08-17 20:20:29 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2007-08-17 20:20:29 +0000
commit82472f457c8501bcf45484cfde2e56ec07d9f2af (patch)
treefa4dc246c0cab7af7fc8a84b8a612af95f010074 /lisp
parentc6254f53a5d742667506b8822c8ccda521eae411 (diff)
downloademacs-82472f457c8501bcf45484cfde2e56ec07d9f2af.tar.gz
(math-approx-ln-10, math-approx-ln-2): Remove `eval-when-compile's.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/calc/calc-math.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/calc/calc-math.el b/lisp/calc/calc-math.el
index a4dad15c14e..3e4743d58ae 100644
--- a/lisp/calc/calc-math.el
+++ b/lisp/calc/calc-math.el
@@ -1794,16 +1794,14 @@ If this can't be done, return NIL."
(math-lnp1-series nextsum (1+ n) nextx x))))
(defconst math-approx-ln-10
- (eval-when-compile
- (math-read-number-simple "2.302585092994045684018"))
+ (math-read-number-simple "2.302585092994045684018")
"An approximation for ln(10).")
(math-defcache math-ln-10 math-approx-ln-10
(math-ln-raw-2 '(float 1 1)))
(defconst math-approx-ln-2
- (eval-when-compile
- (math-read-number-simple "0.693147180559945309417"))
+ (math-read-number-simple "0.693147180559945309417")
"An approximation for ln(2).")
(math-defcache math-ln-2 math-approx-ln-2