about summary refs log tree commit diff
path: root/tests/filters/dump.lua
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-20 13:33:37 -0500
committerRory& <root@rory.gay>2026-02-06 14:09:56 +0100
commit7f218cfae810965a3b094270d6df3b92c22d3fe0 (patch)
treebd3a14f18c6103e6f69194d8820d272210ac4511 /tests/filters/dump.lua
parentSilence owner-info error (diff)
downloadcgit-magenta-7f218cfae810965a3b094270d6df3b92c22d3fe0.tar.xz
Remove Lua support
Lua support is unused and the dlsym fwrite/write hacks horrify me.
Clean it up.
Diffstat (limited to 'tests/filters/dump.lua')
-rw-r--r--tests/filters/dump.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/filters/dump.lua b/tests/filters/dump.lua
deleted file mode 100644

index 1f15c93..0000000 --- a/tests/filters/dump.lua +++ /dev/null
@@ -1,17 +0,0 @@ -function filter_open(...) - buffer = "" - for i = 1, select("#", ...) do - buffer = buffer .. select(i, ...) .. " " - end -end - -function filter_close() - html(buffer) - return 0 -end - -function filter_write(str) - buffer = buffer .. string.upper(str) -end - -