ports/graphics/flasm/files/patch-unflasm.c
2002-05-17 09:49:43 +00:00

38 lines
823 B
C

--- unflasm.c.orig Thu Nov 22 05:59:32 2001
+++ unflasm.c Tue Jan 22 10:28:58 2002
@@ -485,15 +485,7 @@
println("setVariable");
break;
case SWFACTION_SETTARGETEXPRESSION:
- if (targetIndent==1)
- {
- --indent;
- println("end");
- targetIndent = 0;
- }
println("setTargetExpr");
- ++indent;
- targetIndent = 1;
break;
case SWFACTION_STRINGCONCAT:
println("concat");
@@ -1008,18 +1000,7 @@
case SWFACTION_SETTARGET:
{
- if (targetIndent==1)
- {
- --indent;
- println("end");
- targetIndent = 0;
- }
- if (strlen(p)>0)
- {
- println("setTarget '%s'", p);
- ++indent;
- targetIndent = 1;
- }
+ println("setTarget '%s'", p);
break;
}