diff lisp/calc/calc.el @ 82438:3b91823ccbc5

(math-bignum-digit-length): Compute the appropriate value.
author Jay Belanger <jay.p.belanger@gmail.com>
date Fri, 17 Aug 2007 20:18:16 +0000
parents 08e51b086d98
children ebd3a386d39c aaccdab0ee26
line wrap: on
line diff
--- a/lisp/calc/calc.el	Fri Aug 17 19:57:14 2007 +0000
+++ b/lisp/calc/calc.el	Fri Aug 17 20:18:16 2007 +0000
@@ -2284,8 +2284,8 @@
 
 
 
-(defconst math-bignum-digit-length 4
-;  (truncate (/ (log10 (/ most-positive-fixnum 2)) 2))
+(defconst math-bignum-digit-length 
+  (truncate (/ (log10 (/ most-positive-fixnum 2)) 2))
   "The length of a \"digit\" in Calc bignums.
 If a big integer is of the form (bigpos N0 N1 ...), this is the
 length of the allowable Emacs integers N0, N1,...