1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

Merge changes made in No Gnus

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.
This commit is contained in:
Gnus developers 2012-03-23 11:22:21 +00:00 committed by Katsumi Yamaoka
parent b9d0879b49
commit 005a89ffd3
4 changed files with 13 additions and 3 deletions

View 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> 2012-03-10 Eli Zaretskii <eliz@gnu.org>
* info.texi (Expert Info): Move the index entry for "Texinfo" from * info.texi (Expert Info): Move the index entry for "Texinfo" from

View File

@ -12526,8 +12526,8 @@ mode buffers.
Gnus provides a few different methods for storing the mail and news you 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 send. The default method is to use the @dfn{archive virtual server} to
store the messages. If you want to disable this completely, the store the messages. If you want to disable this completely, the
@code{gnus-message-archive-group} variable should be @code{nil}, which @code{gnus-message-archive-group} variable should be @code{nil}. The
is the default. default is "sent.%Y-%m", which gives you one archive group per month.
For archiving interesting messages in a group you read, see the For archiving interesting messages in a group you read, see the
@kbd{B c} (@code{gnus-summary-copy-article}) command (@pxref{Mail @kbd{B c} (@code{gnus-summary-copy-article}) command (@pxref{Mail

View 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> 2012-03-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
* shr.el (shr-insert): Update the text state properly to avoid * shr.el (shr-insert): Update the text state properly to avoid

View File

@ -1293,7 +1293,7 @@ See `auth-source-search' for details on SPEC."
(secret "password") (secret "password")
(port "port") ; redundant but clearer (port "port") ; redundant but clearer
(t (symbol-name r))) (t (symbol-name r)))
(if (string-match "[\" ]" data) (if (string-match "[\"# ]" data)
(format "%S" data) (format "%S" data)
data))))) data)))))
(setq add (concat add (funcall printer))))))) (setq add (concat add (funcall printer)))))))