# HG changeset patch # User Jay Belanger # Date 1187381925 0 # Node ID d45f82f9c8f3332d582c9ff8e2cbbe67d894d5f5 # Parent 3b91823ccbc50b742385f7a72322ac6615441894 (math-bignum-logb-digit-size,math-bignum-digit-power-of-two): Remove `eval-when-compile's. diff -r 3b91823ccbc5 -r d45f82f9c8f3 lisp/calc/calc-bin.el --- a/lisp/calc/calc-bin.el Fri Aug 17 20:18:16 2007 +0000 +++ b/lisp/calc/calc-bin.el Fri Aug 17 20:18:45 2007 +0000 @@ -34,13 +34,13 @@ ;;; 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.