]> granicus.if.org Git - python/commitdiff
(py-pdbtrack-track-stack-file): On Ken's suggestion, add "pdbtrack:"
authorBarry Warsaw <barry@python.org>
Wed, 11 Apr 2001 22:27:41 +0000 (22:27 +0000)
committerBarry Warsaw <barry@python.org>
Wed, 11 Apr 2001 22:27:41 +0000 (22:27 +0000)
prefix to the message lines.

Misc/python-mode.el

index 68e20f227f8c05923a720c1dcc5c31d6ec9dd1bf..38a8659da7b639548f499ae16742854eef2e3906 100644 (file)
@@ -1148,12 +1148,12 @@ at the beginning of the line."
                 (progn
                   (find-file-other-window fname)
                   (goto-line (string-to-int lineno))
-                  (message "L%s %s" lineno fname)
+                  (message "pdbtrack: line %s, file %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))
+                  (message "pdbtrack: (Non-file source: '%s')" fname)
+                (message "pdbtrack: File not found: %s" fname))
               )))))))
 
 (defun py-postprocess-output-buffer (buf)