# HG changeset patch # User Gerd Moellmann # Date 976640591 0 # Node ID c9772e95b9c14149a171a22f6c3db4dba2c80fad # Parent 3e2309d79ff3bda51c5dc84840074b93d36ee3f3 *** empty log message *** diff -r 3e2309d79ff3 -r c9772e95b9c1 etc/PROBLEMS --- a/etc/PROBLEMS Tue Dec 12 16:54:45 2000 +0000 +++ b/etc/PROBLEMS Tue Dec 12 17:03:11 2000 +0000 @@ -1,6 +1,11 @@ This file describes various problems that have been encountered in compiling, installing and running GNU Emacs. +* On AIX, if linking fails because libXbsd isn't found, check if you +are compiling with the system's `cc' and CFLAGS containing `-O5'. If +so, you have hit a compiler bug. Please make sure to re-configure +Emacs so that it isn't compiled with `-O5'. + * The PSGML package uses the obsolete variables `before-change-function' and `after-change-function', which are no longer used by Emacs. These changes to PSGML 1.2.1 fix that. diff -r 3e2309d79ff3 -r c9772e95b9c1 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Tue Dec 12 16:54:45 2000 +0000 +++ b/lisp/gnus/ChangeLog Tue Dec 12 17:03:11 2000 +0000 @@ -1,3 +1,11 @@ +2000-12-12 Gerd Moellmann + + * smiley-ems.el (smiley-regexp-alist): Make regexps match + at the end of the buffer. + (smiley-region): In the loop, move to the end of the submatch + matching the smiley instead of using the end of the match + of the whole regexp. + 2000-12-12 Eli Zaretskii * message.el (message-mode): Doc fix. @@ -5,7 +13,7 @@ 2000-12-12 Gerd Moellmann * smiley-ems.el (smiley-region): Doc fix. - + 2000-12-11 Miles Bader * gnus-sum.el (gnus-summary-recenter): When trying to keep the diff -r 3e2309d79ff3 -r c9772e95b9c1 src/ChangeLog --- a/src/ChangeLog Tue Dec 12 16:54:45 2000 +0000 +++ b/src/ChangeLog Tue Dec 12 17:03:11 2000 +0000 @@ -8,6 +8,12 @@ 2000-12-12 Gerd Moellmann + * window.c (Fset_window_point): If displaying cursors in windows + other than the selected window, make sure redisplay updates + other windows to show the new value of point in the window. + + * dispextern.h (cursor_in_non_selected_windows): Declare extern. + * buffer.c (Fkill_buffer): Don't Fset_buffer when testing if the buffer is the sole visible buffer when in the mini-buffer.