[svn:parrot] r49273 - trunk/src/pmc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Thu Sep 23 11:28:17 UTC 2010


Author: mikehh
Date: Thu Sep 23 11:28:17 2010
New Revision: 49273
URL: https://trac.parrot.org/parrot/changeset/49273

Log:
fix codetest failure - line length
(when can we fix the STRING_CONST macro so that it conforms to line length)

Modified:
   trunk/src/pmc/exceptionhandler.pmc

Modified: trunk/src/pmc/exceptionhandler.pmc
==============================================================================
--- trunk/src/pmc/exceptionhandler.pmc	Thu Sep 23 11:18:21 2010	(r49272)
+++ trunk/src/pmc/exceptionhandler.pmc	Thu Sep 23 11:28:17 2010	(r49273)
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2001-2008, Parrot Foundation.
+Copyright (C) 2001-2010, Parrot Foundation.
 $Id$
 
 =head1 NAME
@@ -73,7 +73,7 @@
         Parrot_ExceptionHandler_attributes * const attrs = PARROT_EXCEPTIONHANDLER(SELF);
         SELF.init();
 
-        attrs->handled_types        = Parrot_pmc_new_init_int(INTERP, enum_class_FixedIntegerArray, 1);
+        attrs->handled_types = Parrot_pmc_new_init_int(INTERP, enum_class_FixedIntegerArray, 1);
         VTABLE_set_integer_keyed_int(INTERP, attrs->handled_types, 0, handledtype);
     }
 


More information about the parrot-commits mailing list