diff options
author | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:26:14 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:26:14 +0000 |
commit | ed77e66cc6b3d73d6512f3b5015f8d80aa80f01f (patch) | |
tree | e5f44a37e78b36f7780d20023abba8d04f4d828b | |
parent | 1ba983e8d9da561ccbdf15fb1544895fad40cce8 (diff) | |
download | emacs-ed77e66cc6b3d73d6512f3b5015f8d80aa80f01f.tar.gz |
(gnus-summary-next-article): Replace last-command-char with last-command-event.
-rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/gnus/gnus-sum.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index e0a68e182a6..9abd2475e6b 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2009-01-09 Glenn Morris <rgm@gnu.org> + + * gnus-sum.el (gnus-summary-next-article): Replace last-command-char + with last-command-event. + 2009-01-08 Reiner Steib <Reiner.Steib@gmx.de> * message.el (message-fix-before-sending): Amend comment. diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index ed636e03229..19da9852243 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -7625,7 +7625,7 @@ 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 last-command-event) (point (with-current-buffer gnus-group-buffer (point))) |