diff options
author | Arun Isaac | 2022-07-05 11:13:25 +0530 |
---|---|---|
committer | Arun Isaac | 2022-07-05 11:13:25 +0530 |
commit | bcaa0f213cf5ea0b314424cb277f588c1c27fe89 (patch) | |
tree | 168a79d74575417097afe39a539652e426617623 | |
parent | 1dc9f37fe2830e12e3013aab5e5c1b024195380f (diff) | |
download | tissue-bcaa0f213cf5ea0b314424cb277f588c1c27fe89.tar.gz tissue-bcaa0f213cf5ea0b314424cb277f588c1c27fe89.tar.lz tissue-bcaa0f213cf5ea0b314424cb277f588c1c27fe89.zip |
tissue: Delay default value of #:web-files.
* tissue/tissue.scm (tissue-configuration): Delay default value of
#:web-files.
-rw-r--r-- | tissue/tissue.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tissue/tissue.scm b/tissue/tissue.scm index 3bc6e41..870148f 100644 --- a/tissue/tissue.scm +++ b/tissue/tissue.scm @@ -66,7 +66,7 @@ which directory they are in." #'(args ...)))) #`(apply (lambda* (#:key project (aliases '()) (indexed-documents '()) - web-css (web-tags-path "/tags") (web-files '())) + web-css (web-tags-path "/tags") (web-files (delay '()))) "PROJECT is the name of the project. It is used in the title of the generated web pages, among other places. |