From 1976980d4a272fb7fc3694c734bfc6825edfc721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Thu, 23 Jun 2022 03:23:44 +0200 Subject: Centralize (almost) all exports to :export in define-module. --- module/text/flow.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/text/flow.scm') 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)))) -- cgit v1.2.3