Function: epg-delete-output-file
epg-delete-output-file is a byte-compiled function defined in
epg.el.gz.
Signature
(epg-delete-output-file CONTEXT)
Documentation
Delete the output file of CONTEXT.
Source Code
;; Defined in /usr/src/emacs/lisp/epg.el.gz
(defun epg-delete-output-file (context)
"Delete the output file of CONTEXT."
(if (and (epg-context-output-file context)
(file-exists-p (epg-context-output-file context)))
(delete-file (epg-context-output-file context))))