(gnus-summary-goto-unread): Change default to nil.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 2 Sep 2010 02:32:30 +0000 (04:32 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 2 Sep 2010 02:32:30 +0000 (04:32 +0200)
This will make 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.

lisp/ChangeLog
lisp/gnus-sum.el

index 03fe7d9..3fa8a2c 100644 (file)
@@ -1,5 +1,10 @@
 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
+       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.
+
        * message.el (message-generate-new-buffers): Change default to
        `unsent', so that all new message buffers start their names with the
        string "*unsent", and it's easier to find the buffers if you move from
index ada42f6..2fc1954 100644 (file)
@@ -221,7 +221,7 @@ This variable will only be used if the value of
   :group 'gnus-summary-format
   :type 'string)
 
-(defcustom gnus-summary-goto-unread t
+(defcustom gnus-summary-goto-unread nil
   "*If t, many commands will go to the next unread article.
 This applies to marking commands as well as other commands that
 \"naturally\" select the next article, like, for instance, `SPC' at
@@ -231,6 +231,7 @@ If nil, the marking commands do NOT go to the next unread article
 \(they go to the next article instead).  If `never', commands that
 usually go to the next unread article, will go to the next article,
 whether it is read or not."
+  :version "24.1"
   :group 'gnus-summary-marks
   :link '(custom-manual "(gnus)Setting Marks")
   :type '(choice (const :tag "off" nil)