(gnus-single-article-buffer): Change default to nil.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 2 Sep 2010 02:33:51 +0000 (04:33 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 2 Sep 2010 02:33:51 +0000 (04:33 +0200)
So that people can have as many article buffers open as they have
summary buffer.  I think this is the most natural way for the groups
to behave.

lisp/ChangeLog
lisp/gnus-sum.el

index 3fa8a2c..35dea79 100644 (file)
@@ -4,6 +4,9 @@
        that commands like `d' (and the like) go to the next line in the
        buffer, instead of the next unread article.  I think this is the
        behaviour that is most natural for most users.
+       (gnus-single-article-buffer): Change default to nil, so that people can
+       have as many article buffers open as they have summary buffer.  I think
+       this is the most natural way for the groups to behave.
 
        * message.el (message-generate-new-buffers): Change default to
        `unsent', so that all new message buffers start their names with the
index 2fc1954..bbff28b 100644 (file)
@@ -465,9 +465,10 @@ and non-`vertical', do both horizontal and vertical recentering."
   :group 'gnus-summary
   :type 'boolean)
 
-(defcustom gnus-single-article-buffer t
+(defcustom gnus-single-article-buffer nil
   "*If non-nil, display all articles in the same buffer.
 If nil, each group will get its own article buffer."
+  :version "24.1"
   :group 'gnus-article-various
   :type 'boolean)