From f471056b0afd718717491e6e2f09919c98ddb064 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 26 Nov 1997 21:00:36 +0000 Subject: [PATCH] (py-process-filter): py-delete-file-silently is obsolete. Use a py-safe wrapped delete-file call instead. --- Misc/python-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))))) -- 2.50.1