[svn:parrot] r44916 - in branches/ops_pct/compilers/opsc/src/Ops: . Compiler

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sat Mar 13 23:32:36 UTC 2010


Author: mikehh
Date: Sat Mar 13 23:32:35 2010
New Revision: 44916
URL: https://trac.parrot.org/parrot/changeset/44916

Log:
remove trailing spaces

Modified:
   branches/ops_pct/compilers/opsc/src/Ops/Compiler/Grammar.pm
   branches/ops_pct/compilers/opsc/src/Ops/Op.pm

Modified: branches/ops_pct/compilers/opsc/src/Ops/Compiler/Grammar.pm
==============================================================================
--- branches/ops_pct/compilers/opsc/src/Ops/Compiler/Grammar.pm	Sat Mar 13 23:25:52 2010	(r44915)
+++ branches/ops_pct/compilers/opsc/src/Ops/Compiler/Grammar.pm	Sat Mar 13 23:32:35 2010	(r44916)
@@ -85,16 +85,16 @@
 
 # OpBody starts with '{' and ends with single '}' on line.
 regex op_body {
-    '{' 
+    '{'
     <body_word>*?
-    ^^ '}' 
+    ^^ '}'
 }
 
 #Process op body by breaking it into "words" consisting entirely of whitespace,
 #alnums or a single punctuation, then checking for interesting macros (e.g $1
 #or goto NEXT() ) in the midst of the words.
 regex body_word {
-    [ 
+    [
     | <macro_param>
     | <op_macro>
     | $<word>=[<alnum>+|<punct>|<space>+]

Modified: branches/ops_pct/compilers/opsc/src/Ops/Op.pm
==============================================================================
--- branches/ops_pct/compilers/opsc/src/Ops/Op.pm	Sat Mar 13 23:25:52 2010	(r44915)
+++ branches/ops_pct/compilers/opsc/src/Ops/Op.pm	Sat Mar 13 23:32:35 2010	(r44916)
@@ -216,7 +216,7 @@
         if $_ eq $jump { $found_jump := 1 }
     }
 
-    unless $found_jump { 
+    unless $found_jump {
         self.jump.push($jump);
     }
 }


More information about the parrot-commits mailing list