summaryrefslogtreecommitdiffstats
path: root/Misc/python-mode.el
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-04-11 22:27:41 (GMT)
committerBarry Warsaw <barry@python.org>2001-04-11 22:27:41 (GMT)
commitc8c1a5b7b640b43666cbc960fa8472a2e39fc104 (patch)
treebeb2ca1b2859842b42b43f266aa9d503cf727d8f /Misc/python-mode.el
parentb942c2f7887ee3a3276e7408f0f8694ed72e22ab (diff)
downloadcpython-c8c1a5b7b640b43666cbc960fa8472a2e39fc104.zip
cpython-c8c1a5b7b640b43666cbc960fa8472a2e39fc104.tar.gz
cpython-c8c1a5b7b640b43666cbc960fa8472a2e39fc104.tar.bz2
(py-pdbtrack-track-stack-file): On Ken's suggestion, add "pdbtrack:"
prefix to the message lines.
Diffstat (limited to 'Misc/python-mode.el')
-rw-r--r--Misc/python-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 68e20f2..38a8659 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -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)