aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/util/group.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 03:23:44 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 03:48:22 +0200
commit1976980d4a272fb7fc3694c734bfc6825edfc721 (patch)
tree8460db1176c64895e9968447588953fac85fe7d6 /module/vcomponent/util/group.scm
parentRemove all inline use-modules. (diff)
downloadcalp-1976980d4a272fb7fc3694c734bfc6825edfc721.tar.gz
calp-1976980d4a272fb7fc3694c734bfc6825edfc721.tar.xz
Centralize (almost) all exports to :export in define-module.
Diffstat (limited to 'module/vcomponent/util/group.scm')
-rw-r--r--module/vcomponent/util/group.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/module/vcomponent/util/group.scm b/module/vcomponent/util/group.scm
index b8852975..89ec47a1 100644
--- a/module/vcomponent/util/group.scm
+++ b/module/vcomponent/util/group.scm
@@ -4,7 +4,9 @@
#:use-module (datetime)
#:use-module (srfi srfi-41)
#:use-module (srfi srfi-41 util)
- #:export (group-stream get-groups-between))
+ #:export (group-stream
+ get-groups-between
+ group->event-list))
;; TODO templetize this
(define-stream (group-stream in-stream)
@@ -67,5 +69,5 @@
[else good-part]))
-(define-public (group->event-list group)
+(define (group->event-list group)
(stream->list (cdr group)))