Fixed a variable redeclaration

Mon, 08 Dec 2008 07:41:29 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Mon, 08 Dec 2008 07:41:29 +0500
changeset 607
7d1493fc524a
parent 606
f8f1534a4e06
child 608
3758af511ce8

Fixed a variable redeclaration

tools/erlparse.lua file | annotate | diff | comparison | revisions
--- a/tools/erlparse.lua	Mon Dec 08 07:11:35 2008 +0500
+++ b/tools/erlparse.lua	Mon Dec 08 07:41:29 2008 +0500
@@ -72,7 +72,7 @@
 	read("<"); read("<"); -- read <<
 	local str = "";
 	if peek() == "\"" then
-		local str = readString();
+		str = readString();
 	elseif peek() ~= ">" then
 		error();
 	end

mercurial