From 1aa15a842c1a568e15a3a6485b38df7b20d77453 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Sun, 8 Aug 2021 23:28:53 +0530 Subject: [PATCH] [compile] my-compile-project - read command before running --- init.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.org b/init.org index f5cdb79..12e011b 100644 --- a/init.org +++ b/init.org @@ -2849,7 +2849,7 @@ pjb suggested a different approach [[http://paste.lisp.org/display/10157][here]] (defun my-compile-project (file cmd) "Locate directory with FILE and run compile command CMD." (cd (locate-dominating-file default-directory file)) - (compile cmd)) + (compile (compilation-read-command cmd))) #+END_SRC