Changeset

607:7d1493fc524a

Fixed a variable redeclaration
author Waqas Hussain <waqas20@gmail.com>
date Mon, 08 Dec 2008 07:41:29 +0500
parents 606:f8f1534a4e06
children 608:3758af511ce8
files tools/erlparse.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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