diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2021-03-18 17:52:06 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-03-18 17:52:29 -0400 |
commit | 5255259bf048b863e222c41dc406c91be1b2eba0 (patch) | |
tree | 9c1a4be68e96644b18f4f68e690ea357389bcca0 | |
parent | 38ff48813c8cf4ed5478fdeb9e0300032b0a3d1f (diff) |
utils: Remove leading "/" in join-file-name-components.
-rw-r--r-- | haunt/utils.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haunt/utils.scm b/haunt/utils.scm index 764d6cb..fb4d170 100644 --- a/haunt/utils.scm +++ b/haunt/utils.scm @@ -84,7 +84,7 @@ charcter." (define (join-file-name-components components) "Join COMPONENTS into a file name string." - (string-join components "/" 'prefix)) + (string-join components "/")) (define (absolute-file-name file-name) "Return a an absolute file name string relative to the current |