]> code.delx.au - gnu-emacs/blobdiff - lisp/calc/calc-bin.el
Merge from emacs--rel--22
[gnu-emacs] / lisp / calc / calc-bin.el
index 2dde6216a0643a2a4d2d78e50a7aae4525b81dc3..0f219272a5fd455d62d3ce525d82ebd11410d7f6 100644 (file)
@@ -10,7 +10,7 @@
 
 ;; GNU Emacs is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 2, or (at your option)
+;; the Free Software Foundation; either version 3, or (at your option)
 ;; any later version.
 
 ;; GNU Emacs is distributed in the hope that it will be useful,
 
 ;;; 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.