summaryrefslogtreecommitdiff
path: root/main.scm
diff options
context:
space:
mode:
Diffstat (limited to 'main.scm')
-rwxr-xr-xmain.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.scm b/main.scm
index 276338d..ed98034 100755
--- a/main.scm
+++ b/main.scm
@@ -5,7 +5,7 @@
(add-to-load-path "/home/hugo/code/calp/module")
(use-modules
- ((calp util) :select (path-append))
+ ((hnh util) :select (path-append))
(ice-9 getopt-long)
((xdg basedir) :prefix xdg-)
((rss-filter) :select (handle-feed)))
@@ -33,7 +33,7 @@
(define (main args)
- (define opts (getopt-long args ((@ (calp util options) getopt-opt) option-spec)))
+ (define opts (getopt-long args ((@ (hnh util options) getopt-opt) option-spec)))
(define output-directory (option-ref opts 'output "."))
(define config-dir
@@ -45,7 +45,7 @@
(define quiet? (option-ref opts 'quiet #f))
(when (option-ref opts 'help #f)
- ((@ (calp util options) print-arg-help) option-spec)
+ ((@ (hnh util options) print-arg-help) option-spec)
(exit 0))
(unless (file-exists? config-dir)