diff options
author | Gnus developers <ding@gnus.org> | 2012-03-23 11:22:21 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-03-23 11:22:21 +0000 |
commit | 005a89ffd3550983ca3c85334d79c7fad633c9c0 (patch) | |
tree | 69e718c168fdd3e28aaa14e1bc0ceb00a19cebb2 /lisp/gnus/auth-source.el | |
parent | b9d0879b49887a1db7630be9cab7fb60cf09cfd3 (diff) | |
download | emacs-005a89ffd3550983ca3c85334d79c7fad633c9c0.tar.gz |
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.
Diffstat (limited to 'lisp/gnus/auth-source.el')
-rw-r--r-- | lisp/gnus/auth-source.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (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))))))) |