summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2023-10-12 23:21:08 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2023-10-12 23:21:08 +0200
commitbfda1fb93e8c8f42be3844db0cd69c9ad6c652b7 (patch)
tree0e0254a203bf96b0d4826e70591d3299997c1fab
parent29d30be730518bf063e31f219954ac54498fd993 (diff)
src: as: add declarative? #f
-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)