(gnus-summary-next-article): XEmacs-friendly version of 2009-01-09 change.

This commit is contained in:
Glenn Morris 2009-01-31 02:57:13 +00:00
parent 1a6d67502f
commit 49e787c9e2
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-01-31 Glenn Morris <rgm@gnu.org>
* gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2009-01-09 change.
2009-01-16 Teodor Zlatanov <tzz@lifelogs.com>
* auth-source.el: Update docs to reflect epa-file-enable is to be used

View file

@ -7625,7 +7625,9 @@ If BACKWARD, the previous article is selected instead of the next."
(t
(unless (gnus-ephemeral-group-p gnus-newsgroup-name)
(gnus-summary-jump-to-group gnus-newsgroup-name))
(let ((cmd last-command-char)
(let ((cmd (if (featurep 'xemacs)
last-command-char
last-command-event))
(point
(with-current-buffer gnus-group-buffer
(point)))