aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/formats/xcal/output.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/vcomponent/formats/xcal/output.scm')
-rw-r--r--module/vcomponent/formats/xcal/output.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/vcomponent/formats/xcal/output.scm b/module/vcomponent/formats/xcal/output.scm
index 26018d92..87ebd32b 100644
--- a/module/vcomponent/formats/xcal/output.scm
+++ b/module/vcomponent/formats/xcal/output.scm
@@ -8,7 +8,7 @@
:use-module (datetime)
:use-module (srfi srfi-1)
:use-module (calp translation)
- )
+ :export (vcomponent->sxcal ns-wrap))
(define (vline->value-tag vline)
@@ -94,7 +94,7 @@
(unless (null? outparams)
`(parameters ,@outparams)))
-(define-public (vcomponent->sxcal component)
+(define (vcomponent->sxcal component)
(define tagsymb (downcase-symbol (type component)))
@@ -129,6 +129,6 @@
,(unless (null? (children component))
`(components ,@(map vcomponent->sxcal (children component)))))))
-(define-public (ns-wrap sxml)
+(define (ns-wrap sxml)
`(icalendar (@ (xmlns "urn:ietf:params:xml:ns:icalendar-2.0"))
,sxml))