Fixed a variable redeclaration

This commit is contained in:
Waqas Hussain 2008-12-08 07:41:29 +05:00
parent e99904914b
commit b7eba6a2cd

View file

@ -72,7 +72,7 @@ local function readSpecialString()
read("<"); read("<"); -- read <<
local str = "";
if peek() == "\"" then
local str = readString();
str = readString();
elseif peek() ~= ">" then
error();
end