changeset 111176:7b332968b4ae

gnus-sum.el (gnus-summary-select-article): Fix type error in checking the original article buffer.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Mon, 25 Oct 2010 05:43:08 +0000
parents f900266d10a0
children 35a6397b95e8
files lisp/gnus/ChangeLog lisp/gnus/gnus-sum.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/gnus/ChangeLog	Sun Oct 24 22:39:21 2010 -0700
+++ b/lisp/gnus/ChangeLog	Mon Oct 25 05:43:08 2010 +0000
@@ -1,3 +1,8 @@
+2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+	* gnus-sum.el (gnus-summary-select-article): Fix type error in checking
+	the original article buffer.
+
 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
 	* nnimap.el (nnimap-request-head): New function.
--- a/lisp/gnus/gnus-sum.el	Sun Oct 24 22:39:21 2010 -0700
+++ b/lisp/gnus/gnus-sum.el	Mon Oct 25 05:43:08 2010 +0000
@@ -7593,7 +7593,7 @@
 		       (not (eq article (cdr gnus-article-current)))
 		       (not (equal (car gnus-article-current)
 				   gnus-newsgroup-name))
-		       (not (buffer-name gnus-original-article-buffer))))
+		       (not (get-buffer gnus-original-article-buffer))))
 	      (and (not gnus-single-article-buffer)
 		   (or (null gnus-current-article)
 		       (not (eq gnus-current-article article))))