From: Gerd Moellmann Date: Tue, 12 Dec 2000 17:03:11 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.95~585 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2ebf6139fcdec22fb8426fc988d874c8c2b81f68;p=emacs.git *** empty log message *** --- diff --git a/etc/PROBLEMS b/etc/PROBLEMS index c233c5430f3..e3c44594d48 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -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 --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 44e030d3608..6ce304d9978 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -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 --git a/src/ChangeLog b/src/ChangeLog index 96b967cf8c6..41d63138069 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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.