diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-06-11 22:12:44 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-06-11 22:12:44 -0400 |
commit | d2261549195f8b8a984e3cbf8b3f9e489b6aa2f2 (patch) | |
tree | 29dd013a7787703b7483dff8f20accfe8b105978 /lisp | |
parent | c8e5623c1e1fa95d9bd367b4019717f62d5586f1 (diff) | |
download | emacs.d-d2261549195f8b8a984e3cbf8b3f9e489b6aa2f2.tar.gz |
snakemake-recompile-no-dryrun: Remove leading space
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-snakemake.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/km-snakemake.el b/lisp/km-snakemake.el index 4b9c1fb..64c7221 100644 --- a/lisp/km-snakemake.el +++ b/lisp/km-snakemake.el @@ -34,7 +34,7 @@ (let ((command (car compilation-arguments))) (if (string-prefix-p snakemake-program command) (setf (car compilation-arguments) - (replace-regexp-in-string "--dryrun" "" command)) + (replace-regexp-in-string " --dryrun" "" command)) (user-error "Last compile was not with %s" snakemake-program))) (recompile))) |