aboutsummaryrefslogtreecommitdiff
path: root/module/calp/entry-points
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-03-04 01:58:11 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-03-06 11:37:32 +0100
commitaef7d93cb4d31db6f23477b71e26c0b08e25749c (patch)
tree074a1f40c5063ad36f25923f43064bb4f1639ff6 /module/calp/entry-points
parentAllow explicit GUILE environment, document it. (diff)
downloadcalp-aef7d93cb4d31db6f23477b71e26c0b08e25749c.tar.gz
calp-aef7d93cb4d31db6f23477b71e26c0b08e25749c.tar.xz
Add missing (ice-9 format) imports.
Diffstat (limited to 'module/calp/entry-points')
-rw-r--r--module/calp/entry-points/import.scm1
-rw-r--r--module/calp/entry-points/server.scm1
2 files changed, 2 insertions, 0 deletions
diff --git a/module/calp/entry-points/import.scm b/module/calp/entry-points/import.scm
index 441ff527..213a720d 100644
--- a/module/calp/entry-points/import.scm
+++ b/module/calp/entry-points/import.scm
@@ -4,6 +4,7 @@
:use-module (hnh util options)
:use-module (ice-9 getopt-long)
:use-module (ice-9 rdelim)
+ :use-module (ice-9 format)
:use-module (srfi srfi-1)
;; TODO FIX
;; :use-module (output vdir)
diff --git a/module/calp/entry-points/server.scm b/module/calp/entry-points/server.scm
index c9ff339a..4c5637f3 100644
--- a/module/calp/entry-points/server.scm
+++ b/module/calp/entry-points/server.scm
@@ -6,6 +6,7 @@
:use-module (srfi srfi-1)
:use-module (ice-9 getopt-long)
+ :use-module (ice-9 format)
:use-module ((calp server server) :select (start-server))