aboutsummaryrefslogtreecommitdiff
path: root/module/calp/entry-points/convert.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/calp/entry-points/convert.scm')
-rw-r--r--module/calp/entry-points/convert.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/calp/entry-points/convert.scm b/module/calp/entry-points/convert.scm
index 52ee6b2d..f05b1e7b 100644
--- a/module/calp/entry-points/convert.scm
+++ b/module/calp/entry-points/convert.scm
@@ -61,11 +61,11 @@
(case (string->symbol from)
[(ical)
;; read ical
- (@ (vcomponent ical parse) parse-calendar)]
+ (@ (vcomponent formats ical parse) parse-calendar)]
[(xcal)
;; read xcal
(compose
- (@ (vcomponent xcal parse) sxcal->vcomponent)
+ (@ (vcomponent formats xcal parse) sxcal->vcomponent)
;; TODO strip *TOP*
xml->sxml)]
[else (error "")]
@@ -76,13 +76,13 @@
[(ical)
;; write ical
(lambda (component port)
- (display ((@ (vcomponent ical output) component->ical-string)
+ (display ((@ (vcomponent formats ical output) component->ical-string)
component)
port))]
[(xcal)
;; write xcal
(lambda (component port)
- (sxml->xml ((@ (vcomponent xcal output) vcomponent->sxcal)
+ (sxml->xml ((@ (vcomponent formats xcal output) vcomponent->sxcal)
component)
port))]
[else (error "")]))