Function: go-ts-mode--get-build-tags-flag
go-ts-mode--get-build-tags-flag is a byte-compiled function defined in
go-ts-mode.el.gz.
Signature
(go-ts-mode--get-build-tags-flag)
Documentation
Return the compile flag for build tags.
This function respects the go-ts-mode-build-tags variable for
specifying build tags.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/go-ts-mode.el.gz
(defun go-ts-mode--get-build-tags-flag ()
"Return the compile flag for build tags.
This function respects the `go-ts-mode-build-tags' variable for
specifying build tags."
(if go-ts-mode-build-tags
(format "-tags %s" (string-join go-ts-mode-build-tags ","))
""))