aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MAINTAINERS2
-rw-r--r--lisp/ChangeLog38
-rw-r--r--src/ChangeLog8
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
145src/getloadavg.c 145src/getloadavg.c
146src/gmalloc.c 146src/gmalloc.c
147src/hftctl.c 147src/hftctl.c
148src/igc.c
149src/indent.c 148src/indent.c
150src/insdel.c 149src/insdel.c
151src/lastfile.c 150src/lastfile.c
@@ -176,7 +175,6 @@ src/termcap.c
176src/terminfo.c 175src/terminfo.c
177src/textprop.c 176src/textprop.c
178src/tparam.c 177src/tparam.c
179src/ttymenu.c
180src/undo.c 178src/undo.c
181src/unexaix.c 179src/unexaix.c
182src/unexalpha.c 180src/unexalpha.c
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a1e7037c6cd..f2370b78626 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,41 @@
12001-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
12001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu> 392001-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 @@
12001-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
12001-11-25 Richard M. Stallman <rms@gnu.org> 92001-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".