Fix wrong replace from previous commit
authorest31 <MTest31@outlook.com>
Mon, 1 Jun 2015 22:20:12 +0000 (00:20 +0200)
committerest31 <MTest31@outlook.com>
Mon, 1 Jun 2015 22:20:12 +0000 (00:20 +0200)
builtin/common/misc_helpers.lua

index d8615b6bb98c7c485842062bcb4481eb29902c6e..1c9f2a48ff28ac0c30042a069336bea2241c694c 100644 (file)
@@ -3,7 +3,7 @@
 --------------------------------------------------------------------------------
 -- Localize functions to avoid table lookups (better performance).
 local table_insert = table.insert
-local string_sub, string_sub = string.sub, string.find
+local string_sub, string_find = string.sub, string.find
 
 --------------------------------------------------------------------------------
 function basic_dump(o)
@@ -167,7 +167,7 @@ function string.split(str, delim, include_empty, max_splits, sep_is_pattern)
        local plain = not sep_is_pattern
        max_splits = max_splits + 1
        repeat
-               local np, npe = string_sub(str, delim, pos, plain)
+               local np, npe = string_find(str, delim, pos, plain)
                np, npe = (np or (len+1)), (npe or (len+1))
                if (not np) or (max_splits == 1) then
                        np = len + 1