diff options
author | Kyle Meyer <kyle@kyleam.com> | 2022-02-22 20:43:59 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2022-02-22 20:43:59 -0500 |
commit | 7362ecce2b9b29d93dcc2119bbdeb0800d6a2b86 (patch) | |
tree | 29c6097284ba9bb4520959505589120e3ddbf2aa | |
parent | 1a0d857e7e296608bc06331760b8de00cbe2f2cd (diff) | |
download | snakemake-mode-7362ecce2b9b29d93dcc2119bbdeb0800d6a2b86.tar.gz |
Delete snakemake-compile compatibility alias
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | snakemake.el | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -17,6 +17,9 @@ NEWS -- history of user-visible changes -*- mode: org; -*- v6.15.0), 'handover' (new in Snakemake v6.2.0), 'name' (new in Snakemake v5.31.0), and 'notebook' (new in Snakemake v5.10.0). +- The ~snakemake-compile~ command, marked obsolete in v1.2.0 in favor + of ~snakemake-build~, has been removed. + * v1.8.0 - Additional Snakemake keywords are now recognized: 'envmodules' (new diff --git a/snakemake.el b/snakemake.el index 98467ce..343a329 100644 --- a/snakemake.el +++ b/snakemake.el @@ -724,8 +724,6 @@ $ snakemake [ARGS] -- <targets>" (compilation-read-command t)) (call-interactively #'compile))))) -(define-obsolete-function-alias 'snakemake-compile 'snakemake-build "1.2.0") - (transient-define-argument snakemake:--allowed-rules () :description "Allowed rules" :class 'transient-option |