aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/view/calendar/week.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/calp/html/view/calendar/week.scm')
-rw-r--r--module/calp/html/view/calendar/week.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/calp/html/view/calendar/week.scm b/module/calp/html/view/calendar/week.scm
index b68184f9..ed3f00ec 100644
--- a/module/calp/html/view/calendar/week.scm
+++ b/module/calp/html/view/calendar/week.scm
@@ -2,6 +2,7 @@
:use-module (hnh util)
:use-module (srfi srfi-1)
:use-module (srfi srfi-41)
+ :use-module (srfi srfi-71)
:use-module (rnrs records syntactic)
:use-module (datetime)
:use-module (calp html view calendar shared)
@@ -122,7 +123,7 @@
;; Lay out complete day (graphical)
;; (date . (events)) -> sxml
(define (lay-out-day day)
- (let* (((day-date . events) day)
+ (let* ((day-date events (car+cdr day))
(time-obj (datetime date: day-date))
(short-events (stream->list events))
#;