fixup! genvimvim.lua: fix matching functions

This commit is contained in:
Daniel Hahler
2016-07-14 00:42:55 +02:00
parent e63c6ca8f2
commit 329f922f14
2 changed files with 14 additions and 5 deletions

View File

@@ -124,11 +124,12 @@ for line in eval_fd:lines() do
break
end
local func_name = line:match('^ { "([%w_]+)",')
assert(func_name, 'Did not find a function in line: '..line)
if lld.line_length > 850 then
w('\n' .. vimfun_start)
if func_name then
if lld.line_length > 850 then
w('\n' .. vimfun_start)
end
w(' ' .. func_name)
end
w(' ' .. func_name)
end
end
eval_fd:close()