diff options
| -rw-r--r-- | lisp/ChangeLog | 19 | ||||
| -rw-r--r-- | lisp/derived.el | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb976d468d2..ca2dda060f8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,22 @@ | |||
| 1 | 2000-05-25 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * derived.el: Fix keywords. | ||
| 4 | |||
| 5 | * simple.el (fill-comment, comment-column, comment-start) | ||
| 6 | (comment-start-skip, comment-end, comment-indent-function) | ||
| 7 | (block-comment-start, block-comment-end, indent-for-comment) | ||
| 8 | (set-comment-column, kill-comment, comment-padding, comment-region) | ||
| 9 | (comment-multi-line, indent-new-comment-line): Remove. | ||
| 10 | |||
| 11 | * bindings.el (esc-map): Change ; to comment-dwim and use the new | ||
| 12 | function names for comment operations. | ||
| 13 | |||
| 14 | * newcomment.el: Add abundant autoload cookies. | ||
| 15 | (comment-style): Don't depend on runtime data at compile-time. | ||
| 16 | (comment-indent-hook): Remove. | ||
| 17 | (comment-indent): Check if comment-indent-hook is bound. | ||
| 18 | (comment-region): Docstring fix. | ||
| 19 | |||
| 1 | 2000-05-25 Dave Love <fx@gnu.org> | 20 | 2000-05-25 Dave Love <fx@gnu.org> |
| 2 | 21 | ||
| 3 | * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete | 22 | * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete |
diff --git a/lisp/derived.el b/lisp/derived.el index cdb3c505a01..ee6a3529c11 100644 --- a/lisp/derived.el +++ b/lisp/derived.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | 5 | ||
| 6 | ;; Author: David Megginson (dmeggins@aix1.uottawa.ca) | 6 | ;; Author: David Megginson (dmeggins@aix1.uottawa.ca) |
| 7 | ;; Maintainer: FSF | 7 | ;; Maintainer: FSF |
| 8 | ;; Keywords: extensions | 8 | ;; Keywords: obsolete |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||