diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2020-05-18 12:54:50 +0200 |
---|---|---|
committer | Dale Mellor <mcron-lsfnyl@rdmp.org> | 2020-06-08 08:49:23 +0100 |
commit | d2143dea3f3d933b4c7f19b738827d6ae2bcfe53 (patch) | |
tree | 06a91486df55698fb348e3eaf580cce7beda5802 /src | |
parent | 6a9bfcea4080390186be859c721e35f438d1272d (diff) | |
download | mcron-d2143dea3f3d933b4c7f19b738827d6ae2bcfe53.tar.gz mcron-d2143dea3f3d933b4c7f19b738827d6ae2bcfe53.tar.bz2 mcron-d2143dea3f3d933b4c7f19b738827d6ae2bcfe53.zip |
vixie-time: Remove calls to 'pk' debugging facility
* src/mcron/vixie-time.scm (parse-vixie-time): Remove pk usage
Diffstat (limited to 'src')
-rw-r--r-- | src/mcron/vixie-time.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mcron/vixie-time.scm b/src/mcron/vixie-time.scm index 407ff60..0301434 100644 --- a/src/mcron/vixie-time.scm +++ b/src/mcron/vixie-time.scm @@ -1,6 +1,6 @@ ;;;; vixie-time.scm -- parse Vixie-style times ;;; Copyright © 2003 Dale Mellor <dale_mellor@users.sourceforge.net> -;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org> +;;; Copyright © 2018, 2020 Mathieu Lirzin <mthl@gnu.org> ;;; ;;; This file is part of GNU Mcron. ;;; @@ -360,7 +360,7 @@ accounted for." (time-spec:list wday) (tm:mon time) (tm:year time))))) - (nudge-day! (pk time) (pk (cddr time-spec-list))) + (nudge-day! time (cddr time-spec-list)) (set-tm:hour time -1)) (unless (member (tm:hour time) (time-spec:list hour)) |