diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-03-26 17:28:25 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-03-26 21:21:31 -0400 |
commit | 16dd56ba16394bc7acc2d24e2219066b9a0ad027 (patch) | |
tree | a1a415d645f77b6454f2bd1f387824f8ba97dec9 | |
parent | e2e8f1f0d0717dbe6a256f6ea0c61a2d57633443 (diff) | |
download | snakemake-mode-16dd56ba16394bc7acc2d24e2219066b9a0ad027.tar.gz |
snakemake-compile-targets: Remove an unnecessary let*
-rw-r--r-- | snakemake.el | 4 |
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))) |