util.serialization: Replaced commas with semi-colons between table fields.

This commit is contained in:
Waqas Hussain 2009-11-23 19:50:04 +05:00
parent 8d13f90bed
commit 5b41760cec

View file

@ -47,7 +47,7 @@ local function _simplesave(o, ind, t, func)
else
_simplesave(v, ind+1, t, func);
end
func(t, ",\n");
func(t, ";\n");
end
func(t, indent(ind-1));
func(t, "}");