diff --git a/python-mode.el b/python-mode.el index 351b00d82a0955a12230f47046d11bbcd1b898e0..45d0a57fc89b8f7bc0d28482350c691ca4a2eb94 100644 --- a/python-mode.el +++ b/python-mode.el @@ -11383,7 +11383,10 @@ problem as best as we can determine." block)) funcbuffer) - (cond ((file-exists-p filename) + (cond ((string= filename "") + (format "(Skipping empty filename)")) + + ((file-exists-p filename) (list lineno (find-file-noselect filename))) ((file-exists-p (py--pdbtrack-map-filename filename))