[Jifty-commit] r5665 - B-OPCheck

Jifty commits jifty-commit at lists.jifty.org
Mon Aug 4 14:26:23 EDT 2008


Author: nothingmuch
Date: Mon Aug  4 14:26:23 2008
New Revision: 5665

Modified:
   B-OPCheck/OPCheck.xs

Log:
move comment back to its place

Modified: B-OPCheck/OPCheck.xs
==============================================================================
--- B-OPCheck/OPCheck.xs	(original)
+++ B-OPCheck/OPCheck.xs	Mon Aug  4 14:26:23 2008
@@ -101,14 +101,14 @@
 }
 
 OP *OPCHECK_ck_subr(pTHX_ OP *o) {
-    /*
-     * work around a %^H scoping bug by checking that PL_hints (which is properly scoped) & an unused
-     * PL_hints bit (0x100000) is true
-     */
     I32 opnum = o->op_type;
 
     o = PL_check_orig[opnum](aTHX_ o);
 
+    /*
+     * work around a %^H scoping bug by checking that PL_hints (which is properly scoped) & an unused
+     * PL_hints bit (0x100000) is true
+     */
     if ((PL_hints & 0x120000) == 0x120000) {
         if ( opnum == OP_ENTERSUB ) {
             OP *prev = ((cUNOPo->op_first->op_sibling) ? cUNOPo : ((UNOP*)cUNOPo->op_first))->op_first;


More information about the Jifty-commit mailing list