Function: secrets-delete-collection

secrets-delete-collection is a byte-compiled function defined in secrets.el.gz.

Signature

(secrets-delete-collection COLLECTION)

Documentation

Delete collection labeled COLLECTION.

Source Code

;; Defined in /usr/src/emacs/lisp/net/secrets.el.gz
(defun secrets-delete-collection (collection)
  "Delete collection labeled COLLECTION."
  (let ((collection-path (secrets-collection-path collection)))
    (unless (secrets-empty-path collection-path)
      (secrets-prompt
       (dbus-call-method
	:session secrets-service collection-path
	secrets-interface-collection "Delete")))))