# HG changeset patch # User Gerd Moellmann # Date 995882933 0 # Node ID 71c6489a2aff2673337adb6fc9f779e83398d1e5 # Parent 98b3bb015deb11737622792e1841796db16dd3e2 *** empty log message *** diff -r 98b3bb015deb -r 71c6489a2aff etc/NEWS --- a/etc/NEWS Mon Jul 23 10:08:40 2001 +0000 +++ b/etc/NEWS Mon Jul 23 10:08:53 2001 +0000 @@ -2277,6 +2277,9 @@ * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, (Display-related features are described in a page of their own below.) +** The new function amimate-string, from lisp/play/animate.el +allows the animated display of strings. + ** The new function `interactive-form' can be used to obtain the interactive form of a function. diff -r 98b3bb015deb -r 71c6489a2aff lisp/ChangeLog --- a/lisp/ChangeLog Mon Jul 23 10:08:40 2001 +0000 +++ b/lisp/ChangeLog Mon Jul 23 10:08:53 2001 +0000 @@ -1,5 +1,11 @@ 2001-07-23 Gerd Moellmann + * play/fortune.el: Undo change of 2001-07-13. + Fix autoload cookies. Add types to defcustoms. + (fortune) : Add :link. + (fortune-from-region): Use eq, not eql. + From Dave Love . + * play/animate.el (animate-birthday-present): Function removed. * play/animate.el: New file. diff -r 98b3bb015deb -r 71c6489a2aff lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Mon Jul 23 10:08:40 2001 +0000 +++ b/lisp/gnus/ChangeLog Mon Jul 23 10:08:53 2001 +0000 @@ -1,3 +1,13 @@ +2001-07-23 Katsumi Yamaoka + + * nntp.el (nntp-request-newgroups): Use UTC date for NEWGROUPS + command. + + * gnus-start.el (gnus-find-new-newsgroups): Use + `message-make-date' instead of `current-time-string'. + (gnus-ask-server-for-new-groups): Ditto. + (gnus-check-first-time-used): Ditto. + 2001-07-13 Pavel Jan,Bm(Bk * gnus-setup.el (gnus-use-installed-gnus): Fix a typo. diff -r 98b3bb015deb -r 71c6489a2aff src/ChangeLog --- a/src/ChangeLog Mon Jul 23 10:08:40 2001 +0000 +++ b/src/ChangeLog Mon Jul 23 10:08:53 2001 +0000 @@ -1,5 +1,9 @@ 2001-07-23 Gerd Moellmann + * editfns.c (toplevel) [STDC_HEADERS]: Include float.h. + (MAX_10_EXP): New macro. + (Fformat): Use it. + * coding.c (code_convert_region): Handle the multibyte case if decoding ends with CODING_FINISH_INSUFFICIENT_SRC.