]> git.eshelyaron.com Git - emacs.git/commitdiff
(math-small-factorial-table): Remove `eval-when-compile's.
authorJay Belanger <jay.p.belanger@gmail.com>
Fri, 17 Aug 2007 20:19:11 +0000 (20:19 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Fri, 17 Aug 2007 20:19:11 +0000 (20:19 +0000)
lisp/calc/calc-comb.el

index 90a0a20f5d600777fee239992563d5044f64c322..b6182cd710eb4d47cd2853fea1557c2e1d96df32 100644 (file)
 ;;; Factorial and related functions.
 
 (defconst math-small-factorial-table
-  (eval-when-compile
-    (vector 1 1 2 6 24 120 720 5040 40320 362880 3628800 39916800
-            (math-read-number-simple "479001600")
-            (math-read-number-simple "6227020800")
-            (math-read-number-simple "87178291200")
-            (math-read-number-simple "1307674368000")
-            (math-read-number-simple "20922789888000")
-            (math-read-number-simple "355687428096000")
-            (math-read-number-simple "6402373705728000")
-            (math-read-number-simple "121645100408832000")
-            (math-read-number-simple "2432902008176640000"))))
+  (vector 1 1 2 6 24 120 720 5040 40320 362880 3628800 39916800
+          (math-read-number-simple "479001600")
+          (math-read-number-simple "6227020800")
+          (math-read-number-simple "87178291200")
+          (math-read-number-simple "1307674368000")
+          (math-read-number-simple "20922789888000")
+          (math-read-number-simple "355687428096000")
+          (math-read-number-simple "6402373705728000")
+          (math-read-number-simple "121645100408832000")
+          (math-read-number-simple "2432902008176640000")))
 
 (defun calcFunc-fact (n)   ; [I I] [F F] [Public]
   (let (temp)