Mercurial > emacs
changeset 86526:8eb59808e53f
(math-sqrt-raw, math-map-vec, math-make-frac): Declare as functions.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Wed, 28 Nov 2007 03:03:52 +0000 |
parents | 2368adb145a5 |
children | 682e5662f715 |
files | lisp/calc/calc-ext.el |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/calc/calc-ext.el Wed Nov 28 00:25:23 2007 +0000 +++ b/lisp/calc/calc-ext.el Wed Nov 28 03:03:52 2007 +0000 @@ -43,6 +43,7 @@ (declare-function calc-embedded-var-change "calc-embed" (var &optional buf)) (declare-function math-mul-float "calc-arith" (a b)) (declare-function math-arctan-raw "calc-math" (x)) +(declare-function math-sqrt-raw "calc-math" (a &optional guess)) (declare-function math-sqrt-float "calc-math" (a &optional guess)) (declare-function math-exp-minus-1-raw "calc-math" (x)) (declare-function math-normalize-polar "calc-cplx" (a)) @@ -70,6 +71,9 @@ (declare-function math-format-bignum-hex "calc-bin" (a)) (declare-function math-format-bignum-radix "calc-bin" (a)) (declare-function math-compute-max-digits "calc-bin" (w r)) +(declare-function math-map-vec "calc-vec" (f a)) +(declare-function math-make-frac "calc-frac" (num den)) + (defvar math-simplifying nil) (defvar math-living-dangerously nil) ; true if unsafe simplifications are okay.