branch: externals/ggtags
commit 98b19ef0117e5dc149bd95a31dd8f6916797d68a
Author: SeungKi Kim <[email protected]>
Commit: Leo Liu <[email protected]>
Fix #218: simplify the code
---
ggtags.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ggtags.el b/ggtags.el
index 9b33eecbec..c8458ea017 100644
--- a/ggtags.el
+++ b/ggtags.el
@@ -2417,7 +2417,7 @@ properties in the summary text of each xref."
with re = (cadr (assq 'grep ggtags-global-error-regexp-alist-alist))
while (re-search-forward re nil t)
for summary = (buffer-substring (1+ (match-end 2)) (line-end-position))
- for file = (expand-file-name (file-truename (match-string 1)))
+ for file = (file-truename (match-string 1))
for line = (string-to-number (match-string 2))
for column = (string-match-p tag summary)
if colored do (setq summary (ansi-color-apply summary)) end