change default line length to 40 columns

This commit is contained in:
2025-09-08 13:39:10 -07:00
parent bc5ddeb84c
commit 3240b30b6f

View File

@@ -110,7 +110,7 @@
(define (inner-iter acc rst)
(let ([line (string-join acc)])
(if (or (empty? rst)
(> (string-length line) 80))
(> (string-length line) 40))
(values acc rst)
(inner-iter (append acc (list (car rst)))
(cdr rst)))))