diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1998-07-06 18:24:33 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-08 05:12:07 +0000 |
commit | 569536030df0016c037f85e8e6d3ef93f000c47a (patch) | |
tree | d1c55b55d87930cbe99c41c1b950ab017ba1eaff /pp.c | |
parent | 735e0d5c42c27ff4648bbbb6a960bc17c7a17596 (diff) | |
download | perl-569536030df0016c037f85e8e6d3ef93f000c47a.tar.gz |
add patch for C<use re 'debug'>
Message-Id: <199807070224.WAA10318@monk.mps.ohio-state.edu>
Subject: Re: _70 and Devel::RE
p4raw-id: //depot/perl@1371
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4338,7 +4338,7 @@ PP(pp_split) else { maxiters += (strend - s) * rx->nparens; while (s < strend && --limit && - regexec_flags(rx, s, strend, orig, 1, Nullsv, NULL, 0)) + (*regexecp)(rx, s, strend, orig, 1, Nullsv, NULL, 0)) { TAINT_IF(RX_MATCH_TAINTED(rx)); if (rx->subbase |