branch: elpa/go-mode
commit adea2e5149bb976f956d994a0a9e510167481e72
Author: nwidger <[email protected]>
Commit: Dominik Honnef <[email protected]>
Make go-guru-build-tags a list of strings
This commit fixes a stack trace generated by `go-guru--command` if
go-guru-build-tags is set to any value other than the default empty
string.
Closes: gh-156
Closes: gh-157 [via git-merge-pr]
---
go-guru.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/go-guru.el b/go-guru.el
index 6f98cd2..6a52e90 100644
--- a/go-guru.el
+++ b/go-guru.el
@@ -70,9 +70,9 @@
nil
"History of values supplied to `go-guru-set-scope'.")
-(defcustom go-guru-build-tags ""
+(defcustom go-guru-build-tags '()
"Build tags passed to guru."
- :type 'string
+ :type '(repeat string)
:group 'go-guru)
(defface go-guru-hl-identifier-face