aboutsummaryrefslogtreecommitdiff
path: root/config.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-03-29 17:17:49 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-03-29 17:17:49 +0200
commitf850c09be82e7631c35932e3a3fd037d4fcaa607 (patch)
tree4573d2ce8a08ffbb8f15d8b228d13874a4d9bd50 /config.scm
parentUpdate tests. (diff)
downloadcalp-f850c09be82e7631c35932e3a3fd037d4fcaa607.tar.gz
calp-f850c09be82e7631c35932e3a3fd037d4fcaa607.tar.xz
Fix bug where descriptions didn't render unless the contained url:s.
Diffstat (limited to 'config.scm')
-rw-r--r--config.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.scm b/config.scm
index c4996d40..0a8112b6 100644
--- a/config.scm
+++ b/config.scm
@@ -48,7 +48,7 @@
(let recur ((str str))
(let ((m (regexp-exec regexp str)))
(if (not m)
- '()
+ (list str)
(cons* (match:prefix m)
(a (match:substring m))
(recur (match:suffix m)))))))