aboutsummaryrefslogtreecommitdiff
path: root/module/srfi
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2020-02-14 00:34:31 +0100
committerHugo Hörnquist <hugo@hornquist.se>2020-02-14 00:34:31 +0100
commit17ef66c07a4f603f7db5b2e17a54b39dd7dd0714 (patch)
tree163231f11df57b9a284887dc793bca84441418ef /module/srfi
parentMinor cleanup. (diff)
downloadcalp-17ef66c07a4f603f7db5b2e17a54b39dd7dd0714.tar.gz
calp-17ef66c07a4f603f7db5b2e17a54b39dd7dd0714.tar.xz
parse-time parse UTC Z.
Diffstat (limited to 'module/srfi')
-rw-r--r--module/srfi/srfi-19/alt.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/srfi/srfi-19/alt.scm b/module/srfi/srfi-19/alt.scm
index c02cdaf7..ca4bb97d 100644
--- a/module/srfi/srfi-19/alt.scm
+++ b/module/srfi/srfi-19/alt.scm
@@ -539,7 +539,7 @@
(time hour: (s->n str 0 2)
minute: (s->n str 2 4)
second: (s->n str 4 6)
- ;; TODO UTC
+ utc: (string=? "Z" (string-take-right str 1))
))
(define-public (parse-datetime str)