util/json.lua
changeset 5776 bd0ff8ae98a8
parent 5565 6dd806829226
child 6788 bf1f09a5bcf7
--- a/util/json.lua	Fri Aug 09 16:03:48 2013 +0200
+++ b/util/json.lua	Fri Aug 09 17:48:21 2013 +0200
@@ -348,9 +348,9 @@
 function json.decode(json)
 	json = json:gsub("\\.", first_escape) -- get rid of all escapes except \uXXXX, making string parsing much simpler
 		--:gsub("[\r\n]", "\t"); -- \r\n\t are equivalent, we care about none of them, and none of them can be in strings
-	
+
 	-- TODO do encoding verification
-	
+
 	local val, index = _readvalue(json, 1);
 	if val == nil then return val, index; end
 	if json:find("[^ \t\r\n]", index) then return nil, "garbage at eof"; end