diff options
Diffstat (limited to 'tools/erlparse.lua')
-rw-r--r-- | tools/erlparse.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/erlparse.lua b/tools/erlparse.lua index b593b48d..af1628e5 100644 --- a/tools/erlparse.lua +++ b/tools/erlparse.lua @@ -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
|