Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix wrong replace from previous commit
  • Loading branch information
est31 committed Jun 1, 2015
1 parent 6df6b2a commit e479337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin/common/misc_helpers.lua
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e479337

Please sign in to comment.