Skip to content

Commit

Permalink
regcomp.c: add whitespace to avoid =* as a symbol
Browse files Browse the repository at this point in the history
GNU indent warns that this is ambiguous, and the spaces make it more
legible anyway.
  • Loading branch information
demerphq authored and khwilliamson committed Feb 23, 2022
1 parent d538caf commit 35b3c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regcomp.c
Expand Up @@ -6204,8 +6204,8 @@ S_study_chunk(pTHX_ RExC_state_t *pRExC_state, regnode **scanp,
data->whilem_c = data_fake.whilem_c;
if ((flags & SCF_DO_SUBSTR) && data_fake.last_found) {
int i;
if (RExC_rx->minlen<*minnextp)
RExC_rx->minlen=*minnextp;
if (RExC_rx->minlen < *minnextp)
RExC_rx->minlen = *minnextp;
scan_commit(pRExC_state, &data_fake, minnextp, is_inf);
SvREFCNT_dec_NN(data_fake.last_found);

Expand Down

0 comments on commit 35b3c2d

Please sign in to comment.