aboutsummaryrefslogtreecommitdiff
path: root/module/output/none.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/output/none.scm')
-rw-r--r--module/output/none.scm16
1 files changed, 7 insertions, 9 deletions
diff --git a/module/output/none.scm b/module/output/none.scm
index 2380438b..757ee8bd 100644
--- a/module/output/none.scm
+++ b/module/output/none.scm
@@ -1,19 +1,17 @@
(define-module (output none)
- #:use-module (statprof)
#:use-module (vcomponent group)
#:use-module (srfi srfi-41)
#:use-module (srfi srfi-19)
+ #:use-module (srfi srfi-19 setters)
#:use-module (srfi srfi-19 util)
#:use-module (util)
#:export (none-main))
(define (none-main calendars events args)
(define date (drop-time (current-date)))
- (statprof
- (lambda ()
- (group->event-list
- (stream-car
- ;; TODO reusing the same grouping causes it to lose events.
- ;; I currently have no idea why, but it's BAD.
- (get-groups-between (group-stream events)
- date date))))))
+ (group->event-list
+ (stream-car
+ ;; TODO reusing the same grouping causes it to lose events.
+ ;; I currently have no idea why, but it's BAD.
+ (get-groups-between (group-stream events)
+ date date))))