diff options
| author | Jay Belanger | 2007-11-28 03:03:52 +0000 |
|---|---|---|
| committer | Jay Belanger | 2007-11-28 03:03:52 +0000 |
| commit | 58dddf38f03de9b33ec26110f2a80185fa59e377 (patch) | |
| tree | d45c262265fa73790702ec6baaee9c19e41e2fc1 /lisp | |
| parent | 0dc7a8bc760e2044413969a72c8abf2484455c74 (diff) | |
| download | emacs-58dddf38f03de9b33ec26110f2a80185fa59e377.tar.gz emacs-58dddf38f03de9b33ec26110f2a80185fa59e377.zip | |
(math-sqrt-raw, math-map-vec, math-make-frac): Declare as functions.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/calc/calc-ext.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el index 86294449995..140335a3d02 100644 --- a/lisp/calc/calc-ext.el +++ b/lisp/calc/calc-ext.el | |||
| @@ -43,6 +43,7 @@ | |||
| 43 | (declare-function calc-embedded-var-change "calc-embed" (var &optional buf)) | 43 | (declare-function calc-embedded-var-change "calc-embed" (var &optional buf)) |
| 44 | (declare-function math-mul-float "calc-arith" (a b)) | 44 | (declare-function math-mul-float "calc-arith" (a b)) |
| 45 | (declare-function math-arctan-raw "calc-math" (x)) | 45 | (declare-function math-arctan-raw "calc-math" (x)) |
| 46 | (declare-function math-sqrt-raw "calc-math" (a &optional guess)) | ||
| 46 | (declare-function math-sqrt-float "calc-math" (a &optional guess)) | 47 | (declare-function math-sqrt-float "calc-math" (a &optional guess)) |
| 47 | (declare-function math-exp-minus-1-raw "calc-math" (x)) | 48 | (declare-function math-exp-minus-1-raw "calc-math" (x)) |
| 48 | (declare-function math-normalize-polar "calc-cplx" (a)) | 49 | (declare-function math-normalize-polar "calc-cplx" (a)) |
| @@ -70,6 +71,9 @@ | |||
| 70 | (declare-function math-format-bignum-hex "calc-bin" (a)) | 71 | (declare-function math-format-bignum-hex "calc-bin" (a)) |
| 71 | (declare-function math-format-bignum-radix "calc-bin" (a)) | 72 | (declare-function math-format-bignum-radix "calc-bin" (a)) |
| 72 | (declare-function math-compute-max-digits "calc-bin" (w r)) | 73 | (declare-function math-compute-max-digits "calc-bin" (w r)) |
| 74 | (declare-function math-map-vec "calc-vec" (f a)) | ||
| 75 | (declare-function math-make-frac "calc-frac" (num den)) | ||
| 76 | |||
| 73 | 77 | ||
| 74 | (defvar math-simplifying nil) | 78 | (defvar math-simplifying nil) |
| 75 | (defvar math-living-dangerously nil) ; true if unsafe simplifications are okay. | 79 | (defvar math-living-dangerously nil) ; true if unsafe simplifications are okay. |