summaryrefslogtreecommitdiff
path: root/main.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-03-01 02:04:02 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-03-01 02:04:02 +0100
commita0876ac766f2d69a86d845b65e55c8e4879d1b4e (patch)
tree696e1b5224c05ef8cdd2a61da33c41c9643ab13a /main.scm
parentInsert error messages into rss feed. (diff)
downloadrss-filter-a0876ac766f2d69a86d845b65e55c8e4879d1b4e.tar.gz
rss-filter-a0876ac766f2d69a86d845b65e55c8e4879d1b4e.tar.xz
Replace references to calp with hnh.
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)