Function: auth-source-delete

auth-source-delete is a byte-compiled function defined in auth-source.el.gz.

Signature

(auth-source-delete &rest SPEC)

Documentation

Delete entries from the authentication backends according to SPEC.

Calls auth-source-search with the :delete property in SPEC set to t. The backend may not actually delete the entries.

Returns the deleted entries.

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defun auth-source-delete (&rest spec)
  "Delete entries from the authentication backends according to SPEC.
Calls `auth-source-search' with the :delete property in SPEC set to t.
The backend may not actually delete the entries.

Returns the deleted entries."
  (apply #'auth-source-search (plist-put spec :delete t)))