util.json: Fix for single-line comments (thanks Norbert Kiesel)

This commit is contained in:
Matthew Wild 2011-10-26 18:55:06 -04:00
parent 7eae765921
commit 383eb2f3bf

View file

@ -168,7 +168,7 @@ function json.decode(json)
skipwhitespace();
if ch == "/" and peek == "*" then
skipstarcomment();
elseif ch == "/" and peek == "*" then
elseif ch == "/" and peek == "/" then
skiplinecomment();
else
return;