Function: auth-source-pick-first-password
auth-source-pick-first-password is a byte-compiled function defined in
auth-source.el.gz.
Signature
(auth-source-pick-first-password &rest SPEC)
Documentation
Pick the first secret found by applying auth-source-search to SPEC.
Source Code
;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defun auth-source-pick-first-password (&rest spec)
"Pick the first secret found by applying `auth-source-search' to SPEC."
(auth-info-password
(car (apply #'auth-source-search (plist-put spec :max 1)))))