summaryrefslogtreecommitdiff
path: root/lisp/init-snakemake.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-11-20 21:56:19 -0500
committerKyle Meyer <kyle@kyleam.com>2014-11-20 21:56:19 -0500
commitca639749d61a73319b3b3a4650c5fc3fa00c01c7 (patch)
treeca5155d98dad1c77a411295e4bf205c92811d3ec /lisp/init-snakemake.el
parentc580c32e8a4831439a67679db01e8ef92c47b500 (diff)
downloademacs.d-ca639749d61a73319b3b3a4650c5fc3fa00c01c7.tar.gz
Stop quoting lambdas
Diffstat (limited to 'lisp/init-snakemake.el')
-rw-r--r--lisp/init-snakemake.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/init-snakemake.el b/lisp/init-snakemake.el
index ccf35f8..c3c4a7f 100644
--- a/lisp/init-snakemake.el
+++ b/lisp/init-snakemake.el
@@ -7,9 +7,9 @@
;; mode hook that sets `compile-command', which overides the snakemake
;; version.
(add-hook 'snakemake-mode-hook
- '(lambda ()
- (set (make-local-variable 'compile-command)
- (snakemake-compile-command))))
+ (lambda ()
+ (set (make-local-variable 'compile-command)
+ (snakemake-compile-command))))
(defun km/snakemake-compile-project-file (jobs)
"Run Snakemake to produce project file at point.