From: Steven Barth Date: Tue, 9 Sep 2008 16:04:49 +0000 (+0000) Subject: Replace some util.splits with gmatch and match X-Git-Tag: 0.9.0~1363 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8766b050bd9e6399a75ac8604516631e7562c573;p=oweals%2Fluci.git Replace some util.splits with gmatch and match --- diff --git a/libs/uvl/luasrc/uvl.lua b/libs/uvl/luasrc/uvl.lua index 471829af3..35e5f5311 100644 --- a/libs/uvl/luasrc/uvl.lua +++ b/libs/uvl/luasrc/uvl.lua @@ -666,10 +666,9 @@ function UVL._read_dependency( self, values, deps ) if values then values = ( type(values) == "table" and values or { values } ) for _, value in ipairs(values) do - local parts = util.split( value, "%s*,%s*", nil, true ) local condition = { } - for i, val in ipairs(parts) do - local k, v = unpack(util.split(val, "%s*=%s*", nil, true)) + for val in value:gmatch("[^%s,]+") do + local k, v = val:match("([^%s]+)%s*=%s*([^%s]+)") if k and ( k:match("^"..expr.."%."..expr.."%."..expr.."$") or