]> git.eshelyaron.com Git - emacs.git/commitdiff
(math-bignum-digit-size,math-small-integer-size): Evaluate when compiled.
authorJay Belanger <jay.p.belanger@gmail.com>
Sun, 8 Jul 2007 00:14:16 +0000 (00:14 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Sun, 8 Jul 2007 00:14:16 +0000 (00:14 +0000)
lisp/calc/calc.el

index d85ec55d175e9878933db60be8d4875a78cbb530..8eebee90930e615688964fb721d862ea5f210a13 100644 (file)
@@ -2292,10 +2292,12 @@ length of the allowable Emacs integers N0, N1,...
 The value of 2*10^(2*MATH-BIGNUM-DIGIT-LENGTH) must be less than the
 largest Emacs integer.")
 
-(defconst math-bignum-digit-size (expt 10 math-bignum-digit-length)
+(defconst math-bignum-digit-size 
+  (eval-when-compile (expt 10 math-bignum-digit-length))
   "An upper bound for the size of the \"digit\"s in Calc bignums.")
 
-(defconst math-small-integer-size (expt 10 (* 2 math-bignum-digit-length))
+(defconst math-small-integer-size 
+  (eval-when-compile (expt 10 (* 2 math-bignum-digit-length)))
   "An upper bound for the size of \"small integer\"s in Calc.")