aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-04-23 18:47:04 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-04-23 18:47:04 +0200
commit7515004c81b5a6474525e8ab12198e63e3958ba1 (patch)
treec13d712def469d97e8bb084685650970233a9bad
parentGeneral cleanup in HTML. (diff)
downloadcalp-7515004c81b5a6474525e8ab12198e63e3958ba1.tar.gz
calp-7515004c81b5a6474525e8ab12198e63e3958ba1.tar.xz
Fix terminal output.
-rwxr-xr-xmodule/main.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/main.scm b/module/main.scm
index 095a4d7c..760aedf8 100755
--- a/module/main.scm
+++ b/module/main.scm
@@ -53,7 +53,7 @@
(define (displayln a)
(display a) (newline))
-(define (display-event-table events)
+(define (display-event-table cur-event events)
(for-each
(lambda (ev i)
(format #t "~a │ ~a~a~a~a │ ~a~a~%"
@@ -83,7 +83,7 @@
(display-calendar-header! (time-utc->date time))
(displayln (box-top #\┬ #\─ 20 32 10))
- (display-event-table events)
+ (display-event-table cur-event events)
(displayln (box-top #\┴ #\─ 20 32 10))
(unless (null? events)