From: Robin Barker Date: Wed, 11 Feb 2009 12:52:52 +0000 (+0000) Subject: Fix previous patch. Actually it's written PAREN, not PARENT. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c6f023287ff1651300e5436a3d1202bcd0fcd710;p=p5sagit%2Fp5-mst-13.2.git Fix previous patch. Actually it's written PAREN, not PARENT. There is a typo in English.pm test Robin Barker --- diff --git a/lib/English.t b/lib/English.t index d7466c2..aa7e9d4 100755 --- a/lib/English.t +++ b/lib/English.t @@ -99,7 +99,7 @@ ok( $SYSTEM_FD_MAX >= 2, '$SYSTEM_FD_MAX should be at least 2' ); is( $INPLACE_EDIT, '.inplace', '$INPLACE_EDIT' ); 'aabbcc' =~ /(.{2}).+(.{2})(?{ 9 })/; -is( $LAST_PAREN_MATCH, 'cc', '$LAST_PARENT_MATCH' ); +is( $LAST_PAREN_MATCH, 'cc', '$LAST_PAREN_MATCH' ); is( $LAST_REGEXP_CODE_RESULT, 9, '$LAST_REGEXP_CODE_RESULT' ); is( $LAST_MATCH_START[1], 0, '@LAST_MATCH_START' );