aboutsummaryrefslogtreecommitdiff
path: root/snakemake.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2017-03-26 17:28:25 -0400
committerKyle Meyer <kyle@kyleam.com>2017-03-26 21:21:31 -0400
commit16dd56ba16394bc7acc2d24e2219066b9a0ad027 (patch)
treea1a415d645f77b6454f2bd1f387824f8ba97dec9 /snakemake.el
parente2e8f1f0d0717dbe6a256f6ea0c61a2d57633443 (diff)
downloadsnakemake-mode-16dd56ba16394bc7acc2d24e2219066b9a0ad027.tar.gz
snakemake-compile-targets: Remove an unnecessary let*
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)))