diff options
author | Arun Isaac | 2023-05-30 21:59:08 +0100 |
---|---|---|
committer | Arun Isaac | 2023-05-30 22:00:46 +0100 |
commit | 7590d6d8ec1a5c688dd5b40c2ba39a55f0961088 (patch) | |
tree | 36fa83f9e22d97d4d78691cf9aa5b6c9e5b83e66 | |
parent | 6fdb7801b0b6b108b48e1190535767b8584c3e7e (diff) | |
download | tissue-7590d6d8ec1a5c688dd5b40c2ba39a55f0961088.tar.gz tissue-7590d6d8ec1a5c688dd5b40c2ba39a55f0961088.tar.lz tissue-7590d6d8ec1a5c688dd5b40c2ba39a55f0961088.zip |
tissue.scm: Add current directory to load path.
Prior to this commit, tissue would be unable to find (doc skribilo)
during indexing and crash.
* tissue.scm: Add current directory to load path.
Bug reported by: Morgan Smith <Morgan.J.Smith@outlook.com>
-rw-r--r-- | tissue.scm | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,10 @@ (use-modules (tissue skribilo) (tissue web themes default)) +;; Add current directory to load path so that (doc skribilo) can be +;; found when indexing doc/tissue.skb. +(add-to-load-path (dirname (current-filename))) + (define %css "/style.css") |