diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-04-08 22:30:40 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-04-08 22:30:40 -0400 |
commit | 27a8e084f294fe76419d7efbf94c9ed4c4fcf27e (patch) | |
tree | b0766d32f1860abbffbee27cf4c9637ec164e599 | |
parent | 1adf764dc982d8345a755febab2466c6ff2f0f67 (diff) | |
download | snakemake-mode-27a8e084f294fe76419d7efbf94c9ed4c4fcf27e.tar.gz |
Remove leftover concat
-rw-r--r-- | snakemake-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snakemake-mode.el b/snakemake-mode.el index 73085b4..907d3ba 100644 --- a/snakemake-mode.el +++ b/snakemake-mode.el @@ -200,7 +200,7 @@ Indent according the the first case below that is true. (save-excursion (forward-line -1) (beginning-of-line) - (looking-at-p (concat snakemake-rule-or-subworkflow-re)))) + (looking-at-p snakemake-rule-or-subworkflow-re))) (defun snakemake-in-rule-or-subworkflow-block-p () "Return non-nil if point is in block or on first blank line following one." |