aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-17 20:27:27 +0000
committerGerd Moellmann2000-08-17 20:27:27 +0000
commita7b2852367a97fd250d41d103f893acd7db8eb6f (patch)
tree0916c4d228874188e3b58b9ea65fa5c0f4cbd6ef
parent532ed661555e0c4f2079bd4c6ac7fc0115e2135d (diff)
downloademacs-a7b2852367a97fd250d41d103f893acd7db8eb6f.tar.gz
emacs-a7b2852367a97fd250d41d103f893acd7db8eb6f.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog14
-rw-r--r--src/ChangeLog8
2 files changed, 22 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3c67bce1502..1f4240f15b4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,19 @@
12000-08-17 Gerd Moellmann <gerd@gnu.org> 12000-08-17 Gerd Moellmann <gerd@gnu.org>
2 2
3 * format.el (format-encode-run-method): Fix error message to say
4 `encode' instead of `decode'. Use save-window-excursion around
5 shell-command-on-region as in format-decode-run-method because
6 shell-command-on-region can display a buffer with error output.
7 (format-decode): Don't record undo information for the decoding.
8 (format-annotate-function): Add parameter FORMAT-COUNT. Make
9 that number part of the temporary buffer name so that more than
10 one decoding using a temporary buffer can happen safely.
11
12 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
13 of `A-z' in the regexp.
14
15 * hilit-chg.el: Fix typos in commentary.
16
3 * help.el (view-emacs-news): Rewritten for new naming scheme 17 * help.el (view-emacs-news): Rewritten for new naming scheme
4 for old NEWS files. 18 for old NEWS files.
5 19
diff --git a/src/ChangeLog b/src/ChangeLog
index 26b9cd339d5..8fe4c581fc4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12000-08-17 Gerd Moellmann <gerd@gnu.org>
2
3 * fileio.c (build_annotations): Add a comment explaining the
4 return value of format-annotate-function. Replace a spurious call
5 to Flength with a CONSP test. Call format-annotate-function with
6 a fifth arg specifying how many times the function is been called
7 in a row, to let it choose temporary buffers appropriately.
8
12000-08-17 Dave Love <fx@gnu.org> 92000-08-17 Dave Love <fx@gnu.org>
2 10
3 * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't 11 * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't