aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/formats/sxcal.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-10-16 15:21:32 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-10-16 15:21:32 +0200
commite96963ab77c6c3d4c12ea00dd4e6906121fb228f (patch)
tree4ab22dc1cc7e3155ebc5e31fc00a2dd4efafe0dc /module/vcomponent/formats/sxcal.scm
parentRemove some old debug prints. (diff)
downloadcalp-e96963ab77c6c3d4c12ea00dd4e6906121fb228f.tar.gz
calp-e96963ab77c6c3d4c12ea00dd4e6906121fb228f.tar.xz
Fixen in vcomponent formats.
Previously almost everything was broken. This takes it back to a somewhat working state.
Diffstat (limited to 'module/vcomponent/formats/sxcal.scm')
-rw-r--r--module/vcomponent/formats/sxcal.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/vcomponent/formats/sxcal.scm b/module/vcomponent/formats/sxcal.scm
index c02dbada..35e0ee1c 100644
--- a/module/vcomponent/formats/sxcal.scm
+++ b/module/vcomponent/formats/sxcal.scm
@@ -1,15 +1,15 @@
(define-module (vcomponent formats sxcal)
:use-module ((vcomponent formats xcal parse)
:select (sxcal->vcomponent))
- :export (serialize deserialize)
- )
+ :use-module ((vcomponent formats xcal output)
+ :select (vcomponent->sxcal))
+ :export (serialize deserialize))
(define (serialize component port)
(write (serialize/object component) port))
(define (serialize/object component)
- ;; TODO where is this defined?
(vcomponent->sxcal component))
(define (deserialize port)