aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2021-01-30 23:01:51 +0000
committers-ol <s+removethis@s-ol.nu>2025-03-02 14:24:49 +0000
commita675bc3791604b378b7168d936c5ae373515c579 (patch)
tree6202a8183c2d0e375d88f5104c12dd42ddab4daa /docs
parentfix array builtin (diff)
downloadalive-a675bc3791604b378b7168d936c5ae373515c579.tar.gz
alive-a675bc3791604b378b7168d936c5ae373515c579.zip
lib: switch to losc
Diffstat (limited to 'docs')
-rw-r--r--docs/gen/shim.moon2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gen/shim.moon b/docs/gen/shim.moon
index 2a69f52..46da0ac 100644
--- a/docs/gen/shim.moon
+++ b/docs/gen/shim.moon
@@ -4,7 +4,7 @@ export require
require = do
old_require = require
- blacklist = {k, true for k in *{'oscpack', 'socket', 'system', 'luartmidi'}}
+ blacklist = {k, true for k in *{'losc', 'socket', 'system', 'luartmidi'}}
(mod, ...) ->
return {} if blacklist[mod]
old_require mod, ...