From 4b5d60c64d8968ee5197956c2f7dee70bd48e79c Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 16 Mar 2022 16:22:10 +0530 Subject: tissue: Fix "#\s pace" typo. It should be "#\space", not "#\s pace". * tissue/web.scm (issue-list-item-markup-writer-action): Fix "#\s pace" typo. --- tissue/web.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tissue/web.scm b/tissue/web.scm index bd6e0b0..0a07a34 100644 --- a/tissue/web.scm +++ b/tissue/web.scm @@ -117,7 +117,7 @@ NEW-EXTENSION." #\/))))) ,(markup-option markup #:title)) ,@(map (lambda (tag) - (let ((words (string-split tag (char-set #\- #\s pace)))) + (let ((words (string-split tag (char-set #\- #\space)))) `(a (@ (href ,(string-append (%tags-path) "/" (uri-encode (sanitize-string tag)) ".html")) -- cgit v1.2.3