In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/825fcd837448d97aa5d54b90e403d99301e7b013?hp=1050723fecc0e27677c39fadbb97cb892dfd27d2>
- Log ----------------------------------------------------------------- commit 825fcd837448d97aa5d54b90e403d99301e7b013 Author: Karl Williamson <[email protected]> Date: Wed Feb 15 10:17:06 2017 -0700 regexec.c: Fix comment typos ----------------------------------------------------------------------- Summary of changes: regexec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regexec.c b/regexec.c index bd7887086f..82128a7edc 100644 --- a/regexec.c +++ b/regexec.c @@ -6838,7 +6838,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog) /* Some notes about MULTICALL and the context and save stacks. * * In something like - * /...(?{ my $x)}...(?{ my $z)}...(?{ my $z)}.../ + * /...(?{ my $x)}...(?{ my $y)}...(?{ my $z)}.../ * since codeblocks don't introduce a new scope (so that * local() etc accumulate), at the end of a successful * match there will be a SAVEt_CLEARSV on the savestack @@ -6873,7 +6873,7 @@ S_regmatch(pTHX_ regmatch_info *reginfo, char *startpos, regnode *prog) * *everything* SAVEd by this function is undone and then * the context popped, rather than e.g., popping the * context (and restoring the original PL_comppad) then - * popping more of the savestack and restoiring a bad + * popping more of the savestack and restoring a bad * PL_comppad. */ -- Perl5 Master Repository
