[gnus git] branch master updated: m0-5-82-g690ecab =1= auth-source: ignore :require and :type in secrets and plstore search spec
Ted Zlatanov <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 690ecab203b06b79e3fd0c59cdce5188da57e7cb (commit)
from c5208073f6a99f33ead0bc8a24d457a8811c9c91 (commit)
- Log -----------------------------------------------------------------
commit 690ecab203b06b79e3fd0c59cdce5188da57e7cb
Author: Ted Zlatanov <[email protected]>
Date: Fri Aug 10 09:57:36 2012 -0400
auth-source: ignore :require and :type in secrets and plstore search spec
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 065d477..b8abc61 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2012-08-10 Daiki Ueno <[email protected]>
+
+ * auth-source.el: (auth-source-plstore-search)
+ (auth-source-secrets-search): Ignore :require and :type in search spec.
+
2012-08-06 Julien Danjou <[email protected]>
* nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
diff --git a/lisp/auth-source.el b/lisp/auth-source.el
index c8810bc..46fba78 100644
--- a/lisp/auth-source.el
+++ b/lisp/auth-source.el
@@ -1542,7 +1542,7 @@ authentication tokens:
(let* ((coll (oref backend source))
(max (or max 5000)) ; sanity check: default to stop at 5K
- (ignored-keys '(:create :delete :max :backend :label))
+ (ignored-keys '(:create :delete :max :backend :label :require :type))
(search-keys (loop for i below (length spec) by 2
unless (memq (nth i spec) ignored-keys)
collect (nth i spec)))
@@ -1797,7 +1797,7 @@ entries for git.gnus.org:
"Search the PLSTORE; spec is like `auth-source'."
(let* ((store (oref backend data))
(max (or max 5000)) ; sanity check: default to stop at 5K
- (ignored-keys '(:create :delete :max :backend :require))
+ (ignored-keys '(:create :delete :max :backend :label :require :type))
(search-keys (loop for i below (length spec) by 2
unless (memq (nth i spec) ignored-keys)
collect (nth i spec)))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/auth-source.el | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project