aboutsummaryrefslogtreecommitdiff
path: root/snakemake.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-09-01 20:15:15 -0400
committerKyle Meyer <kyle@kyleam.com>2016-09-01 20:39:02 -0400
commit7b210fcd668bc5ba92a0e23f9f5e7b77c77de12f (patch)
treec8a7f004574a393e3633f79588642e8433248d0d /snakemake.el
parenta8efc182c1ab68e65f20f7ce801921435ecf1c2f (diff)
downloadsnakemake-mode-7b210fcd668bc5ba92a0e23f9f5e7b77c77de12f.tar.gz
Ignore standard error stream when digesting output
Avoid including warnings as targets.
Diffstat (limited to 'snakemake.el')
-rw-r--r--snakemake.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/snakemake.el b/snakemake.el
index f5d5dfb..5ac4762 100644
--- a/snakemake.el
+++ b/snakemake.el
@@ -206,7 +206,7 @@ with DIRECTORY and the Snakefile's modification time."
(defun snakemake-insert-output (&rest args)
"Call `snakemake-program' with ARGS and insert output."
- (apply #'call-process snakemake-program nil t nil args))
+ (apply #'call-process snakemake-program nil '(t nil) nil args))
(defun snakemake--split-rules (type)
"Return rules of TYPE.
@@ -242,7 +242,7 @@ The file list is determined by the output of
(snakemake-with-cache directory ("target-files")
(split-string
(with-temp-buffer
- (if (= 0 (call-process snakemake-file-target-program nil t))
+ (if (= 0 (call-process snakemake-file-target-program nil '(t nil)))
(buffer-string)
(error "Error finding file targets")))))))
@@ -410,7 +410,7 @@ $ snakemake --{dag,rulegraph} -- RULES | display"
(setq default-directory dir)
(let ((inhibit-read-only t))
(erase-buffer)
- (apply #'call-process snakemake-program nil t nil
+ (apply #'call-process snakemake-program nil '(t nil) nil
(if rule-graph "--rulegraph" "--dag")
rules))
(image-mode)
@@ -460,7 +460,7 @@ $ snakemake -s <current file> --{dag,rulegraph} | display"
(setq default-directory dir)
(let ((inhibit-read-only t))
(erase-buffer)
- (setq ret-val (call-process snakemake-program nil t nil
+ (setq ret-val (call-process snakemake-program nil '(t nil) nil
(if rule-graph "--rulegraph" "--dag")
"--snakefile" file)))
(if (= 0 ret-val)