diff options
| author | Stefan Monnier | 2001-11-26 02:26:04 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-11-26 02:26:04 +0000 |
| commit | 5c131048fe2d428a82ea0ea1ca1f2d466f1a17cd (patch) | |
| tree | 461d4b0b9f31cbb65cc6f32bbdfb01650079a813 | |
| parent | ce768453c1c676c74a6f310d9f948f7555fa3314 (diff) | |
| download | emacs-5c131048fe2d428a82ea0ea1ca1f2d466f1a17cd.tar.gz emacs-5c131048fe2d428a82ea0ea1ca1f2d466f1a17cd.zip | |
*** empty log message ***
| -rw-r--r-- | MAINTAINERS | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 38 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
3 files changed, 46 insertions, 2 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 1d3f1e90434..996f4e75e7b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -145,7 +145,6 @@ src/fontset.c | |||
| 145 | src/getloadavg.c | 145 | src/getloadavg.c |
| 146 | src/gmalloc.c | 146 | src/gmalloc.c |
| 147 | src/hftctl.c | 147 | src/hftctl.c |
| 148 | src/igc.c | ||
| 149 | src/indent.c | 148 | src/indent.c |
| 150 | src/insdel.c | 149 | src/insdel.c |
| 151 | src/lastfile.c | 150 | src/lastfile.c |
| @@ -176,7 +175,6 @@ src/termcap.c | |||
| 176 | src/terminfo.c | 175 | src/terminfo.c |
| 177 | src/textprop.c | 176 | src/textprop.c |
| 178 | src/tparam.c | 177 | src/tparam.c |
| 179 | src/ttymenu.c | ||
| 180 | src/undo.c | 178 | src/undo.c |
| 181 | src/unexaix.c | 179 | src/unexaix.c |
| 182 | src/unexalpha.c | 180 | src/unexalpha.c |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a1e7037c6cd..f2370b78626 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,41 @@ | |||
| 1 | 2001-11-25 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities. | ||
| 4 | (diff-hunk-kill): Simplify. | ||
| 5 | (diff-post-command-hook): Only apply to a single hunk. | ||
| 6 | (diff-hunk-text): Make `char-offset' non-optional. | ||
| 7 | (diff-find-text): Return a cons cell. | ||
| 8 | (diff-find-approx-text): New fun. | ||
| 9 | (diff-find-source-location): Use it. | ||
| 10 | (diff-apply-hunk, diff-test-hunk, diff-goto-source): | ||
| 11 | Adapt to new retval of diff-find-source-location. | ||
| 12 | |||
| 13 | * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string- | ||
| 14 | rather than integer- representation of dates. | ||
| 15 | |||
| 16 | * textmodes/fill.el (fill-indent-according-to-mode): Default to nil. | ||
| 17 | |||
| 18 | * emacs-lisp/syntax.el: Don't profile syntax-ppss any more. | ||
| 19 | (syntax-after): New fun. | ||
| 20 | |||
| 21 | * help-funs.el (describe-syntax): New fun. | ||
| 22 | |||
| 23 | * font-lock.el (font-lock-cache-state, font-lock-cache-position) | ||
| 24 | (font-lock-ppss-stats, font-lock-ppss): Remove. | ||
| 25 | (font-lock-fontify-syntactically-region): Remove tuning code. | ||
| 26 | (font-lock-compile-keywords): Fix off-by-one bug. | ||
| 27 | (font-lock-set-defaults): Don't set removed vars. | ||
| 28 | (c-keywords): Add `inline'. | ||
| 29 | (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'. | ||
| 30 | |||
| 31 | * emacs-lisp/lisp-mode.el (lisp-mode-variables): | ||
| 32 | Set syntax-begin-function. | ||
| 33 | (lisp-interaction-mode-abbrev-table): Defvar to its correct value. | ||
| 34 | (lisp-interaction-mode): Don't set local-abbrev-table any more. | ||
| 35 | (lisp-mode-auto-fill): Use syntax-ppss and obey | ||
| 36 | comment-auto-fill-only-comments. | ||
| 37 | (lisp-fill-paragraph): Use syntax-ppss. | ||
| 38 | |||
| 1 | 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu> | 39 | 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu> |
| 2 | 40 | ||
| 3 | * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight | 41 | * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight |
diff --git a/src/ChangeLog b/src/ChangeLog index b06eac4304b..91c413947ec 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2001-11-25 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * textprop.c (set_text_properties_1): Clearly mark that the | ||
| 4 | interval should not be empty. | ||
| 5 | |||
| 6 | * intervals.c (graft_intervals_into_buffer): | ||
| 7 | Don't call set_text_properties_1 on an empty interval. | ||
| 8 | |||
| 1 | 2001-11-25 Richard M. Stallman <rms@gnu.org> | 9 | 2001-11-25 Richard M. Stallman <rms@gnu.org> |
| 2 | 10 | ||
| 3 | * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss". | 11 | * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss". |