]> git.eshelyaron.com Git - emacs.git/commitdiff
(math-bignum-logb-digit-size,math-bignum-digit-power-of-two):
authorJay Belanger <jay.p.belanger@gmail.com>
Fri, 17 Aug 2007 20:18:45 +0000 (20:18 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Fri, 17 Aug 2007 20:18:45 +0000 (20:18 +0000)
Remove `eval-when-compile's.

lisp/calc/calc-bin.el

index c58d0addd775cf25d6f7df8688ff2fc5a59770f8..0f219272a5fd455d62d3ce525d82ebd11410d7f6 100644 (file)
 
 ;;; Some useful numbers
 (defconst math-bignum-logb-digit-size
-  (eval-when-compile (logb math-bignum-digit-size))
+  (logb math-bignum-digit-size)
   "The logb of the size of a bignum digit.
 This is the largest value of B such that 2^B is less than 
 the size of a Calc bignum digit.")
 
 (defconst math-bignum-digit-power-of-two
-  (eval-when-compile (expt 2 (logb math-bignum-digit-size)))
+  (expt 2 (logb math-bignum-digit-size))
   "The largest power of 2 less than the size of a Calc bignum digit.")
 
 ;;; b-prefix binary commands.