mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-23 10:34:07 +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:
parent
b9d0879b49
commit
005a89ffd3
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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)))))))
|
||||
|
Loading…
Reference in New Issue
Block a user