summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-10-20 22:22:41 -0600
committerKarl Williamson <khw@cpan.org>2015-10-21 21:38:53 -0600
commitff27773b39c4456f8690ced819d0c54ce5c512ab (patch)
treed4c3c097cde87197320cd96bc0a176188e3803d3
parentcf1be84ef57635f6ff1f2fe3b27d4604c0e258de (diff)
downloadperl-ff27773b39c4456f8690ced819d0c54ce5c512ab.tar.gz
pp_hot.c: Add comment
-rw-r--r--pp_hot.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pp_hot.c b/pp_hot.c
index e866841ec4..352a62989c 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -3055,7 +3055,8 @@ PP(pp_subst)
}
if (once)
break;
- } while (CALLREGEXEC(rx, s, strend, orig, s == m,
+ } while (CALLREGEXEC(rx, s, strend, orig,
+ s == m, /* Yields minend of 0 or 1 */
TARG, NULL,
REXEC_NOT_FIRST|REXEC_IGNOREPOS|REXEC_FAIL_ON_UNDERFLOW));
sv_catpvn_nomg_maybeutf8(dstr, s, strend - s, DO_UTF8(TARG));