Function: idlwave-shell-delete-temp-files
idlwave-shell-delete-temp-files is a byte-compiled function defined in
idlw-shell.el.gz.
Signature
(idlwave-shell-delete-temp-files)
Documentation
Delete the temporary files and kill associated buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-delete-temp-files ()
"Delete the temporary files and kill associated buffers."
(if (stringp idlwave-shell-temp-pro-file)
(condition-case nil
(let ((buf (find-buffer-visiting idlwave-shell-temp-pro-file)))
(if (buffer-live-p buf)
(kill-buffer buf))
(delete-file idlwave-shell-temp-pro-file))
(error nil)))
(if (stringp idlwave-shell-temp-rinfo-save-file)
(condition-case nil
(delete-file idlwave-shell-temp-rinfo-save-file)
(error nil))))