Merge with waqas
authorMatthew Wild <mwild1@gmail.com>
Thu, 24 Feb 2011 01:40:47 +0000
changeset 4169 1033729a2467
parent 4168 4919831b5b56 (current diff)
parent 4147 7f119ebcf55f (diff)
child 4170 adcfd525f329
Merge with waqas
--- a/util/json.lua	Sat Feb 19 02:31:06 2011 +0000
+++ b/util/json.lua	Thu Feb 24 01:40:47 2011 +0000
@@ -268,7 +268,9 @@
 		return tonumber(s);
 	end
 	local function readmember(t)
+		skipstuff();
 		local k = readstring();
+		skipstuff();
 		checkandskip(":");
 		t[k] = readvalue();
 	end