summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-04-11 18:36:43 -0400
committerDavid Thompson <dthompson2@worcester.edu>2015-04-11 18:37:24 -0400
commit2e136d15a5b93710377bcba3d9181b949bb55c0b (patch)
treec2c634c4301d8949fd84473ba09f4a8988db7658
parentdb0f607f282d14d78a1caa313a93f1274c91a900 (diff)
config: Remove unneeded things.
* haunt/config.scm.in (%haunt-cwd, haunt-file-name, haunt-output-directory): Remove.
-rw-r--r--haunt/config.scm.in16
1 files changed, 1 insertions, 15 deletions
diff --git a/haunt/config.scm.in b/haunt/config.scm.in
index 641d894..e39d53f 100644
--- a/haunt/config.scm.in
+++ b/haunt/config.scm.in
@@ -23,20 +23,6 @@
;;; Code:
(define-module (haunt config)
- #:export (%haunt-version
- %haunt-cwd
- haunt-file-name
- haunt-output-directory))
+ #:export (%haunt-version))
(define %haunt-version "@PACKAGE_VERSION@")
-
-(define %haunt-cwd (getcwd))
-
-(define (haunt-file-name rel)
- "Return an absolute file name to the file REL in the haunt current
-working directory."
- (string-append %haunt-cwd "/" rel))
-
-(define (haunt-output-directory)
- "Return the current haunt compiled page output directory."
- (haunt-file-name "output"))