aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--module/output/html.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index cf70b583..46abfdb6 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -62,7 +62,8 @@
;; For that see @var{date->decimal-hour}.
;; NOTE Above comment probably deprecated
(define (time->decimal-hour time)
- (exact->inexact (+ (/ (minute time) 60)
+ (exact->inexact (+ (hour time)
+ (/ (minute time) 60)
(/ (second time) 3600))))
(define (html-attr str)