(defconst math-bignum-digit-length
- (truncate (/ (log10 (/ most-positive-fixnum 2)) 2))
+ (eval-when-compile
+ (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,...
'( "2x" * 190 191 )
math-standard-opers))))
+(defvar math-expr-opers (math-standard-ops))
+
(defun math-standard-ops-p ()
(let ((meo (caar math-expr-opers)))
(and (stringp meo)
(string= meo "*"))))
-(defvar math-expr-opers (math-standard-ops))
-
(defun math-expr-ops ()
(if (math-standard-ops-p)
(math-standard-ops)