diff options
author | Munyoki Kilyungi | 2024-08-09 12:04:08 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-08-09 12:04:08 +0300 |
commit | 5c699557b08ddba085d911cc7f6897fec21f41b2 (patch) | |
tree | 75cf9e4a2939daf8f6f142d952a64b217934c269 | |
parent | b07b91dfa178a5b3df8f882b6631582bc492b4ef (diff) | |
download | gn-guile-5c699557b08ddba085d911cc7f6897fec21f41b2.tar.gz |
Use "," to unquote variables/functions.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r-- | web/webserver.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/web/webserver.scm b/web/webserver.scm index 92fa197..7412e15 100644 --- a/web/webserver.scm +++ b/web/webserver.scm @@ -34,10 +34,8 @@ ("source code (unless otherwise specified)" . "Affero GNU Public License 3.0 (AGPL3)") ("data (unless otherwise specified)" . "Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)")) ("note" . "This is work in progress (WIP). Note that the final base URL will change! The temporary prefix is:") - ("prefix" unquote - (prefix)) - ("links" ("species" unquote - (mk-meta "species"))))) + ("prefix" ,(prefix)) + ("links" ("species" ,(mk-meta "species"))))) (define +info-meta+ `(("doc" unquote |