emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101291: message.el (message-generate


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101291: message.el (message-generate-new-buffers): Change default to `unsent'; gnus-sum.el (gnus-summary-goto-unread, gnus-single-article-buffer): Change default to nil.
Date: Thu, 02 Sep 2010 03:27:17 +0000
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101291
author: Lars Magne Ingebrigtsen <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Thu 2010-09-02 03:27:17 +0000
message:
  message.el (message-generate-new-buffers): Change default to `unsent'; 
gnus-sum.el (gnus-summary-goto-unread, gnus-single-article-buffer): Change 
default to nil.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-sum.el
  lisp/gnus/message.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2010-09-02 01:46:34 +0000
+++ b/lisp/gnus/ChangeLog       2010-09-02 03:27:17 +0000
@@ -1,3 +1,18 @@
+2010-09-02  Lars Magne Ingebrigtsen  <address@hidden>
+
+       * 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.
+       (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
+       string "*unsent", and it's easier to find the buffers if you move from
+       them.
+
 2010-09-01  Lars Magne Ingebrigtsen  <address@hidden>
 
        * gnus-html.el (gnus-html-wash-tags): Don't show images that are really

=== modified file 'lisp/gnus/gnus-sum.el'
--- a/lisp/gnus/gnus-sum.el     2010-09-02 00:55:51 +0000
+++ b/lisp/gnus/gnus-sum.el     2010-09-02 03:27:17 +0000
@@ -221,7 +221,7 @@
   :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 @@
 \(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)
@@ -464,9 +465,10 @@
   :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)
 

=== modified file 'lisp/gnus/message.el'
--- a/lisp/gnus/message.el      2010-09-02 01:42:32 +0000
+++ b/lisp/gnus/message.el      2010-09-02 03:27:17 +0000
@@ -464,7 +464,7 @@
   :link '(custom-manual "(message)Sending Variables")
   :type 'boolean)
 
-(defcustom message-generate-new-buffers 'unique
+(defcustom message-generate-new-buffers 'unsent
   "*Say whether to create a new message buffer to compose a message.
 Valid values include:
 
@@ -487,6 +487,7 @@
   If this is a function, call that function with three parameters:
   The type, the To address and the group name (any of these may be nil).
   The function should return the new buffer name."
+  :version "24.1"
   :group 'message-buffers
   :link '(custom-manual "(message)Message Buffers")
   :type '(choice (const nil)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]