diff options
author | Barry Warsaw <barry@python.org> | 1997-11-26 21:00:36 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1997-11-26 21:00:36 (GMT) |
commit | f471056b0afd718717491e6e2f09919c98ddb064 (patch) | |
tree | b83adaa466ca53f321eabf70abafa7637965970b /Misc | |
parent | 3b3ff4e96e71a58515a5ebac04e05e1221149cfb (diff) | |
download | cpython-f471056b0afd718717491e6e2f09919c98ddb064.zip cpython-f471056b0afd718717491e6e2f09919c98ddb064.tar.gz cpython-f471056b0afd718717491e6e2f09919c98ddb064.tar.bz2 |
(py-process-filter): py-delete-file-silently is obsolete. Use a
py-safe wrapped delete-file call instead.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/python-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 0cd3dd5..70faf2c 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))))) |