diff options
author | Peter Bex <peter@more-magic.net> | 2019-09-22 16:14:48 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2019-09-22 16:14:48 +0200 |
commit | 92d44bfeb039fc5f9e085e206e6cf6d228009793 (patch) | |
tree | 11ca43f359ece5f0a6dbc3baa45fa0f728580c29 /henrietta-cache.scm | |
parent | fdefb889bec4bc4b89d36dbc07ef88aa5e71accc (diff) | |
download | henrietta-cache-92d44bfeb039fc5f9e085e206e6cf6d228009793.tar.gz |
Remove module wrapper
Forgot about the fact that hooks exist.
It is unclear how this should work with initfiles that register hooks.
Ideally it would simply be a matter of exporting the hooks, but then
we need a C4 installation procedure that somehow installs just the
program and an import library. With C5 this would be easier, but I
don't yet want to make henrietta-cache C5-only.
Diffstat (limited to 'henrietta-cache.scm')
-rw-r--r-- | henrietta-cache.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/henrietta-cache.scm b/henrietta-cache.scm index d356d76..a338667 100644 --- a/henrietta-cache.scm +++ b/henrietta-cache.scm @@ -1,4 +1,4 @@ -(module henrietta-cache () +;(module henrietta-cache () (import scheme) @@ -440,4 +440,4 @@ EOF (else (loop (cdr args)))))))) (main (command-line-arguments)) -) +;) |