From 0cd63f061a274c35b38917f668fd9e833a6d2274 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Tue, 30 Jun 2009 14:41:28 +0000 Subject: Revert mistaken bug fix to format.string_to_table and made corresponding change to processinfo. Bumped version to 0.6.1. (reverted part of 9b934599d84f0b3dd32cda657790dc2c34bd95d8) --- lib/format.lua | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'lib/format.lua') diff --git a/lib/format.lua b/lib/format.lua index 9492eca..63b8fec 100644 --- a/lib/format.lua +++ b/lib/format.lua @@ -175,14 +175,10 @@ function string_to_table ( text, delimiter) while 1 do local first, last = string.find(text, delimiter, pos) if first then -- found? - if first > pos then - table.insert(list, string.sub(text, pos, first-1)) - end + table.insert(list, string.sub(text, pos, first-1)) pos = last+1 else - if pos < string.len(text) then - table.insert(list, string.sub(text, pos)) - end + table.insert(list, string.sub(text, pos)) break end end -- cgit v1.2.3