From: Barry Warsaw Date: Wed, 26 Nov 1997 21:00:36 +0000 (+0000) Subject: (py-process-filter): py-delete-file-silently is obsolete. Use a X-Git-Tag: v1.5b1~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f471056b0afd718717491e6e2f09919c98ddb064;p=python (py-process-filter): py-delete-file-silently is obsolete. Use a py-safe wrapped delete-file call instead. --- diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 0cd3dd5736..70faf2c5ed 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -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)))))