*** empty log message ***

This commit is contained in:
Gerd Moellmann 2000-12-12 17:03:11 +00:00
parent d6a1d28906
commit 2ebf6139fc
3 changed files with 20 additions and 1 deletions

View file

@ -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.

View file

@ -1,3 +1,11 @@
2000-12-12 Gerd Moellmann <gerd@gnu.org>
* 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 <eliz@is.elta.co.il>
* message.el (message-mode): Doc fix.
@ -5,7 +13,7 @@
2000-12-12 Gerd Moellmann <gerd@gnu.org>
* smiley-ems.el (smiley-region): Doc fix.
2000-12-11 Miles Bader <miles@gnu.org>
* gnus-sum.el (gnus-summary-recenter): When trying to keep the

View file

@ -8,6 +8,12 @@
2000-12-12 Gerd Moellmann <gerd@gnu.org>
* 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.