aboutsummaryrefslogtreecommitdiff
path: root/src/guile
diff options
context:
space:
mode:
Diffstat (limited to 'src/guile')
-rw-r--r--src/guile/skribilo/utils/justify.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/guile/skribilo/utils/justify.scm b/src/guile/skribilo/utils/justify.scm
index 98b7277..7501861 100644
--- a/src/guile/skribilo/utils/justify.scm
+++ b/src/guile/skribilo/utils/justify.scm
@@ -118,8 +118,11 @@
(let ((m (make-string margin #\space)))
(lambda (x)
(display m)
- (display (text-string x))))
- (lambda (x) (display (text-string x))))
+ (display (text-string x))
+ (newline)))
+ (lambda (x)
+ (display (text-string x))
+ (newline)))
((car *justifiers*) 'flush)))
;*---------------------------------------------------------------------*/