Diff

tools/erlparse.lua @ 607:7d1493fc524a

Fixed a variable redeclaration
author Waqas Hussain <waqas20@gmail.com>
date Mon, 08 Dec 2008 07:41:29 +0500
parent 519:cccd610a0ef9
child 615:4ae3e81513f3
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