diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-10-12 23:21:08 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-10-12 23:21:08 +0200 |
commit | bfda1fb93e8c8f42be3844db0cd69c9ad6c652b7 (patch) | |
tree | 0e0254a203bf96b0d4826e70591d3299997c1fab /src | |
parent | 29d30be730518bf063e31f219954ac54498fd993 (diff) |
src: as: add declarative? #f
Diffstat (limited to 'src')
-rw-r--r-- | src/as/atom.scm | 3 | ||||
-rw-r--r-- | src/as/html.scm | 3 | ||||
-rw-r--r-- | src/as/media-list.scm | 3 |
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) |