diff options
| author | Stefan Monnier | 2001-10-11 02:08:21 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-11 02:08:21 +0000 |
| commit | 30de4b24d54c0cbc061a67afe0ed9c325ec0c98a (patch) | |
| tree | f3f20b267278b2c08844bf18eefab23c29f49a33 | |
| parent | 48a96f5107b8564a6cac3abbf874c6dec9ecb7e7 (diff) | |
| download | emacs-30de4b24d54c0cbc061a67afe0ed9c325ec0c98a.tar.gz emacs-30de4b24d54c0cbc061a67afe0ed9c325ec0c98a.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 15 | ||||
| -rw-r--r-- | lisp/ChangeLog | 6 |
2 files changed, 21 insertions, 0 deletions
| @@ -8,6 +8,10 @@ For older news, see the file ONEWS | |||
| 8 | 8 | ||
| 9 | * Changes in Emacs 21.2 | 9 | * Changes in Emacs 21.2 |
| 10 | 10 | ||
| 11 | ** Lisp-mode now uses font-lock-docstring-face for the docstrings. | ||
| 12 | |||
| 13 | ** perl-mode has a new variable `perl-indent-continued-arguments'. | ||
| 14 | |||
| 11 | ** When pure storage overflows while dumping, Emacs now prints how | 15 | ** When pure storage overflows while dumping, Emacs now prints how |
| 12 | much pure storage it will approximately need. | 16 | much pure storage it will approximately need. |
| 13 | 17 | ||
| @@ -35,6 +39,12 @@ settings. | |||
| 35 | 39 | ||
| 36 | * Lisp Changes in Emacs 21.2 | 40 | * Lisp Changes in Emacs 21.2 |
| 37 | 41 | ||
| 42 | ** `define-key-after' now accepts keys longer than 1. | ||
| 43 | |||
| 44 | ** `define-derived-mode' now accept nil as the parent. | ||
| 45 | |||
| 46 | ** The local variable `no-byte-compile' in elisp files is now obeyed. | ||
| 47 | |||
| 38 | ** Variable aliases have been implemented | 48 | ** Variable aliases have been implemented |
| 39 | 49 | ||
| 40 | - Macro: defvaralias ALIAS-VAR BASE-VAR | 50 | - Macro: defvaralias ALIAS-VAR BASE-VAR |
| @@ -62,6 +72,11 @@ the file is copied to that directory instead of signaling an error. | |||
| 62 | ** The variables most-positive-fixnum and most-negative-fixnum | 72 | ** The variables most-positive-fixnum and most-negative-fixnum |
| 63 | have been moved from the CL package to the core. | 73 | have been moved from the CL package to the core. |
| 64 | 74 | ||
| 75 | ** New packages: | ||
| 76 | |||
| 77 | *** The new package syntax.el provides an efficient way to find the | ||
| 78 | current syntactic context (as returned by parse-partial-sexp). | ||
| 79 | |||
| 65 | 80 | ||
| 66 | * Installation Changes in Emacs 21.1 | 81 | * Installation Changes in Emacs 21.1 |
| 67 | 82 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index aa598240275..ed594f36bb4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-10-10 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * emacs-lisp/copyright.el (copyright): Add final \n. | ||
| 4 | |||
| 1 | 2001-10-11 Miles Bader <miles@gnu.org> | 5 | 2001-10-11 Miles Bader <miles@gnu.org> |
| 2 | 6 | ||
| 3 | * diff.el (diff): Display default values in prompts as | 7 | * diff.el (diff): Display default values in prompts as |
| @@ -6,6 +10,8 @@ | |||
| 6 | 10 | ||
| 7 | 2001-10-10 Stefan Monnier <monnier@cs.yale.edu> | 11 | 2001-10-10 Stefan Monnier <monnier@cs.yale.edu> |
| 8 | 12 | ||
| 13 | * emacs-lisp/autoload.el (doc-string-elt): Remove. | ||
| 14 | |||
| 9 | * newcomment.el (comment-indent): Be a little more robust in case | 15 | * newcomment.el (comment-indent): Be a little more robust in case |
| 10 | comment-indent-function does funny things. | 16 | comment-indent-function does funny things. |
| 11 | (comment-normalize-vars): Autoload. | 17 | (comment-normalize-vars): Autoload. |