From 7515004c81b5a6474525e8ab12198e63e3958ba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 23 Apr 2019 18:47:04 +0200 Subject: Fix terminal output. --- module/main.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/main.scm') 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) -- cgit v1.2.3