We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8365cac commit eebb1feCopy full SHA for eebb1fe
go-playground.el
@@ -88,10 +88,11 @@ By default confirmation required."
88
(defun go-playground-exec ()
89
"Save the buffer then runs Go compiler for executing the code."
90
(interactive)
91
- (if (go-playground-inside)
92
- (save-buffer t)
93
- (make-local-variable 'compile-command)
94
- (compile (concat go-command " run *.go"))))
+ (if (go-playground-inside)
+ (progn
+ (save-buffer t)
+ (make-local-variable 'compile-command)
95
+ (compile (concat go-command " run *.go")))))
96
97
;;;###autoload
98
(defun go-playground ()
0 commit comments