aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 04:02:45 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 04:02:45 +0200
commitd4e91ce022d7563b58f4204b40a47e978b02943f (patch)
tree7abbab603c36db5b378533f18cdea48bb47e4625
parentWrote (and fixed) tests for filename-extension. (diff)
downloadcalp-d4e91ce022d7563b58f4204b40a47e978b02943f.tar.gz
calp-d4e91ce022d7563b58f4204b40a47e978b02943f.tar.xz
Minor cleanup.
-rw-r--r--module/calp/entry-points/html.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/calp/entry-points/html.scm b/module/calp/entry-points/html.scm
index 0c31a0c8..a324305b 100644
--- a/module/calp/entry-points/html.scm
+++ b/module/calp/entry-points/html.scm
@@ -1,5 +1,4 @@
(define-module (calp entry-points html)
- :export (main)
:use-module (hnh util)
:use-module ((hnh util exceptions) :select (warning))
:use-module ((hnh util path) :select (path-append))
@@ -8,6 +7,7 @@
:use-module (datetime)
:use-module (ice-9 getopt-long)
:use-module ((ice-9 regex) :select (string-match regexp-substitute))
+ :use-module (ice-9 format)
:use-module ((srfi srfi-41) :select (stream-take stream-for-each))
:use-module ((calp html view calendar) :select (html-generate))
@@ -25,6 +25,7 @@
:use-module (calp translation)
:autoload (vcomponent util instance) (global-event-object)
+ :export (main)
)