diff options
| -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 58041943c09..269d4f1de79 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-10-25 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * gnus-sum.el (gnus-summary-select-article): Fix type error in checking | ||
| 4 | the original article buffer. | ||
| 5 | |||
| 1 | 2010-10-24 Lars Magne Ingebrigtsen <larsi@gnus.org> | 6 | 2010-10-24 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * nnimap.el (nnimap-request-head): New function. | 8 | * nnimap.el (nnimap-request-head): New function. |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 7380ccce152..ca540b0f22f 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -7593,7 +7593,7 @@ be displayed." | |||
| 7593 | (not (eq article (cdr gnus-article-current))) | 7593 | (not (eq article (cdr gnus-article-current))) |
| 7594 | (not (equal (car gnus-article-current) | 7594 | (not (equal (car gnus-article-current) |
| 7595 | gnus-newsgroup-name)) | 7595 | gnus-newsgroup-name)) |
| 7596 | (not (buffer-name gnus-original-article-buffer)))) | 7596 | (not (get-buffer gnus-original-article-buffer)))) |
| 7597 | (and (not gnus-single-article-buffer) | 7597 | (and (not gnus-single-article-buffer) |
| 7598 | (or (null gnus-current-article) | 7598 | (or (null gnus-current-article) |
| 7599 | (not (eq gnus-current-article article)))) | 7599 | (not (eq gnus-current-article article)))) |