auth-source.el (auth-source-search): Use copy-sequence instead of the cl.el copy-list.
This commit is contained in:
parent
461b69aeb4
commit
6ce6c7420c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-02-14 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* auth-source.el (auth-source-search): Use copy-sequence instead of
|
||||
the cl.el copy-list.
|
||||
|
||||
2011-02-13 Adam Sjøgren <asjo@koldfront.dk>
|
||||
|
||||
* gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue