aboutsummaryrefslogtreecommitdiff
path: root/snakemake.el
diff options
context:
space:
mode:
Diffstat (limited to 'snakemake.el')
-rw-r--r--snakemake.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/snakemake.el b/snakemake.el
index c5df565..09e1916 100644
--- a/snakemake.el
+++ b/snakemake.el
@@ -555,8 +555,8 @@ Snakemake-graph mode is a minor mode that provides a key,
(defun snakemake-compile-targets (targets args)
"Run non-interactive `compile' with 'snakemake [ARGS] -- TARGETS'."
- (let* ((default-directory (snakemake-snakefile-directory))
- (cmd (snakemake--define-compile-command targets args)))
+ (let ((default-directory (snakemake-snakefile-directory))
+ (cmd (snakemake--define-compile-command targets args)))
(compile cmd)
(push cmd compile-history)))