summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xextras/luacov/src/bin/luacov1
1 files changed, 1 insertions, 0 deletions
diff --git a/extras/luacov/src/bin/luacov b/extras/luacov/src/bin/luacov
index 6a24bc6..71b291e 100755
--- a/extras/luacov/src/bin/luacov
+++ b/extras/luacov/src/bin/luacov
@@ -77,6 +77,7 @@ local exclusions =
{ true, "local%s+[%w_,%s]+%s*=" }, -- "local var1, ..., varN ="
{ true, "local%s+function%s*%([%w_,%.%s]*%)" }, -- "local function(arg1, ..., argN)"
{ true, "local%s+function%s+[%w_]*%s*%([%w_,%.%s]*%)" }, -- "local function f (arg1, ..., argN)"
+ { true, "for.+in" } -- 'for long,arg,list in'
}
local function excluded(line)