diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2004-06-01 15:34:47 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2004-06-01 15:34:47 +0000 |
commit | 95f1f29249c85ed8fa166aca95d04182f3d3bcf8 (patch) | |
tree | 42d6b2aaf54f7f289b13477bd7c3021cd51366fb /graphics/flasm/files/patch-unflasm.c | |
parent | Make PTHREAD_LIBS-safe. (diff) |
Upgrade to 1.51.
PR: ports/67447
Submitted by: Marton Kenyeres <junkmail@konvergencia.hu>
Diffstat (limited to 'graphics/flasm/files/patch-unflasm.c')
-rw-r--r-- | graphics/flasm/files/patch-unflasm.c | 68 |
1 files changed, 32 insertions, 36 deletions
diff --git a/graphics/flasm/files/patch-unflasm.c b/graphics/flasm/files/patch-unflasm.c index 2a0f75ba0f1e..36b1c12751f6 100644 --- a/graphics/flasm/files/patch-unflasm.c +++ b/graphics/flasm/files/patch-unflasm.c @@ -1,38 +1,34 @@ ---- 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 @@ +--- unflasm.c.orig Tue Jun 1 23:05:40 2004 ++++ unflasm.c Tue Jun 1 23:07:05 2004 +@@ -991,29 +991,11 @@ + } - 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; - } + case SWFACTION_SETTARGET: +- { +- if (targetIndent == 1) { +- --indent; +- print("end\n"); +- targetIndent = 0; +- } +- if (strlen((char *) p) > 0) { +- print("setTarget '%s'\n", p); +- ++indent; +- targetIndent = 1; +- } +- break; +- } ++ print("setTarget '%s'\n", p); ++ break; + case SWFACTION_SETTARGETEXPRESSION: +- if (targetIndent == 1) { +- --indent; +- print("end\n"); +- targetIndent = 0; +- } + print("setTargetExpr\n"); +- ++indent; +- targetIndent = 1; + break; + + case SWFACTION_GOTOLABEL: |