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

py-safe wrapped delete-file call instead.
This commit is contained in:
Barry Warsaw 1997-11-26 21:00:36 +00:00
parent 3b3ff4e96e
commit f471056b0a
1 changed files with 1 additions and 1 deletions

View File

@ -1016,7 +1016,7 @@ Electric behavior is inhibited inside a string or comment."
(set-buffer curbuf)
(if file-finished
(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))
(if py-file-queue
(py-execute-file pyproc (car py-file-queue)))))