]> git.eshelyaron.com Git - emacs.git/commitdiff
; project--find-regexp-in-files: Avoid prepending remote-id twice (bug#34343)
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 27 Dec 2019 14:06:25 +0000 (17:06 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 27 Dec 2019 14:19:00 +0000 (17:19 +0300)
lisp/progmodes/project.el

index e21600ffe09219086dc09a237359b8f76b445b26..d8909aca740829a2a8d486d05e31f87cca3c57ce 100644 (file)
@@ -485,7 +485,7 @@ pattern to search for."
                     (buffer-substring (point-min) (line-end-position))))
       (while (re-search-forward grep-re nil t)
         (push (list (string-to-number (match-string line-group))
-                    (concat remote-id (match-string file-group))
+                    (match-string file-group)
                     (buffer-substring-no-properties (point) (line-end-position)))
               hits)))
     (setq xrefs (xref--convert-hits (nreverse hits) regexp))