aboutsummaryrefslogtreecommitdiff
path: root/module/calp/benchmark/parse.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/calp/benchmark/parse.scm')
-rw-r--r--module/calp/benchmark/parse.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/calp/benchmark/parse.scm b/module/calp/benchmark/parse.scm
index f1be66f5..2d7c7b18 100644
--- a/module/calp/benchmark/parse.scm
+++ b/module/calp/benchmark/parse.scm
@@ -27,7 +27,7 @@
(display "All read\n")
(map (lambda ( fullname)
(let ((cal (call-with-input-file fullname
- (@@ (vcomponent ical parse) read-file))))
+ (@@ (vcomponent formats ical parse) read-file))))
cal))
all-calendar-files))))
@@ -36,7 +36,7 @@
(lambda ()
(display "Tokenized\n")
(map (lambda (one-read)
- (map (@@ (vcomponent ical parse) tokenize)
+ (map (@@ (vcomponent formats ical parse) tokenize)
one-read))
all-read))))
@@ -44,7 +44,7 @@
(statprof
(lambda ()
(display "Parsed\n")
- (map (@@ (vcomponent ical parse) parse) tokenized))))
+ (map (@@ (vcomponent formats ical parse) parse) tokenized))))
(format #t "~a files processed~%"
(length parsed))