diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 71 |
1 files changed, 63 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 87a890b3c30..17a24e2fa1b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,59 @@ | |||
| 1 | 2001-10-30 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * textmodes/fill.el (sentence-end-double-space) | ||
| 4 | (sentence-end-without-period): Move to paragraphs.el. | ||
| 5 | (fill-indent-according-to-mode): Change default to t. | ||
| 6 | (fill-context-prefix): Simplify control-flow and use a more | ||
| 7 | sophisticated merge that unifies both previous checks. | ||
| 8 | (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs. | ||
| 9 | (fill-nobreak-predicate): Make it into a defcustom'd hook. | ||
| 10 | (fill-nobreak-p): New fun. | ||
| 11 | (fill-region-as-paragraph): Use it. | ||
| 12 | Handle `fill-indent-according-to-mode' slightly differently. | ||
| 13 | (fill-individual-paragraphs-prefix): Simplify the control-flow. | ||
| 14 | (fill-individual-paragraphs-citation): Fix. | ||
| 15 | |||
| 16 | * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode. | ||
| 17 | (paragraph-start): Change default to the `text-mode' value. | ||
| 18 | (sentence-end-double-space, sentence-end-without-period): | ||
| 19 | Move from fill.el. | ||
| 20 | (forward-paragraph): Use `parstart' and `parsep' for temp variables | ||
| 21 | rather than rebinding `paragraph-start' and `paragraph-separate'. | ||
| 22 | |||
| 23 | * indent.el (indent-line-function): Change default to indent-relative. | ||
| 24 | (tab-always-indent): Add an `always' setting. | ||
| 25 | (indent-according-to-mode): Handle `indent-relative' and | ||
| 26 | `indent-relative-maybe' specially. | ||
| 27 | (indent-for-tab-command): Rename `prefix-arg' to `arg'. | ||
| 28 | Handle the `always; case for `tab-always-indent'. | ||
| 29 | Don't call indent-according-to-mode for indent-relative' and | ||
| 30 | `indent-relative-maybe'. | ||
| 31 | (insert-tab): Rename `prefix-arg' to `arg'. | ||
| 32 | (indent-region): Indent the first line as well. | ||
| 33 | (indent-relative): Don't mark the buffer modified if the indentation | ||
| 34 | is unchanged. | ||
| 35 | |||
| 36 | * textmodes/text-mode.el (paragraph-indent-minor-mode): | ||
| 37 | Don't set paragraph-separate. Set paragraph-start more carefully. | ||
| 38 | Set indent-line-function. | ||
| 39 | (paragraph-indent-text-mode): Use it and define-derived-mode. | ||
| 40 | (text-mode-map): Remove the \t binding. | ||
| 41 | (text-mode): Simplify now that the default is more favorable. | ||
| 42 | |||
| 43 | 2001-10-29 Stefan Monnier <monnier@cs.yale.edu> | ||
| 44 | |||
| 45 | * emacs-lisp/find-func.el (find-function-search-for-symbol): | ||
| 46 | If the regexp doesn't match, use a looser one. | ||
| 47 | (find-variable-noselect): Add `file' argument. | ||
| 48 | |||
| 49 | * pcvs.el (cvs-mode-commit-hook): New hook. | ||
| 50 | (cvs-mode-commit): Run it. | ||
| 51 | |||
| 52 | * log-edit.el (log-edit): Run hook after `log-edit-files'. | ||
| 53 | |||
| 54 | * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec. | ||
| 55 | (edebug-instrument-function): Use `find-function-noselect'. | ||
| 56 | |||
| 1 | 2001-10-29 Richard M. Stallman <rms@gnu.org> | 57 | 2001-10-29 Richard M. Stallman <rms@gnu.org> |
| 2 | 58 | ||
| 3 | * term.el (term-if-emacs19): Macro deleted. | 59 | * term.el (term-if-emacs19): Macro deleted. |
| @@ -28,17 +84,17 @@ | |||
| 28 | 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il> | 84 | 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il> |
| 29 | 85 | ||
| 30 | * faces.el (invert-face): Check for 'unspecified, not for nil, | 86 | * faces.el (invert-face): Check for 'unspecified, not for nil, |
| 31 | when testing whether face colors are not specified. From | 87 | when testing whether face colors are not specified. |
| 32 | David.Kastrup@t-online.de (David Kastrup). | 88 | From David.Kastrup@t-online.de (David Kastrup). |
| 33 | (read-face-name): Doc fix. | 89 | (read-face-name): Doc fix. |
| 34 | (make-face-bold, make-face-unbold, make-face-italic) | 90 | (make-face-bold, make-face-unbold, make-face-italic) |
| 35 | (make-face-unitalic, make-face-bold-italic, invert-face): Remove | 91 | (make-face-unitalic, make-face-bold-italic, invert-face): |
| 36 | trailing blank from the prompt passed to read-face-name. | 92 | Remove trailing blank from the prompt passed to read-face-name. |
| 37 | 93 | ||
| 38 | 2001-10-29 Sam Steingold <sds@gnu.org> | 94 | 2001-10-29 Sam Steingold <sds@gnu.org> |
| 39 | 95 | ||
| 40 | * emacs-lisp/bytecomp.el (byte-recompile-directory): Report | 96 | * emacs-lisp/bytecomp.el (byte-recompile-directory): |
| 41 | numbers of files skipped and failed too. | 97 | Report numbers of files skipped and failed too. |
| 42 | (byte-compile-file): Return 'no-byte-compile for skipped files. | 98 | (byte-compile-file): Return 'no-byte-compile for skipped files. |
| 43 | 99 | ||
| 44 | 2001-10-29 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> | 100 | 2001-10-29 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> |
| @@ -61,8 +117,7 @@ | |||
| 61 | * enriched.el (enriched-face-ans): Handle face attributes | 117 | * enriched.el (enriched-face-ans): Handle face attributes |
| 62 | of the form `(FACE1 FACE2 ...)'. | 118 | of the form `(FACE1 FACE2 ...)'. |
| 63 | 119 | ||
| 64 | * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired | 120 | * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers. |
| 65 | buffers. | ||
| 66 | 121 | ||
| 67 | 2001-10-29 Alex Schroeder <kensanata@yahoo.com> | 122 | 2001-10-29 Alex Schroeder <kensanata@yahoo.com> |
| 68 | 123 | ||