Function: org-mobile-cleanup-encryption-tempfile
org-mobile-cleanup-encryption-tempfile is a byte-compiled function
defined in org-mobile.el.gz.
Signature
(org-mobile-cleanup-encryption-tempfile)
Documentation
Remove the encryption tempfile if it exists.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-mobile.el.gz
(defun org-mobile-cleanup-encryption-tempfile ()
"Remove the encryption tempfile if it exists."
(and (stringp org-mobile-encryption-tempfile)
(file-exists-p org-mobile-encryption-tempfile)
(delete-file org-mobile-encryption-tempfile)))