aboutsummaryrefslogtreecommitdiff
path: root/module/sxml
diff options
context:
space:
mode:
Diffstat (limited to 'module/sxml')
-rw-r--r--module/sxml/namespace.scm2
-rw-r--r--module/sxml/transformations.scm2
2 files changed, 2 insertions, 2 deletions
diff --git a/module/sxml/namespace.scm b/module/sxml/namespace.scm
index 5a274098..57250b93 100644
--- a/module/sxml/namespace.scm
+++ b/module/sxml/namespace.scm
@@ -1,5 +1,5 @@
(define-module (sxml namespace)
- :use-module (util)
+ :use-module (calp util)
:use-module (sxml transform))
(define* (symbol-split symbol key: (sep #\:))
diff --git a/module/sxml/transformations.scm b/module/sxml/transformations.scm
index 037dc00f..5d82ee9c 100644
--- a/module/sxml/transformations.scm
+++ b/module/sxml/transformations.scm
@@ -6,7 +6,7 @@
;;; Code:
(define-module (sxml transformations)
- :use-module (util)
+ :use-module (calp util)
:use-module ((srfi srfi-1) :select (concatenate))
:use-module ((sxml transform) :select (pre-post-order))
)