diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-02-03 02:16:47 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-02-03 02:16:47 -0500 |
commit | 633b12c952300d55dabaf27e3e305d4e2d481cfb (patch) | |
tree | ec07afd9a0cacade34f5fd53af08fe30544f8b77 | |
parent | 7c56c21ee5bb15ddf8ded2f38cc6f027b9d0fbf6 (diff) | |
download | emacs.d-633b12c952300d55dabaf27e3e305d4e2d481cfb.tar.gz |
Correct typo in comment
-rw-r--r-- | lisp/init-snakemake.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/init-snakemake.el b/lisp/init-snakemake.el index 380a74a..e41bfb5 100644 --- a/lisp/init-snakemake.el +++ b/lisp/init-snakemake.el @@ -5,10 +5,10 @@ (setq snakemake-compile-command-options '("-p")) -;; Although `compile-command' is set when snakemake-mode is derived from -;; Python mode, I need to define it again here because I have a Python -;; mode hook that sets `compile-command', which overides the snakemake -;; version. +;; Although `compile-command' is set when snakemake-mode is derived +;; from Python mode, I need to define it again here because I have a +;; Python mode hook that sets `compile-command', which overrides the +;; snakemake version. (add-hook 'snakemake-mode-hook (lambda () (set (make-local-variable 'compile-command) |