changeset 82443:5d2017af3365

(math-approx-ln-10, math-approx-ln-2): Remove `eval-when-compile's.
author Jay Belanger <jay.p.belanger@gmail.com>
date Fri, 17 Aug 2007 20:20:29 +0000
parents a2c869327160
children 364ec6a9a30b
files lisp/calc/calc-math.el
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/calc/calc-math.el	Fri Aug 17 20:20:03 2007 +0000
+++ b/lisp/calc/calc-math.el	Fri Aug 17 20:20:29 2007 +0000
@@ -1794,16 +1794,14 @@
       (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