From 4f8d8ea3bcd1f8483627a183dbf3fce12cec56eb Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Mon, 8 Dec 2008 07:41:29 +0500 Subject: [PATCH] Fixed a variable redeclaration --- tools/erlparse.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2