branch: elpa/go-mode
commit 120fb911f1d8038f828da85eed8aaad977dabd8c
Author: Craig McDaniel <[email protected]>
Commit: Dominik Honnef <[email protected]>
Use "guru -tags=xxx yyy", not "guru -tags=xxx,yyy"
Closes: gh-252 [via git-merge-pr]
---
go-guru.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/go-guru.el b/go-guru.el
index 7bcccf1..42bb6d5 100644
--- a/go-guru.el
+++ b/go-guru.el
@@ -281,7 +281,7 @@ effective name of the current buffer."
(cmd (append (list go-guru-command
"-modified"
"-scope" go-guru-scope
- (format "-tags=%s" (mapconcat 'identity
go-guru-build-tags ",")))
+ (format "-tags=%s" (mapconcat 'identity
go-guru-build-tags " ")))
flags
(list mode
posn))))