diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/auth-source.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/auth-source.el b/lisp/auth-source.el index 3b60bd88d55..01d12c26141 100644 --- a/lisp/auth-source.el +++ b/lisp/auth-source.el @@ -364,9 +364,9 @@ soon as a function returns non-nil.") "Create an auth-source-backend from an ENTRY in `auth-sources'." (let (backend) - (dolist (f auth-source-backend-parser-functions) + (cl-dolist (f auth-source-backend-parser-functions) (when (setq backend (funcall f entry)) - (return))) + (cl-return))) (unless backend ;; none of the parsers worked |