Fix string.split returning an empty table if string starts with sepearator (#7827)
authorPierre-Yves Rollo <dev@pyrollo.com>
Thu, 1 Nov 2018 20:07:01 +0000 (21:07 +0100)
committerSmallJoker <SmallJoker@users.noreply.github.com>
Thu, 1 Nov 2018 20:07:01 +0000 (21:07 +0100)
commit0e306c084284aeafb3d5cde0cfec11a85a11cb9c
tree4f474057ed335f77747c23127819fb94d5e5c47f
parent4d4bfb12515cbd8f260f27951d5247676e0ba1b4
Fix string.split returning an empty table if string starts with sepearator (#7827)

Calling string.split(":A:B:C:D", ":") returns an empty array.
This is due to first empty string not making repeat loop decreasing max_split which has a 0 value when reaching until.
Changing max_splits default value from -1 to -2 fixes that issue.
builtin/common/misc_helpers.lua