Merge #6110 'refactor: Move vim_*printf to strings.c'.

This commit is contained in:
Justin M. Keyes
2017-02-17 16:25:19 +01:00
5 changed files with 859 additions and 839 deletions

View File

@@ -66,7 +66,7 @@ for i, cmd in ipairs(defs) do
defsfile:write(string.format([[
[%s] = {
.cmd_name = (char_u *) "%s",
.cmd_func = &%s,
.cmd_func = (ex_func_T)&%s,
.cmd_argt = %uL,
.cmd_addr_type = %i
}]], enumname, cmd.command, cmd.func, cmd.flags, cmd.addr_type))