(gnus-auto-select-subject): Change default to `unseen-or-unread'.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 2 Sep 2010 02:39:56 +0000 (04:39 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 2 Sep 2010 02:39:56 +0000 (04:39 +0200)
I think it's likely that most people want to select an unseen article
over a previously seen, but unread one.

lisp/ChangeLog
lisp/gnus-sum.el

index d472dd2..76ef84e 100644 (file)
@@ -1,5 +1,9 @@
 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-sum.el (gnus-auto-select-subject): Change default to
+       `unseen-or-unread'.  I think it's likely that most people want to
+       select an unseen article over a previously seen, but unread one.
+
        * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
        means that in the article buffer none of the minor mode elements will
        be shown, usually, and this is not desirable in most cases.
index bbff28b..f1ea15d 100644 (file)
@@ -350,7 +350,7 @@ newsgroups, set the variable to nil in `gnus-select-group-hook'."
   :type '(choice (const :tag "none" nil)
                 (sexp :menu-tag "first" t)))
 
-(defcustom gnus-auto-select-subject 'unread
+(defcustom gnus-auto-select-subject 'unseen-or-unread
   "*Says what subject to place under point when entering a group.
 
 This variable can either be the symbols `first' (place point on the
@@ -361,7 +361,7 @@ the first unseen article), `unseen-or-unread' (place point on the subject
 line of the first unseen article or, if all article have been seen, on the
 subject line of the first unread article), or a function to be called to
 place point on some subject line."
-  :version "22.1"
+  :version "24.1"
   :group 'gnus-group-select
   :type '(choice (const best)
                 (const unread)