branch: externals/consult commit 345325fc4b3033d1847409442cf746bb4f3c7485 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Fix #728 --- consult.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consult.el b/consult.el index 2405c8fb6e..90f9ad46c2 100644 --- a/consult.el +++ b/consult.el @@ -976,7 +976,7 @@ When no project is found and MAY-PROMPT is non-nil ask the user." dir)) (defun consult--format-location (file line &optional str) - "Format location string 'FILE:LINE:STR'." + "Format location string FILE:LINE:STR." (setq line (number-to-string line) str (concat file ":" line (and str ":") str) file (length file))