aboutsummaryrefslogtreecommitdiff
path: root/module/calp/repl.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 03:23:44 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 03:48:22 +0200
commit1976980d4a272fb7fc3694c734bfc6825edfc721 (patch)
tree8460db1176c64895e9968447588953fac85fe7d6 /module/calp/repl.scm
parentRemove all inline use-modules. (diff)
downloadcalp-1976980d4a272fb7fc3694c734bfc6825edfc721.tar.gz
calp-1976980d4a272fb7fc3694c734bfc6825edfc721.tar.xz
Centralize (almost) all exports to :export in define-module.
Diffstat (limited to 'module/calp/repl.scm')
-rw-r--r--module/calp/repl.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/calp/repl.scm b/module/calp/repl.scm
index 6f2c7c0a..7beee560 100644
--- a/module/calp/repl.scm
+++ b/module/calp/repl.scm
@@ -8,9 +8,10 @@
:use-module ((calp util hooks) :select (shutdown-hook))
:use-module ((hnh util exceptions) :select (warning))
:use-module (calp translation)
+ :export (repl-start)
)
-(define-public (repl-start address)
+(define (repl-start address)
(define lst (string->list address))
(format (current-error-port)
(_ "Starting REPL server at ~a~%") address)