[svn:parrot] r38524 - trunk/t/codingstd

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Thu May 7 03:20:33 UTC 2009


Author: jkeenan
Date: Thu May  7 03:20:31 2009
New Revision: 38524
URL: https://trac.parrot.org/parrot/changeset/38524

Log:
Rework the 78-char line length restriction in PDDs to permit some long 'F<>' tags to pass.

Modified:
   trunk/t/codingstd/pdd_format.t

Modified: trunk/t/codingstd/pdd_format.t
==============================================================================
--- trunk/t/codingstd/pdd_format.t	Thu May  7 03:12:39 2009	(r38523)
+++ trunk/t/codingstd/pdd_format.t	Thu May  7 03:20:31 2009	(r38524)
@@ -65,7 +65,7 @@
         if (
             ( length( $lines[$i] ) > 78 )
             and
-            ( $lines[$i] !~ m/(^(?:L?<)?http|\$Id:\s+)/ )
+            ( $lines[$i] !~ m/^(?:F|L)<|<http|\$Id:\s+/ )
         ) {
             push @toolong, ($i + 1);
         }


More information about the parrot-commits mailing list