aboutsummaryrefslogtreecommitdiff
path: root/module/entry-points/benchmark.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/entry-points/benchmark.scm')
-rw-r--r--module/entry-points/benchmark.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/module/entry-points/benchmark.scm b/module/entry-points/benchmark.scm
index a21b4630..4843a80a 100644
--- a/module/entry-points/benchmark.scm
+++ b/module/entry-points/benchmark.scm
@@ -4,7 +4,6 @@
:use-module (ice-9 getopt-long)
:use-module (util)
:use-module (vcomponent)
- :use-module (util config all)
)
@@ -14,5 +13,5 @@
(define (main args)
(define opts (getopt-long args opt-spec))
- (load-calendars* calendar-files: (cond [(option-ref opts 'file #f) => list]
- [else (calendar-files)])))
+ (cond [(option-ref opts 'file #f) => (compose load-calendars* list)]
+ [else (load-calendars)]))