aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-12-21 16:17:28 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-12-22 22:58:30 +0100
commitd00fea566004e67161ee45246b239fff5d416b0e (patch)
tree5641c0c0d0e78b046b6045ed2440512f12259560 /module/vcomponent.scm
parentComplete rewrite of use2dot (diff)
downloadcalp-d00fea566004e67161ee45246b239fff5d416b0e.tar.gz
calp-d00fea566004e67161ee45246b239fff5d416b0e.tar.xz
Cleanup modules.
Primarly this moves all vcompenent input and output code to clearly labeled modules, instead of being spread out. At the same time it also removes a handfull of unused procedures.
Diffstat (limited to 'module/vcomponent.scm')
-rw-r--r--module/vcomponent.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/module/vcomponent.scm b/module/vcomponent.scm
index 226b740f..c1983977 100644
--- a/module/vcomponent.scm
+++ b/module/vcomponent.scm
@@ -2,14 +2,15 @@
:use-module (calp util)
:use-module (calp util config)
:use-module (vcomponent base)
- :use-module (vcomponent parse)
- :use-module (vcomponent instance methods)
- :re-export (make-vcomponent
- parse-cal-path parse-calendar))
+ ;; :use-module ((vcomponent util instance methods)
+ ;; :select (make-vcomponent))
+ :use-module ((vcomponent util parse-cal-path)
+ :select (parse-cal-path))
+ :re-export (make-vcomponent parse-cal-path))
(define cm (module-public-interface (current-module)))
(module-use! cm (resolve-interface '(vcomponent base)))
-(module-use! cm (resolve-interface '(vcomponent instance methods)))
+(module-use! cm (resolve-interface '(vcomponent util instance methods)))
(define-config calendar-files '()