From 647fe4ce689c2fe6fd0ba2a46583535450688b05 Mon Sep 17 00:00:00 2001 From: James Ravn Date: Tue, 27 Aug 2019 11:02:57 +0100 Subject: [PATCH] Use compile instead of async --- modules/lang/go/autoload.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/lang/go/autoload.el b/modules/lang/go/autoload.el index 569065ae1..709bd2a2e 100644 --- a/modules/lang/go/autoload.el +++ b/modules/lang/go/autoload.el @@ -7,9 +7,8 @@ "The last test run.") (defun +go--spawn (cmd) - (require 'async) (save-selected-window - (async-shell-command cmd))) + (compile cmd))) (defun +go--run-tests (args) (let ((cmd (concat "go test " args)))