Function: math-with-extra-prec
math-with-extra-prec is a macro defined in calc-macs.el.gz.
Signature
(math-with-extra-prec DELTA &rest BODY)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-macs.el.gz
(defmacro math-with-extra-prec (delta &rest body)
`(math-normalize
(let ((calc-internal-prec (+ calc-internal-prec ,delta)))
,@body)))