PATCH: [perl #87810] BBC Text::MultiMarkdown
authorKarl Williamson <public@khwilliamson.com>
Thu, 7 Apr 2011 14:36:51 +0000 (08:36 -0600)
committerKarl Williamson <public@khwilliamson.com>
Thu, 7 Apr 2011 14:54:21 +0000 (08:54 -0600)
A statement should have been outside a block but was inside it.
The indentation was correct, and in a number of times reading
the code I still missed it.

I'm having trouble distilling down the failure scenario into
a simple test case, and am short on tuits right now, so a test
will be committed later.

regcomp.c

index 560696e..d639c58 100644 (file)
--- a/regcomp.c
+++ b/regcomp.c
@@ -972,10 +972,10 @@ S_cl_or(const RExC_state_t *pRExC_state, struct regnode_charclass_class *cl, con
                    cl->flags |= ANYOF_UNICODE_ALL;
                }
            }
+       }
 
         /* Take the union */
        cl->flags |= or_with->flags;
-       }
     }
 }