Commit f471056b authored by Barry Warsaw's avatar Barry Warsaw

(py-process-filter): py-delete-file-silently is obsolete. Use a

py-safe wrapped delete-file call instead.
parent 3b3ff4e9
...@@ -1016,7 +1016,7 @@ Electric behavior is inhibited inside a string or comment." ...@@ -1016,7 +1016,7 @@ Electric behavior is inhibited inside a string or comment."
(set-buffer curbuf) (set-buffer curbuf)
(if file-finished (if file-finished
(progn (progn
(py-delete-file-silently (car py-file-queue)) (py-safe (delete-file (car py-file-queue)))
(setq py-file-queue (cdr py-file-queue)) (setq py-file-queue (cdr py-file-queue))
(if py-file-queue (if py-file-queue
(py-execute-file pyproc (car py-file-queue))))) (py-execute-file pyproc (car py-file-queue)))))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment