aboutsummaryrefslogtreecommitdiff
path: root/module/vcalendar.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-04-20 21:43:29 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-04-20 21:43:29 +0200
commit73cf8eeb8a90749df961a3a4d0e3940205474424 (patch)
tree3a830651a0a22dd36ff4703a0bc15571c56c2116 /module/vcalendar.scm
parentImprove print-vcomponent. (diff)
downloadcalp-73cf8eeb8a90749df961a3a4d0e3940205474424.tar.gz
calp-73cf8eeb8a90749df961a3a4d0e3940205474424.tar.xz
Remove remaining export's.
Diffstat (limited to 'module/vcalendar.scm')
-rw-r--r--module/vcalendar.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/vcalendar.scm b/module/vcalendar.scm
index 433c0a19..829fdf3f 100644
--- a/module/vcalendar.scm
+++ b/module/vcalendar.scm
@@ -7,6 +7,7 @@
#:use-module (srfi srfi-19)
#:use-module (srfi srfi-19 util)
#:use-module (srfi srfi-26)
+ #:use-module ((ice-9 optargs) #:select (define*-public))
#:use-module (util)
#:export (make-vcomponent)
#:re-export (repeating?))
@@ -53,12 +54,11 @@
(filter (lambda (e) (eqv? t (type e)))
lst))
-(define* (children component #:optional only-type)
+(define*-public (children component #:optional only-type)
(let ((childs (%vcomponent-children component)))
(if only-type
(type-filter only-type childs)
childs)))
-(export children)
(define (get-attr component attr)
(%vcomponent-get-attribute