[Python-checkins] CVS: python/dist/src/Misc python-mode.el,3.109,3.110

Barry Warsaw bwarsaw@users.sourceforge.net
Tue, 20 Feb 2001 15:07:58 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv14671

Modified Files:
	python-mode.el 
Log Message:
(py-execute-region): This one's easy... kill the temporary file's
buffer after executing its contents.


Index: python-mode.el
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/python-mode.el,v
retrieving revision 3.109
retrieving revision 3.110
diff -C2 -r3.109 -r3.110
*** python-mode.el	2000/12/27 17:41:47	3.109
--- python-mode.el	2001/02/20 23:07:56	3.110
***************
*** 3,7 ****
  ;; Copyright (C) 1992,1993,1994  Tim Peters
  
! ;; Author: 1995-1998 Barry A. Warsaw
  ;;         1992-1994 Tim Peters
  ;; Maintainer: python-mode@python.org
--- 3,7 ----
  ;; Copyright (C) 1992,1993,1994  Tim Peters
  
! ;; Author: 1995-2001 Barry A. Warsaw
  ;;         1992-1994 Tim Peters
  ;; Maintainer: python-mode@python.org
***************
*** 1342,1346 ****
        ;; TBD: delete the buffer
        )
!      )))
  
  
--- 1342,1348 ----
        ;; TBD: delete the buffer
        )
!      )
!     ;; Clean up after ourselves.
!     (kill-buffer buf)))