Kaydet (Commit) c8c1a5b7 authored tarafından Barry Warsaw's avatar Barry Warsaw

(py-pdbtrack-track-stack-file): On Ken's suggestion, add "pdbtrack:"

prefix to the message lines.
üst b942c2f7
...@@ -1148,12 +1148,12 @@ at the beginning of the line." ...@@ -1148,12 +1148,12 @@ at the beginning of the line."
(progn (progn
(find-file-other-window fname) (find-file-other-window fname)
(goto-line (string-to-int lineno)) (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) (py-pdbtrack-overlay-arrow t)
(pop-to-buffer origbuf t) ) (pop-to-buffer origbuf t) )
(if (= (elt fname 0) ?\<) (if (= (elt fname 0) ?\<)
(message "(Non-file source: '%s')" fname) (message "pdbtrack: (Non-file source: '%s')" fname)
(message "Not found: %s" fname)) (message "pdbtrack: File not found: %s" fname))
))))))) )))))))
(defun py-postprocess-output-buffer (buf) (defun py-postprocess-output-buffer (buf)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment