emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/go-mode adea2e5 395/495: Make go-guru-build-tags a list of


From: ELPA Syncer
Subject: [nongnu] elpa/go-mode adea2e5 395/495: Make go-guru-build-tags a list of strings
Date: Sat, 7 Aug 2021 09:05:55 -0400 (EDT)

branch: elpa/go-mode
commit adea2e5149bb976f956d994a0a9e510167481e72
Author: nwidger <niels.widger@gmail.com>
Commit: Dominik Honnef <dominik@honnef.co>

    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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]