Variable: auth-source-backend-parser-functions

auth-source-backend-parser-functions is a variable defined in auth-source.el.gz.

Value

(auth-source-pass-backend-parse
 auth-source-backends-parser-secrets
 auth-source-backends-parser-macos-keychain
 auth-source-backends-parser-file)

Documentation

List of auth-source parser functions.

Each function takes an entry from auth-sources as parameter and returns a backend or nil if the entry is not supported. Add a parser function to this list with add-hook. Searching for a backend starts with the first element on the list and stops as soon as a function returns non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defvar auth-source-backend-parser-functions nil
  "List of auth-source parser functions.
Each function takes an entry from `auth-sources' as parameter and
returns a backend or nil if the entry is not supported.  Add a
parser function to this list with `add-hook'.  Searching for a
backend starts with the first element on the list and stops as
soon as a function returns non-nil.")