diff options
| author | Richard M. Stallman | 2004-01-16 18:26:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-01-16 18:26:32 +0000 |
| commit | 557be0363496d5ab9aa546da9b409e6b90ecab6a (patch) | |
| tree | 8fe04bab3ce7a7e9a28699c68bf8c5b8610a7bc6 | |
| parent | a53692379f6caed5e6d1686a1933914751dd64fe (diff) | |
| download | emacs-557be0363496d5ab9aa546da9b409e6b90ecab6a.tar.gz emacs-557be0363496d5ab9aa546da9b409e6b90ecab6a.zip | |
Comment change.
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | lisp/loadhist.el | 4 |
2 files changed, 16 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 22cb44249a3..129d97dd8f6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2004-01-16 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/cl.el (cl-cannot-unload): New function. | ||
| 4 | (cl-unload-hook): Defvar this to run cl-cannot-unload. | ||
| 5 | |||
| 6 | * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam. | ||
| 7 | Call rmail-spam-filter. Delete and expunge spam. | ||
| 8 | Print number of spam messages deleted. | ||
| 9 | Save and restore the deletion status of old messages when reading | ||
| 10 | new mail with spam filter, so that expunging spam does not expunge | ||
| 11 | msgs deleted by the user. | ||
| 12 | (rmail-only-expunge): added an optional argument dont-show to | ||
| 13 | prevent showing message after expunge. | ||
| 14 | |||
| 1 | 2004-01-15 Luc Teirlinck <teirllm@auburn.edu> | 15 | 2004-01-15 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 16 | ||
| 3 | * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'. | 17 | * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'. |
diff --git a/lisp/loadhist.el b/lisp/loadhist.el index cbeaaa62600..733129fc74f 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el | |||
| @@ -137,8 +137,8 @@ is nil, raise an error." | |||
| 137 | ;; Try to avoid losing badly when hooks installed in critical | 137 | ;; Try to avoid losing badly when hooks installed in critical |
| 138 | ;; places go away. (Some packages install things on | 138 | ;; places go away. (Some packages install things on |
| 139 | ;; `kill-buffer-hook', `activate-menubar-hook' and the like.) | 139 | ;; `kill-buffer-hook', `activate-menubar-hook' and the like.) |
| 140 | ;; First off, provide a clean way for package `foo' to arrange | 140 | ;; First off, provide a clean way for package FOO to arrange |
| 141 | ;; this by defining `foo-unload-hook'. | 141 | ;; this by adding hooks on the variable `FOO-unload-hook'. |
| 142 | (if unload-hook | 142 | (if unload-hook |
| 143 | (run-hooks unload-hook) | 143 | (run-hooks unload-hook) |
| 144 | ;; Otherwise, do our best. Look through the obarray for symbols | 144 | ;; Otherwise, do our best. Look through the obarray for symbols |