summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/as/atom.scm3
-rw-r--r--src/as/html.scm3
-rw-r--r--src/as/media-list.scm3
3 files changed, 6 insertions, 3 deletions
diff --git a/src/as/atom.scm b/src/as/atom.scm
index c55d550..092393c 100644
--- a/src/as/atom.scm
+++ b/src/as/atom.scm
@@ -1,6 +1,7 @@
(define-module (src as atom)
#:use-module ((src atom) #:prefix atom:)
- #:use-module (src dates))
+ #:use-module (src dates)
+ #:declarative? #f)
(define main atom:feed)
(define post atom:entry)
diff --git a/src/as/html.scm b/src/as/html.scm
index 0ea5434..8d2a6e8 100644
--- a/src/as/html.scm
+++ b/src/as/html.scm
@@ -1,6 +1,7 @@
(define-module (src as html)
#:use-module (src dates)
- #:use-module ((src html) #:prefix html:))
+ #:use-module ((src html) #:prefix html:)
+ #:declarative? #f)
(define main html:index)
(define post html:post)
diff --git a/src/as/media-list.scm b/src/as/media-list.scm
index 68af2d3..ca29507 100644
--- a/src/as/media-list.scm
+++ b/src/as/media-list.scm
@@ -1,6 +1,7 @@
(define-module (src as media-list)
#:use-module (src dates)
- #:use-module ((src media-list) #:prefix media-list:))
+ #:use-module ((src media-list) #:prefix media-list:)
+ #:declarative? #f)
(define main media-list:media-list)
(define post media-list:ignore)