Function: auth-source-keys

auth-source-keys is a macro defined in auth-source.el.gz.

Signature

(auth-source-keys SPEC)

Documentation

Return keys from SPEC.

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defmacro auth-source-keys (spec)
  "Return keys from SPEC."
  `(cl-loop for i below (length ,spec) by 2
            collect (nth i ,spec)))