diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index a14302c32ca..aefb2fd4cbb 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-01-31 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of | ||
| 4 | 2009-01-09 change. | ||
| 5 | |||
| 1 | 2009-01-16 Teodor Zlatanov <tzz@lifelogs.com> | 6 | 2009-01-16 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 7 | ||
| 3 | * auth-source.el: Update docs to reflect epa-file-enable is to be used | 8 | * auth-source.el: Update docs to reflect epa-file-enable is to be used |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index ed636e03229..0624418f5ee 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -7625,7 +7625,9 @@ If BACKWARD, the previous article is selected instead of the next." | |||
| 7625 | (t | 7625 | (t |
| 7626 | (unless (gnus-ephemeral-group-p gnus-newsgroup-name) | 7626 | (unless (gnus-ephemeral-group-p gnus-newsgroup-name) |
| 7627 | (gnus-summary-jump-to-group gnus-newsgroup-name)) | 7627 | (gnus-summary-jump-to-group gnus-newsgroup-name)) |
| 7628 | (let ((cmd last-command-char) | 7628 | (let ((cmd (if (featurep 'xemacs) |
| 7629 | last-command-char | ||
| 7630 | last-command-event)) | ||
| 7629 | (point | 7631 | (point |
| 7630 | (with-current-buffer gnus-group-buffer | 7632 | (with-current-buffer gnus-group-buffer |
| 7631 | (point))) | 7633 | (point))) |