diff options
| author | Glenn Morris | 2007-11-27 07:56:49 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-27 07:56:49 +0000 |
| commit | 996d0694f863f83d07c48613b04aec86a98592bf (patch) | |
| tree | 947ed9b5f293d2fef85c3780b5ccfad5fe3772d1 | |
| parent | 7291159e257595ede482684563d5146b13f00384 (diff) | |
| download | emacs-996d0694f863f83d07c48613b04aec86a98592bf.tar.gz emacs-996d0694f863f83d07c48613b04aec86a98592bf.zip | |
(math-map-binop): Fix declaration.
| -rw-r--r-- | lisp/calc/calc-nlfit.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-nlfit.el b/lisp/calc/calc-nlfit.el index 2d84b1570ae..4019058a567 100644 --- a/lisp/calc/calc-nlfit.el +++ b/lisp/calc/calc-nlfit.el | |||
| @@ -65,7 +65,7 @@ | |||
| 65 | 65 | ||
| 66 | ;; Declare functions which are defined elsewhere. | 66 | ;; Declare functions which are defined elsewhere. |
| 67 | (declare-function calc-get-fit-variables "calcalg3" (nv nc &optional defv defc with-y homog)) | 67 | (declare-function calc-get-fit-variables "calcalg3" (nv nc &optional defv defc with-y homog)) |
| 68 | (declare-function math-map-binop "calclalg3" (binop args1 args2)) | 68 | (declare-function math-map-binop "calcalg3" (binop args1 args2)) |
| 69 | 69 | ||
| 70 | (defun math-nlfit-least-squares (xdata ydata &optional sdata sigmas) | 70 | (defun math-nlfit-least-squares (xdata ydata &optional sdata sigmas) |
| 71 | "Return the parameters A and B for the best least squares fit y=a+bx." | 71 | "Return the parameters A and B for the best least squares fit y=a+bx." |