aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS3
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/gnus/ChangeLog10
-rw-r--r--src/ChangeLog4
4 files changed, 23 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 78a86d8d2b9..71b5eba19d4 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2277,6 +2277,9 @@ will not have any effect when support for this variable is removed.
2277* Lisp changes made after edition 2.6 of the Emacs Lisp Manual, 2277* Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
2278(Display-related features are described in a page of their own below.) 2278(Display-related features are described in a page of their own below.)
2279 2279
2280** The new function amimate-string, from lisp/play/animate.el
2281allows the animated display of strings.
2282
2280** The new function `interactive-form' can be used to obtain the 2283** The new function `interactive-form' can be used to obtain the
2281interactive form of a function. 2284interactive form of a function.
2282 2285
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 276987b8aee..576505db8d8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,11 @@
12001-07-23 Gerd Moellmann <gerd@gnu.org> 12001-07-23 Gerd Moellmann <gerd@gnu.org>
2 2
3 * play/fortune.el: Undo change of 2001-07-13.
4 Fix autoload cookies. Add types to defcustoms.
5 (fortune) <defgroup>: Add :link.
6 (fortune-from-region): Use eq, not eql.
7 From Dave Love <fx@gnu.org>.
8
3 * play/animate.el (animate-birthday-present): Function removed. 9 * play/animate.el (animate-birthday-present): Function removed.
4 10
5 * play/animate.el: New file. 11 * play/animate.el: New file.
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 04f9c196842..e765d478b8a 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,13 @@
12001-07-23 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * nntp.el (nntp-request-newgroups): Use UTC date for NEWGROUPS
4 command.
5
6 * gnus-start.el (gnus-find-new-newsgroups): Use
7 `message-make-date' instead of `current-time-string'.
8 (gnus-ask-server-for-new-groups): Ditto.
9 (gnus-check-first-time-used): Ditto.
10
12001-07-13 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 112001-07-13 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 12
3 * gnus-setup.el (gnus-use-installed-gnus): Fix a typo. 13 * gnus-setup.el (gnus-use-installed-gnus): Fix a typo.
diff --git a/src/ChangeLog b/src/ChangeLog
index 5042dcf16b8..1e6c0d1cbf2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12001-07-23 Gerd Moellmann <gerd@gnu.org> 12001-07-23 Gerd Moellmann <gerd@gnu.org>
2 2
3 * editfns.c (toplevel) [STDC_HEADERS]: Include float.h.
4 (MAX_10_EXP): New macro.
5 (Fformat): Use it.
6
3 * coding.c (code_convert_region): Handle the multibyte case if 7 * coding.c (code_convert_region): Handle the multibyte case if
4 decoding ends with CODING_FINISH_INSUFFICIENT_SRC. 8 decoding ends with CODING_FINISH_INSUFFICIENT_SRC.
5 9