From 807409d41f8b1a4435ee1cf7ddc3d1a1b9116799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 31 Jan 2022 20:24:18 +0100 Subject: Move stuff from calp/util to hnh/util. This is the first (major) step in splitting the generally useful items into its own library. --- module/text/flow.scm | 2 +- module/text/markup.scm | 2 +- module/text/numbers/sv.scm | 2 +- module/text/util.scm | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'module/text') diff --git a/module/text/flow.scm b/module/text/flow.scm index 528650a5..f7e08e1b 100644 --- a/module/text/flow.scm +++ b/module/text/flow.scm @@ -4,7 +4,7 @@ ;;; Code: (define-module (text flow) - :use-module (calp util) + :use-module (hnh util) :use-module (text util) :use-module (srfi srfi-1) ) diff --git a/module/text/markup.scm b/module/text/markup.scm index b74fd169..295ca198 100644 --- a/module/text/markup.scm +++ b/module/text/markup.scm @@ -1,5 +1,5 @@ (define-module (text markup) - :use-module (calp util) + :use-module (hnh util) :use-module (srfi srfi-1) :use-module (ice-9 match) :use-module (ice-9 pretty-print) diff --git a/module/text/numbers/sv.scm b/module/text/numbers/sv.scm index ca59254b..2a032525 100644 --- a/module/text/numbers/sv.scm +++ b/module/text/numbers/sv.scm @@ -1,5 +1,5 @@ (define-module (text numbers sv) - :use-module (calp util)) + :use-module (hnh util)) ;; only used in number->string-cardinal (define (large-prefix e) diff --git a/module/text/util.scm b/module/text/util.scm index ce39ad10..7144b032 100644 --- a/module/text/util.scm +++ b/module/text/util.scm @@ -3,7 +3,7 @@ ;;; Code: (define-module (text util) - :use-module ((calp util) :select (define*-public intersperse) ) + :use-module ((hnh util) :select (define*-public intersperse) ) ) (define-public (words str) (string-split str #\space)) -- cgit v1.2.3