aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-06-28 16:08:16 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-07-07 21:14:09 +0200
commit1956aed7544935770d1d1df25e95b49aa2105f7c (patch)
treef86d51f644ea19c448269ea41a915d9889381ebc
parentEnsure proper environment while compiling. (diff)
downloadcalp-1956aed7544935770d1d1df25e95b49aa2105f7c.tar.gz
calp-1956aed7544935770d1d1df25e95b49aa2105f7c.tar.xz
Move each imported symbol to own line for easier removal.
This allows each of the following commits to remove a single symbol from the import list without problem.
-rw-r--r--module/datetime.scm14
1 files changed, 12 insertions, 2 deletions
diff --git a/module/datetime.scm b/module/datetime.scm
index 1a84d421..81135d39 100644
--- a/module/datetime.scm
+++ b/module/datetime.scm
@@ -10,8 +10,18 @@
:use-module (srfi srfi-88)
:use-module ((hnh util)
- :select (vector-last set! -> ->> swap case* set
- label span-upto set->))
+ :select (
+ vector-last
+ set!
+ ->
+ ->>
+ swap
+ case*
+ set
+ label
+ span-upto
+ set->
+ ))
:use-module (ice-9 i18n)
:use-module (ice-9 format)