diff options
author | Peter Bex <peter@more-magic.net> | 2018-09-06 08:09:36 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2018-09-06 08:09:36 +0200 |
commit | 7d20077b82fa1ec1c85b99f92cf48de808e95578 (patch) | |
tree | 684211c73a2441cd3679946f1dbcf1bda07efeec /henrietta-cache.scm | |
parent | f41fbd41f7e3974d88191218ea1b4ef49fb4e8f8 (diff) | |
download | henrietta-cache-7d20077b82fa1ec1c85b99f92cf48de808e95578.tar.gz |
Drop module wrapper, as that breaks backwards compatibility
The -i (init file) option means we can't wrap things in a module,
unless we build and ship the module, which will mean people need
to rewrite the init file. Not worth the hassle to figure out how
to do it "properly".
Fixes #1531, reported by Mario Goulart
Diffstat (limited to 'henrietta-cache.scm')
-rw-r--r-- | henrietta-cache.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/henrietta-cache.scm b/henrietta-cache.scm index c004924..1771f5b 100644 --- a/henrietta-cache.scm +++ b/henrietta-cache.scm @@ -1,5 +1,3 @@ -(module henrietta-cache () - (import scheme) (cond-expand @@ -365,4 +363,3 @@ EOF (else (loop (cdr args)))))))) (main (command-line-arguments)) -) |