Change default to `unsent'.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 2 Sep 2010 02:30:20 +0000 (04:30 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Thu, 2 Sep 2010 02:30:20 +0000 (04:30 +0200)
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.

lisp/ChangeLog
lisp/message.el

index a7d3089..03fe7d9 100644 (file)
@@ -1,3 +1,10 @@
+2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * 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  <larsi@gnus.org>
 
        * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
index a02acfb..2198702 100644 (file)
@@ -460,7 +460,7 @@ A value of nil means let mailer mail back a message to report errors."
   :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:
 
@@ -483,6 +483,7 @@ function
   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)