AboutSummaryRefsLogTreeCommitDiffStats
path: root/scm/mcron/vixie-specification.scm
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2017-09-27 23:10:29 +0200
committerMathieu Lirzin <mthl@gnu.org>2017-09-27 23:10:29 +0200
commit41b427e1b220389eccd65e436fc3452e2bc0215d (patch)
tree431584749084f7b041d406153cfcf1ad1f043737 /scm/mcron/vixie-specification.scm
parentc0a6eb14c257a47e9573631e5ac09e6528fba377 (diff)
downloadmcron-41b427e1b220389eccd65e436fc3452e2bc0215d.tar.gz
mcron-41b427e1b220389eccd65e436fc3452e2bc0215d.tar.bz2
mcron-41b427e1b220389eccd65e436fc3452e2bc0215d.zip
Revert "Taken on board suggestions of Mathieu Lirzin as per e-mails to the bug-mcron@gnu.org mailing list around September 2015."
This reverts commit c0a6eb14c257a47e9573631e5ac09e6528fba377.
Diffstat (limited to 'scm/mcron/vixie-specification.scm')
-rw-r--r--scm/mcron/vixie-specification.scm14
1 files changed, 8 insertions, 6 deletions
diff --git a/scm/mcron/vixie-specification.scm b/scm/mcron/vixie-specification.scm
index e7fab0a..ab002ba 100644
--- a/scm/mcron/vixie-specification.scm
+++ b/scm/mcron/vixie-specification.scm
@@ -30,7 +30,7 @@
read-vixie-file
check-system-crontab)
#:use-module ((mcron config) :select (config-socket-file))
- #:use-module (mcron mcron-core)
+ #:use-module (mcron core)
#:use-module (mcron job-specifier)
#:use-module (mcron redirect)
#:use-module (mcron vixie-time))
@@ -162,11 +162,13 @@
(parse-vixie-environment line)
(parse-vixie-line line)))
(lambda (key exit-code . msg)
- (throw 'mcron-error exit-code
- (apply string-append
- (number->string report-line)
- ": "
- msg)))))))))
+ (throw
+ 'mcron-error
+ exit-code
+ (apply string-append
+ (number->string report-line)
+ ": "
+ msg)))))))))