aboutsummaryrefslogtreecommitdiff
path: root/module/text/flow.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/text/flow.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/text/flow.scm')
-rw-r--r--module/text/flow.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/text/flow.scm b/module/text/flow.scm
index 3b958480..315bea06 100644
--- a/module/text/flow.scm
+++ b/module/text/flow.scm
@@ -8,11 +8,11 @@
:use-module (text util)
:use-module (srfi srfi-1)
:use-module (srfi srfi-71)
- )
+ :export (flow-text))
;; str -> (str)
-(define*-public (flow-text str #:key (width 70))
+(define* (flow-text str #:key (width 70))
(flatten
(map (lambda (line) (justify-line line #:width width))
(lines str))))