From ba48718b5bc6d0eb4eef1f8ead91940e1c011206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sun, 13 Feb 2022 22:12:33 +0100 Subject: Datetime restrict imports. We might want to break datetime out into its own (independent) module, but for that we should have a clear understanding of what it uses. --- module/datetime.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'module/datetime.scm') diff --git a/module/datetime.scm b/module/datetime.scm index 95f2f77d..3b03bf53 100644 --- a/module/datetime.scm +++ b/module/datetime.scm @@ -9,17 +9,18 @@ :use-module (srfi srfi-9) :use-module (srfi srfi-9 gnu) - :use-module (hnh util) + :use-module ((hnh util) + :select (vector-last define*-public set! -> swap case* set + span-upto let* set->)) :use-module (srfi srfi-41) - :use-module (srfi srfi-41 util) + :use-module ((srfi srfi-41 util) + :select (with-streams)) :use-module (ice-9 i18n) :use-module (ice-9 format) - :use-module (ice-9 match) :use-module (ice-9 regex) :use-module (calp util config) - :re-export (locale-month locale-month-short) - ) + :re-export (locale-month locale-month-short)) ;;; Enums -- cgit v1.2.3