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

Barry Warsaw bwarsaw@users.sourceforge.net
Wed, 11 Apr 2001 15:27:43 -0700


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

Modified Files:
	python-mode.el 
Log Message:
(py-pdbtrack-track-stack-file): On Ken's suggestion, add "pdbtrack:"
prefix to the message lines.


Index: python-mode.el
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/python-mode.el,v
retrieving revision 4.0
retrieving revision 4.1
diff -C2 -r4.0 -r4.1
*** python-mode.el	2001/04/11 20:23:24	4.0
--- python-mode.el	2001/04/11 22:27:41	4.1
***************
*** 1149,1158 ****
                    (find-file-other-window fname)
                    (goto-line (string-to-int lineno))
!                   (message "L%s %s" lineno fname)
                    (py-pdbtrack-overlay-arrow t)
                    (pop-to-buffer origbuf t) )
                (if (= (elt fname 0) ?\<)
!                   (message "(Non-file source: '%s')" fname)
!                 (message "Not found: %s" fname))
                )))))))
  
--- 1149,1158 ----
                    (find-file-other-window fname)
                    (goto-line (string-to-int lineno))
!                   (message "pdbtrack: line %s, file %s" lineno fname)
                    (py-pdbtrack-overlay-arrow t)
                    (pop-to-buffer origbuf t) )
                (if (= (elt fname 0) ?\<)
!                   (message "pdbtrack: (Non-file source: '%s')" fname)
!                 (message "pdbtrack: File not found: %s" fname))
                )))))))