aboutsummaryrefslogtreecommitdiff
path: root/scripts/genvimvim.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-04-19 21:11:12 +0200
committerGitHub <noreply@github.com>2023-04-19 21:11:12 +0200
commite81331c2b0b6490cfc4204ffd41b7d3df6b2cd8b (patch)
tree0cc40cde87dd971c75f49e079649c259b300b6ab /scripts/genvimvim.lua
parent706f871014b46300180156590ff269ee38473989 (diff)
parent1e60e8c0406f6b4b51c51abb5f53e25bd52fee5e (diff)
downloadrneovim-e81331c2b0b6490cfc4204ffd41b7d3df6b2cd8b.tar.gz
rneovim-e81331c2b0b6490cfc4204ffd41b7d3df6b2cd8b.tar.bz2
rneovim-e81331c2b0b6490cfc4204ffd41b7d3df6b2cd8b.zip
Merge pull request #23106 from bfredl/nlua0
refactor(build): use vendored versions of mpack and luabitop
Diffstat (limited to 'scripts/genvimvim.lua')
-rw-r--r--scripts/genvimvim.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genvimvim.lua b/scripts/genvimvim.lua
index 52bf46399d..9f67d7c417 100644
--- a/scripts/genvimvim.lua
+++ b/scripts/genvimvim.lua
@@ -144,7 +144,7 @@ end
w('\n\nsyn case match')
local vimfun_start = 'syn keyword vimFuncName contained '
w('\n\n' .. vimfun_start)
-local funcs = mpack.unpack(io.open(funcs_file, 'rb'):read("*all"))
+local funcs = mpack.decode(io.open(funcs_file, 'rb'):read("*all"))
for _, name in ipairs(funcs) do
if name then
if lld.line_length > 850 then