diff options
author | Barry Warsaw <barry@python.org> | 2001-02-20 23:07:56 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-02-20 23:07:56 (GMT) |
commit | 715346060abe7385376aaeaa4da57dd6b7513e92 (patch) | |
tree | 0e51e6c4f217d6ee7f38eb2946aea9db9c75de1b | |
parent | 599ce9c6c2299b085011c426f0893d494cf9403d (diff) | |
download | cpython-715346060abe7385376aaeaa4da57dd6b7513e92.zip cpython-715346060abe7385376aaeaa4da57dd6b7513e92.tar.gz cpython-715346060abe7385376aaeaa4da57dd6b7513e92.tar.bz2 |
(py-execute-region): This one's easy... kill the temporary file's
buffer after executing its contents.
-rw-r--r-- | Misc/python-mode.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 3952b4d..b780b75 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -2,7 +2,7 @@ ;; Copyright (C) 1992,1993,1994 Tim Peters -;; Author: 1995-1998 Barry A. Warsaw +;; Author: 1995-2001 Barry A. Warsaw ;; 1992-1994 Tim Peters ;; Maintainer: python-mode@python.org ;; Created: Feb 1992 @@ -1341,7 +1341,9 @@ is inserted at the end. See also the command `py-clear-queue'." )) ;; TBD: delete the buffer ) - ))) + ) + ;; Clean up after ourselves. + (kill-buffer buf))) ;; Code execution commands |