From: Abigail Date: Mon, 21 Aug 2000 14:00:16 +0000 (-0400) Subject: A pod nit. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=262ffc8be548be2f2a2965924cd61b35c8dcbc26;p=p5sagit%2Fp5-mst-13.2.git A pod nit. Subject: [PATCH] pod/perlre.pod (was Re: [ID 20000821.007] $&, $1, etc. disappear when sub returns) Message-ID: <20000821180016.28627.qmail@foad.org> p4raw-id: //depot/perl@6756 --- diff --git a/pod/perlre.pod b/pod/perlre.pod index fa4aad2..380bc5f 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -360,7 +360,7 @@ everything before the matched string. And C<$'> returns everything after the matched string. The numbered variables ($1, $2, $3, etc.) and the related punctuation -set (C<<$+>, C<$&>, C<$`>, and C<$'>) are all dynamically scoped +set (C<$+>, C<$&>, C<$`>, and C<$'>) are all dynamically scoped until the end of the enclosing block or until the next successful match, whichever comes first. (See L.)