diff options
| author | Colin Walters | 2001-11-19 07:44:56 +0000 |
|---|---|---|
| committer | Colin Walters | 2001-11-19 07:44:56 +0000 |
| commit | 3132f345bc1ab68e4425178266e3d4ad1b2ccd02 (patch) | |
| tree | 43339ccf578fb555b44dd0c84aa0e7b0389dc8b0 /lisp/ChangeLog | |
| parent | f269b73e3ea3de8c539d544fd0310b63fc029f20 (diff) | |
| download | emacs-3132f345bc1ab68e4425178266e3d4ad1b2ccd02.tar.gz emacs-3132f345bc1ab68e4425178266e3d4ad1b2ccd02.zip | |
Change all toplevel `setq' forms to `defvar' forms, and move them
before their first use. Use `when', `unless'. Remove trailing
periods from error forms. Add description and headers suggested by
Emacs Lisp coding conventions.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b4fbae354eb..b5b244a4e61 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,54 @@ | |||
| 1 | 2001-11-19 Colin Walters <walters@verbum.org> | ||
| 2 | |||
| 3 | * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper) | ||
| 4 | (math-showing-full-precision, math-with-extra-prec, math-working) | ||
| 5 | (calc-with-default-simplification) | ||
| 6 | (calc-with-trail-buffer): Use backtick. | ||
| 7 | (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp) | ||
| 8 | (Math-looks-negp, Math-posp, Math-integerp, Math-natnump) | ||
| 9 | (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp) | ||
| 10 | (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp) | ||
| 11 | (Math-integer-neg, Math-equal, Math-lessp, Math-primp) | ||
| 12 | (Math-num-integerp, Math-bignum-test, Math-equal-int) | ||
| 13 | (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'. | ||
| 14 | (calc-record-compilation-date-macro): Deleted. Callers updated. | ||
| 15 | (math-format-radix-digit): Move to calc-bin.el. | ||
| 16 | |||
| 17 | * calc/calc.el (calc-record-compilation-date): Remove. | ||
| 18 | (calc-bug-address): Update. | ||
| 19 | (calc-settings-file): Use `user-init-file'. | ||
| 20 | |||
| 21 | * calc/calc-mode.el (calc-settings-file-name, calc-save-modes): | ||
| 22 | Handle null `calc-settings-file'. | ||
| 23 | |||
| 24 | * calc/calc-frac.el (calc-over-notation): Use `completing-read'. | ||
| 25 | * calc/calc-keypd.el (calc-keypad-mode): New. | ||
| 26 | (calc-do-keypad): Use it. | ||
| 27 | (calc-keypad-map): Move into `calc-keypad-mode'. | ||
| 28 | |||
| 29 | * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote | ||
| 30 | to defalias argument. | ||
| 31 | |||
| 32 | * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc) | ||
| 33 | (calcFunc-floor): Ditto. | ||
| 34 | |||
| 35 | * calc-units.el (calcFunc-usimplify): Ditto. | ||
| 36 | |||
| 37 | * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el | ||
| 38 | * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el | ||
| 39 | * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el | ||
| 40 | * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el | ||
| 41 | * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el | ||
| 42 | * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el | ||
| 43 | * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el | ||
| 44 | * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el | ||
| 45 | * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el | ||
| 46 | * calc-help.el, calc-math.el, calc-rules.el, calc-units.el | ||
| 47 | * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms, | ||
| 48 | and move them before their first use. Use `when', `unless'. | ||
| 49 | Remove trailing periods from error forms. Add description and | ||
| 50 | headers suggested by Emacs Lisp coding conventions. | ||
| 51 | |||
| 1 | 2001-11-19 Stefan Monnier <monnier@cs.yale.edu> | 52 | 2001-11-19 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 53 | ||
| 3 | * newcomment.el (comment-indent): | 54 | * newcomment.el (comment-indent): |