summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-03-01 02:07:20 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-03-01 02:07:20 +0100
commit3326c8bd400c3836716edac01c4df0913ee53edd (patch)
treee37d111d89d388f8808e29919e60fa6f02b5cd08
parentReplace references to calp with hnh. (diff)
downloadrss-filter-3326c8bd400c3836716edac01c4df0913ee53edd.tar.gz
rss-filter-3326c8bd400c3836716edac01c4df0913ee53edd.tar.xz
... and change to correct submodules.HEADmaster
-rwxr-xr-xmain.scm2
-rw-r--r--module/rss-filter.scm2
2 files changed, 2 insertions, 2 deletions
diff --git a/main.scm b/main.scm
index ed98034..d7e6f9b 100755
--- a/main.scm
+++ b/main.scm
@@ -5,7 +5,7 @@
(add-to-load-path "/home/hugo/code/calp/module")
(use-modules
- ((hnh util) :select (path-append))
+ ((hnh util path) :select (path-append))
(ice-9 getopt-long)
((xdg basedir) :prefix xdg-)
((rss-filter) :select (handle-feed)))
diff --git a/module/rss-filter.scm b/module/rss-filter.scm
index 513b51b..2d90810 100644
--- a/module/rss-filter.scm
+++ b/module/rss-filter.scm
@@ -9,7 +9,7 @@
:use-module (sxml xpath)
:use-module (sxml namespace)
- :use-module ((hnh util) :select (path-append))
+ :use-module ((hnh util path) :select (path-append))
:use-module (datetime)
)