aboutsummaryrefslogtreecommitdiff
path: root/module/text/util.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/text/util.scm')
-rw-r--r--module/text/util.scm11
1 files changed, 9 insertions, 2 deletions
diff --git a/module/text/util.scm b/module/text/util.scm
index b2560bf4..b87e29f2 100644
--- a/module/text/util.scm
+++ b/module/text/util.scm
@@ -1,5 +1,10 @@
+;;; Commentary:
+;;; Small utility functions which helps the rest of the text processing.
+;;; Code:
+
(define-module (text util)
- :use-module (calp util))
+ :use-module ((calp util) :select (define*-public intersperce) )
+ )
(define-public (words str) (string-split str #\space))
(define-public (unwords list) (string-join list " " 'infix))
@@ -40,6 +45,8 @@
(cond [(null? list) ""]
[(= 1 (length list)) (car list)]
[else
- (let* (((tail . rest) (reverse list)))
+ (let* ((rev (reverse list))
+ (tail (car rev))
+ (rest (cdr rev)))
(reverse (cons* tail " " final-delim " "
(intersperce ", " rest))))]))