diff options
| author | Jay Belanger | 2004-11-21 06:31:10 +0000 |
|---|---|---|
| committer | Jay Belanger | 2004-11-21 06:31:10 +0000 |
| commit | 802efb40069383cb5ead59284395ee8ea4a58d0d (patch) | |
| tree | e3dc433b17bdf93d57d5b06517986c18ac720bbf | |
| parent | 03cc1abafe2a906bb15a6355429fdf295ded1b09 (diff) | |
| download | emacs-802efb40069383cb5ead59284395ee8ea4a58d0d.tar.gz emacs-802efb40069383cb5ead59284395ee8ea4a58d0d.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 29320eda9af..2d2bc722885 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,61 @@ | |||
| 1 | 2004-11-21 Jay Belanger <belanger@truman.edu> | ||
| 2 | |||
| 3 | * calc/calc-prog.el (math-integral-cache-state, calc-lang) | ||
| 4 | (calc-original-buffer): Declare them. | ||
| 5 | |||
| 6 | (calc-user-formula-alist): New variable. | ||
| 7 | (calc-user-define-formula, calc-fix-user-formula) | ||
| 8 | (calc-user-define-composition, calc-finish-formula-edit): | ||
| 9 | Replace variable `alist' by declared variable. | ||
| 10 | |||
| 11 | (var-q0, var-q1, var-q2, var-q3, var-q4, var-q5, var-q6) | ||
| 12 | (var-q7, var-q7, var-q8, var-q9): Declare them. | ||
| 13 | (calc-kbd-push): Don't check to see if var-q0 through var-q9 | ||
| 14 | are bound. | ||
| 15 | |||
| 16 | (calcFunc-typeof): Replace undeclared variable by expression. | ||
| 17 | |||
| 18 | (math-exp-env): New variable. | ||
| 19 | (math-define-body, math-define-exp): Replace exp-env by declared | ||
| 20 | variable. | ||
| 21 | |||
| 22 | (math-define-exp): Replace misplaced variable by expression. | ||
| 23 | |||
| 24 | * calc/calcalg3.el (calc-curve-nvars, calc-curve-varnames) | ||
| 25 | (calc-curve-model, calc-curve-coefnames): New variables. | ||
| 26 | (calc-curve-fit, calc-get-fit-variables): Replace variables nvars, | ||
| 27 | varnames, model and coefnames by declared variables. | ||
| 28 | |||
| 29 | (math-root-widen): New variable. | ||
| 30 | (math-search-root, math-find-root): Replace variable root-widen by | ||
| 31 | declared variable. | ||
| 32 | |||
| 33 | (var-DUMMY): Declare it. | ||
| 34 | (math-root-vars, math-min-vars): Move the declarations to earlier in | ||
| 35 | the file. | ||
| 36 | |||
| 37 | (math-brent-min): Make d a local variable. | ||
| 38 | |||
| 39 | (math-find-minimum): Replace non-existent variable. | ||
| 40 | |||
| 41 | (math-ninteg-romberg): Remove unnecessary variable. | ||
| 42 | |||
| 43 | (math-ninteg-temp): New variable. | ||
| 44 | (math-ninteg-romberg, math-ninteg-midpoint): Replace variable | ||
| 45 | integ-temp by declared variable. | ||
| 46 | |||
| 47 | (math-fit-first-var, math-fit-first-coef, math-fit-new-coefs): | ||
| 48 | New variables. | ||
| 49 | (math-general-fit): Replace variables first-var, first-coef and | ||
| 50 | new-coefs by declared variables. | ||
| 51 | (calcFunc-fitvar): Replace variable first-var by declared variable. | ||
| 52 | (calcFunc-fitparam): Replace variable first-coef by declared variable. | ||
| 53 | (calcFunc-fitdummy): Replace variable new-coefs by declared variable. | ||
| 54 | |||
| 55 | (math-all-vars-vars, math-all-vars-found): New variables. | ||
| 56 | (math-all-vars-in, math-all-vars-rec): Replace variables vars and | ||
| 57 | found by declared variable math-all-vars-vars. | ||
| 58 | |||
| 1 | 2004-11-20 Luc Teirlinck <teirllm@auburn.edu> | 59 | 2004-11-20 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 60 | ||
| 3 | * emacs-lisp/cust-print.el (custom-printers): Use `defvar' instead | 61 | * emacs-lisp/cust-print.el (custom-printers): Use `defvar' instead |