diff --git a/cider-interaction.el b/cider-interaction.el index 35de841da..7aa9b593b 100644 --- a/cider-interaction.el +++ b/cider-interaction.el @@ -1399,7 +1399,8 @@ If location could not be found, return nil." (let ((file (nth 0 info)) (line (nth 1 info)) (col (nth 2 info))) - (unless (cider--tooling-file-p file) + (unless (or (not (stringp file)) + (cider--tooling-file-p file)) (-when-let (buffer (cider-find-file file)) (with-current-buffer buffer (save-excursion