take care of space before brackets in function

This commit is contained in:
sonoro1234
2018-08-31 09:53:25 +02:00
parent 07d6c6897a
commit b5150cc1ac
6 changed files with 2 additions and 8 deletions

View File

@@ -237,7 +237,7 @@ end
local function struct_parser()
local function_re = "(%a*%w+%b())" --"(%a*%w+%s+%w+%b())"
local function_re = "(%a*%w+%s*%b())" --"(%a*%w+%b())" --"(%a*%w+%s+%w+%b())"
local function_closing_re = "}"
local function_closed_re = "[;}]$"
local operator_re = "operator.-%b()"