aboutsummaryrefslogtreecommitdiff
path: root/module/text/flow.scm
diff options
context:
space:
mode:
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 3d97bed6..75ef5ccf 100644
--- a/module/text/flow.scm
+++ b/module/text/flow.scm
@@ -20,7 +20,7 @@
(string-concatenate/shared
(merge words (map (lambda (n) (make-string n #\space))
space-list)
- (let ((f #t)) (lambda _ (mod/r! f not)))))))
+ (let ((f #t)) (lambda _ (set/r! f = not)))))))
@@ -32,7 +32,7 @@
(let* ((head tail (span
(let ((w 0))
(lambda (word) ; Take words until we are above the limit.
- (< (mod/r! w = (+ 1 (true-string-length word)))
+ (< (set/r! w = (+ 1 (true-string-length word)))
width)))
lst)))
(cond ((null? tail) (list (unwords head))) ; Don't justify last line.