diff options
| author | Gerd Moellmann | 2000-12-12 17:03:11 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-12-12 17:03:11 +0000 |
| commit | 2ebf6139fcdec22fb8426fc988d874c8c2b81f68 (patch) | |
| tree | d013222a2f606c89a341bac279f13a23343b12d2 | |
| parent | d6a1d28906986cfc7fefe41c88b5c686d3d9e1b8 (diff) | |
| download | emacs-2ebf6139fcdec22fb8426fc988d874c8c2b81f68.tar.gz emacs-2ebf6139fcdec22fb8426fc988d874c8c2b81f68.zip | |
*** empty log message ***
| -rw-r--r-- | etc/PROBLEMS | 5 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
3 files changed, 20 insertions, 1 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index c233c5430f3..e3c44594d48 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -1,6 +1,11 @@ | |||
| 1 | This file describes various problems that have been encountered | 1 | This file describes various problems that have been encountered |
| 2 | in compiling, installing and running GNU Emacs. | 2 | in compiling, installing and running GNU Emacs. |
| 3 | 3 | ||
| 4 | * On AIX, if linking fails because libXbsd isn't found, check if you | ||
| 5 | are compiling with the system's `cc' and CFLAGS containing `-O5'. If | ||
| 6 | so, you have hit a compiler bug. Please make sure to re-configure | ||
| 7 | Emacs so that it isn't compiled with `-O5'. | ||
| 8 | |||
| 4 | * The PSGML package uses the obsolete variables | 9 | * The PSGML package uses the obsolete variables |
| 5 | `before-change-function' and `after-change-function', which are no | 10 | `before-change-function' and `after-change-function', which are no |
| 6 | longer used by Emacs. These changes to PSGML 1.2.1 fix that. | 11 | 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 @@ | |||
| 1 | 2000-12-12 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * smiley-ems.el (smiley-regexp-alist): Make regexps match | ||
| 4 | at the end of the buffer. | ||
| 5 | (smiley-region): In the loop, move to the end of the submatch | ||
| 6 | matching the smiley instead of using the end of the match | ||
| 7 | of the whole regexp. | ||
| 8 | |||
| 1 | 2000-12-12 Eli Zaretskii <eliz@is.elta.co.il> | 9 | 2000-12-12 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 10 | ||
| 3 | * message.el (message-mode): Doc fix. | 11 | * message.el (message-mode): Doc fix. |
| @@ -5,7 +13,7 @@ | |||
| 5 | 2000-12-12 Gerd Moellmann <gerd@gnu.org> | 13 | 2000-12-12 Gerd Moellmann <gerd@gnu.org> |
| 6 | 14 | ||
| 7 | * smiley-ems.el (smiley-region): Doc fix. | 15 | * smiley-ems.el (smiley-region): Doc fix. |
| 8 | 16 | ||
| 9 | 2000-12-11 Miles Bader <miles@gnu.org> | 17 | 2000-12-11 Miles Bader <miles@gnu.org> |
| 10 | 18 | ||
| 11 | * gnus-sum.el (gnus-summary-recenter): When trying to keep the | 19 | * 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 @@ | |||
| 8 | 8 | ||
| 9 | 2000-12-12 Gerd Moellmann <gerd@gnu.org> | 9 | 2000-12-12 Gerd Moellmann <gerd@gnu.org> |
| 10 | 10 | ||
| 11 | * window.c (Fset_window_point): If displaying cursors in windows | ||
| 12 | other than the selected window, make sure redisplay updates | ||
| 13 | other windows to show the new value of point in the window. | ||
| 14 | |||
| 15 | * dispextern.h (cursor_in_non_selected_windows): Declare extern. | ||
| 16 | |||
| 11 | * buffer.c (Fkill_buffer): Don't Fset_buffer when testing if | 17 | * buffer.c (Fkill_buffer): Don't Fset_buffer when testing if |
| 12 | the buffer is the sole visible buffer when in the mini-buffer. | 18 | the buffer is the sole visible buffer when in the mini-buffer. |
| 13 | 19 | ||