Function: tramp-delete-temp-file-function
tramp-delete-temp-file-function is a byte-compiled function defined in
tramp.el.gz.
Signature
(tramp-delete-temp-file-function)
Documentation
Remove temporary files related to current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-delete-temp-file-function ()
"Remove temporary files related to current buffer."
(declare (tramp-suppress-trace t))
(when (stringp tramp-temp-buffer-file-name)
(ignore-errors (delete-file tramp-temp-buffer-file-name))))