]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge changes made in No Gnus
authorGnus developers <ding@gnus.org>
Fri, 23 Mar 2012 11:22:21 +0000 (11:22 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Fri, 23 Mar 2012 11:22:21 +0000 (11:22 +0000)
2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 * auth-source.el (auth-source-netrc-create): Quote tokens that contain
 "#" to avoid having them interpreted as comments.
2012-03-22  Peder O. Klingenberg  <peder@klingenberg.no>  (tiny change)
 * gnus.texi (Archived Messages): Update `gnus-message-archive-group' to
 reflect the new default.

doc/misc/ChangeLog
doc/misc/gnus.texi
lisp/gnus/ChangeLog
lisp/gnus/auth-source.el

index c95aaa9b15d33e4a0a8ac3c75df3c887ff6f51f5..8d40ab5ab157a2f5d060abd0fcad2f772d06b32d 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-22  Peder O. Klingenberg  <peder@klingenberg.no>  (tiny change)
+
+       * gnus.texi (Archived Messages): Update `gnus-message-archive-group' to
+       reflect the new default.
+
 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
 
        * info.texi (Expert Info): Move the index entry for "Texinfo" from
index c3b62f3b7917da1efdd0ce04c101abc407aab2f6..9e440be6585d81331e6ad611f7e3bb9999d2243f 100644 (file)
@@ -12526,8 +12526,8 @@ mode buffers.
 Gnus provides a few different methods for storing the mail and news you
 send.  The default method is to use the @dfn{archive virtual server} to
 store the messages.  If you want to disable this completely, the
-@code{gnus-message-archive-group} variable should be @code{nil}, which
-is the default.
+@code{gnus-message-archive-group} variable should be @code{nil}.  The
+default is "sent.%Y-%m", which gives you one archive group per month.
 
 For archiving interesting messages in a group you read, see the
 @kbd{B c} (@code{gnus-summary-copy-article}) command (@pxref{Mail
index 878b9b9eb6b4a615dafe40cb13c5429f7d728471..ef0f1c5c852e9b900cac33c989645d46a682a622 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * auth-source.el (auth-source-netrc-create): Quote tokens that contain
+       "#" to avoid having them interpreted as comments.
+
 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * shr.el (shr-insert): Update the text state properly to avoid
index 80a3b91b60aaf862bc06a4fe609135145904d547..34fe5afe7af4b57a13d37d11a9b2ac5489173ea8 100644 (file)
@@ -1293,7 +1293,7 @@ See `auth-source-search' for details on SPEC."
                                      (secret "password")
                                      (port   "port") ; redundant but clearer
                                      (t (symbol-name r)))
-                                   (if (string-match "[\" ]" data)
+                                   (if (string-match "[\"# ]" data)
                                        (format "%S" data)
                                      data)))))
             (setq add (concat add (funcall printer)))))))