aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-08-12 01:29:04 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-08-12 01:29:04 +0200
commit295b65b9ec50418d71f3db221579ada3ff60f58e (patch)
tree55dbb2cb22336a30bd8542c9676a92001d6c9e85
parentAdd NOTE about get-configuration-documentation. (diff)
downloadcalp-295b65b9ec50418d71f3db221579ada3ff60f58e.tar.gz
calp-295b65b9ec50418d71f3db221579ada3ff60f58e.tar.xz
cleanup.
-rw-r--r--module/util/config.scm12
1 files changed, 3 insertions, 9 deletions
diff --git a/module/util/config.scm b/module/util/config.scm
index ae34963c..29269ce5 100644
--- a/module/util/config.scm
+++ b/module/util/config.scm
@@ -1,20 +1,14 @@
;;; Commentary:
-;; This file should define all global configurable variables which
-;; doesn't belong anywhere else. The config module should then import
-;; this module, and set all configs as needed. The config module
-;; should also be able to set configs gotten from other parts.
+;; Configuration system.
;;; Code:
(define-module (util config)
+ :use-module (util)
:use-module (srfi srfi-1)
- :use-module (srfi srfi-9)
- :use-module (srfi srfi-26)
- :use-module (ice-9 match)
- :use-module (ice-9 format)
+ :use-module (ice-9 format) ; for format-procedure
:use-module (ice-9 curried-definitions) ; for ensure
- :use-module (util)
:export (define-config)
)