diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-08-24 00:18:56 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-08-24 00:18:56 -0400 |
commit | d95bb21e64d2c00498073051847964161fc9fa23 (patch) | |
tree | 33ecf83841f663be019dd7a03597b95e5fc8f2ff | |
parent | ff707b3ac98df08425d7e6c1ca18e5c4351bb039 (diff) | |
download | emacs.d-d95bb21e64d2c00498073051847964161fc9fa23.tar.gz |
init-snakemake.el: Use snakemake-compile-command
This function was recently added to snakemake-mode.
-rw-r--r-- | lisp/init-snakemake.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/init-snakemake.el b/lisp/init-snakemake.el index a5ebd69..5198667 100644 --- a/lisp/init-snakemake.el +++ b/lisp/init-snakemake.el @@ -9,8 +9,6 @@ (add-hook 'snakemake-mode-hook '(lambda () (set (make-local-variable 'compile-command) - (mapconcat 'identity - (cons "snakemake" snakemake-compile-command-options) - " ")))) + (snakemake-compile-command)))) (provide 'init-snakemake) |