diff options
author | Mark Oteiza <mvoteiza@udel.edu> | 2016-11-12 19:04:36 -0500 |
---|---|---|
committer | Mark Oteiza <mvoteiza@udel.edu> | 2016-11-12 19:04:36 -0500 |
commit | 3958002f6f1469dbb60e58b8e28a13858c9800c6 (patch) | |
tree | 00631cd7f26a562ebe1c9732a4e244449851e2d8 /lisp/auth-source.el | |
parent | 058816441840b5229b4437ff486a243e05fc5c93 (diff) | |
download | emacs-3958002f6f1469dbb60e58b8e28a13858c9800c6.tar.gz |
; Fix thinko
* lisp/auth-source.el (auth-source-backend-parse-parameters): Contain
cl-return within cl-dolist.
Diffstat (limited to 'lisp/auth-source.el')
-rw-r--r-- | lisp/auth-source.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/auth-source.el b/lisp/auth-source.el index c59ebf4a93c..96693644ceb 100644 --- a/lisp/auth-source.el +++ b/lisp/auth-source.el @@ -704,7 +704,7 @@ must call it to obtain the actual value." (setq filtered-backends (copy-sequence backends)) (dolist (backend backends) - (dolist (key keys) + (cl-dolist (key keys) ;; ignore invalid slots (condition-case nil (unless (auth-source-search-collection |