aboutsummaryrefslogtreecommitdiff
path: root/module/sxml
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 04:21:16 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-06-23 04:21:16 +0200
commit8517a196f4110376ce769611594cd8692f72dc7c (patch)
treed6bf928850ffee9372d86a4587cc0bf6036b8521 /module/sxml
parentLimit imports in (srfi srfi-41 util). (diff)
downloadcalp-8517a196f4110376ce769611594cd8692f72dc7c.tar.gz
calp-8517a196f4110376ce769611594cd8692f72dc7c.tar.xz
Remove ->str and ->quoted-string.
->str as an alias of ->string is removed. ->string is however left. ->quoted-string was always weird, and was only used once.
Diffstat (limited to 'module/sxml')
-rw-r--r--module/sxml/transformations.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/sxml/transformations.scm b/module/sxml/transformations.scm
index 61de42aa..09b26ad4 100644
--- a/module/sxml/transformations.scm
+++ b/module/sxml/transformations.scm
@@ -31,7 +31,7 @@
(attribute-transformer
tree
`((href . ,(lambda (_ . content)
- `(href ,@(transformer (string-concatenate (map ->str content))))
+ `(href ,@(transformer (string-concatenate (map ->string content))))
)))))
(define (href-prefixer tree prefix)