diff options
| author | Gnus developers | 2012-03-23 11:22:21 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2012-03-23 11:22:21 +0000 |
| commit | 005a89ffd3550983ca3c85334d79c7fad633c9c0 (patch) | |
| tree | 69e718c168fdd3e28aaa14e1bc0ceb00a19cebb2 | |
| parent | b9d0879b49887a1db7630be9cab7fb60cf09cfd3 (diff) | |
| download | emacs-005a89ffd3550983ca3c85334d79c7fad633c9c0.tar.gz emacs-005a89ffd3550983ca3c85334d79c7fad633c9c0.zip | |
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.
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 4 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/auth-source.el | 2 |
4 files changed, 13 insertions, 3 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index c95aaa9b15d..8d40ab5ab15 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-03-22 Peder O. Klingenberg <peder@klingenberg.no> (tiny change) | ||
| 2 | |||
| 3 | * gnus.texi (Archived Messages): Update `gnus-message-archive-group' to | ||
| 4 | reflect the new default. | ||
| 5 | |||
| 1 | 2012-03-10 Eli Zaretskii <eliz@gnu.org> | 6 | 2012-03-10 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * info.texi (Expert Info): Move the index entry for "Texinfo" from | 8 | * info.texi (Expert Info): Move the index entry for "Texinfo" from |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index c3b62f3b791..9e440be6585 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -12526,8 +12526,8 @@ mode buffers. | |||
| 12526 | Gnus provides a few different methods for storing the mail and news you | 12526 | Gnus provides a few different methods for storing the mail and news you |
| 12527 | send. The default method is to use the @dfn{archive virtual server} to | 12527 | send. The default method is to use the @dfn{archive virtual server} to |
| 12528 | store the messages. If you want to disable this completely, the | 12528 | store the messages. If you want to disable this completely, the |
| 12529 | @code{gnus-message-archive-group} variable should be @code{nil}, which | 12529 | @code{gnus-message-archive-group} variable should be @code{nil}. The |
| 12530 | is the default. | 12530 | default is "sent.%Y-%m", which gives you one archive group per month. |
| 12531 | 12531 | ||
| 12532 | For archiving interesting messages in a group you read, see the | 12532 | For archiving interesting messages in a group you read, see the |
| 12533 | @kbd{B c} (@code{gnus-summary-copy-article}) command (@pxref{Mail | 12533 | @kbd{B c} (@code{gnus-summary-copy-article}) command (@pxref{Mail |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 878b9b9eb6b..ef0f1c5c852 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * auth-source.el (auth-source-netrc-create): Quote tokens that contain | ||
| 4 | "#" to avoid having them interpreted as comments. | ||
| 5 | |||
| 1 | 2012-03-19 Lars Magne Ingebrigtsen <larsi@gnus.org> | 6 | 2012-03-19 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * shr.el (shr-insert): Update the text state properly to avoid | 8 | * shr.el (shr-insert): Update the text state properly to avoid |
diff --git a/lisp/gnus/auth-source.el b/lisp/gnus/auth-source.el index 80a3b91b60a..34fe5afe7af 100644 --- a/lisp/gnus/auth-source.el +++ b/lisp/gnus/auth-source.el | |||
| @@ -1293,7 +1293,7 @@ See `auth-source-search' for details on SPEC." | |||
| 1293 | (secret "password") | 1293 | (secret "password") |
| 1294 | (port "port") ; redundant but clearer | 1294 | (port "port") ; redundant but clearer |
| 1295 | (t (symbol-name r))) | 1295 | (t (symbol-name r))) |
| 1296 | (if (string-match "[\" ]" data) | 1296 | (if (string-match "[\"# ]" data) |
| 1297 | (format "%S" data) | 1297 | (format "%S" data) |
| 1298 | data))))) | 1298 | data))))) |
| 1299 | (setq add (concat add (funcall printer))))))) | 1299 | (setq add (concat add (funcall printer))))))) |