aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--module/calp/main.scm2
-rw-r--r--module/calp/repl.scm (renamed from module/repl.scm)6
2 files changed, 6 insertions, 2 deletions
diff --git a/module/calp/main.scm b/module/calp/main.scm
index 040a7c00..2a7944a9 100644
--- a/module/calp/main.scm
+++ b/module/calp/main.scm
@@ -17,7 +17,7 @@
:use-module ((ice-9 popen) :select (open-input-pipe))
:use-module (statprof)
- :use-module (repl)
+ :use-module (calp repl)
)
diff --git a/module/repl.scm b/module/calp/repl.scm
index 44a3ba2f..f43b8fce 100644
--- a/module/repl.scm
+++ b/module/calp/repl.scm
@@ -1,4 +1,8 @@
-(define-module (repl)
+;;; Commentary:
+;;; Starts a repl server on some form of address.
+;;; Code:
+
+(define-module (calp repl)
:use-module (system repl server)
:use-module (ice-9 regex)
:use-module ((util hooks) :select (shutdown-hook))