From f852c30bcef530d18a474ab6ab8350a3ef93d563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 30 Jan 2020 22:51:45 +0100 Subject: Once again compiles. --- module/entry-points/terminal.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'module/entry-points/terminal.scm') diff --git a/module/entry-points/terminal.scm b/module/entry-points/terminal.scm index df15116c..e53a3d05 100644 --- a/module/entry-points/terminal.scm +++ b/module/entry-points/terminal.scm @@ -20,9 +20,9 @@ calendar-files: (cond [(option-ref opts 'file #f) => list] [else (calendar-files)]) )) - (let ((time (drop-time (or (and=> (option-ref opts 'date #f) parse-freeform-date) - (current-date))))) + (let ((date (or (and=> (option-ref opts 'date #f) parse-freeform-date) + (current-date)))) ;; (format (current-error-port) "len(events) = ~a~%" (stream-length events)) (with-vulgar - (lambda () (main-loop time events)))) + (lambda () (main-loop date events)))) ) -- cgit v1.2.3