diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-04-07 08:36:51 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-04-07 08:54:21 -0600 |
commit | 4c34a6936037142444c003aac9d374ea84e5a195 (patch) | |
tree | 84f2ae123abdcfd3bce3a9f8b6d5c65c26ec4402 /regcomp.c | |
parent | 1a063a891daa888a733d9623fd6d707de87c6bd9 (diff) | |
download | perl-4c34a6936037142444c003aac9d374ea84e5a195.tar.gz |
PATCH: [perl #87810] BBC Text::MultiMarkdown
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.
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; - } } } |