[gnus git] branch master updated: =1= auth-source.el (auth-source-search): Use copy-sequence instead of the cl.el copy-list.
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 5f7a3e3424bc0c9f6750b8a13b8dbae669bbd649 (commit)
from 7a75c83a27525ccd8ddf6cf1a87267235344c9ec (commit)
- Log -----------------------------------------------------------------
commit 5f7a3e3424bc0c9f6750b8a13b8dbae669bbd649
Author: Katsumi Yamaoka <[email protected]>
Date: Mon Feb 14 01:35:22 2011 +0000
auth-source.el (auth-source-search): Use copy-sequence instead of the cl.el copy-list.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b64da04..7cb48a4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-02-14 Katsumi Yamaoka <[email protected]>
+
+ * auth-source.el (auth-source-search): Use copy-sequence instead of
+ the cl.el copy-list.
+
2011-02-13 Teodor Zlatanov <[email protected]>
* imap.el: Bring it back (revert
diff --git a/lisp/auth-source.el b/lisp/auth-source.el
index b7a7b41..de69262 100644
--- a/lisp/auth-source.el
+++ b/lisp/auth-source.el
@@ -485,7 +485,7 @@ must call it to obtain the actual value."
(or (eq t create) (listp create)) t
"Invalid auth-source :create parameter (must be nil, t, or a list)")
- (setq filtered-backends (copy-list backends))
+ (setq filtered-backends (copy-sequence backends))
(dolist (backend backends)
(dolist (key keys)
;; ignore invalid slots
-----------------------------------------------------------------------
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 | 2 +-
2 files changed, 6 insertions(+), 1 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