summaryrefslogtreecommitdiff
path: root/pod/perlrebackslash.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-13 15:18:59 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-13 15:18:59 +0000
commit1843fd2842255f58e25696dd6af96d55308b222c (patch)
tree13c02774fd68e59835b910f279349b56e53c7223 /pod/perlrebackslash.pod
parente2cb52ee1eadebb8ce6e30389dbc092e45144039 (diff)
downloadperl-1843fd2842255f58e25696dd6af96d55308b222c.tar.gz
Comment out links to docs that don't exist yet.
p4raw-id: //depot/perl@31613
Diffstat (limited to 'pod/perlrebackslash.pod')
-rw-r--r--pod/perlrebackslash.pod11
1 files changed, 7 insertions, 4 deletions
diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod
index e5f6ff5d51..bb32d06394 100644
--- a/pod/perlrebackslash.pod
+++ b/pod/perlrebackslash.pod
@@ -319,9 +319,10 @@ Mnemonic: I<p>roperty.
If capturing parenthesis are used in a regular expression, we can refer
to the part of the source string that was matched, and match exactly the
-same thing. (Full details are discussed in L<perlrecapture>). There are
-three ways of referring to such I<backreference>: absolutely, relatively,
-and by name.
+same thing. There are three ways of referring to such I<backreference>:
+absolutely, relatively, and by name.
+
+=for later add link to perlrecapture
=head3 Absolute referencing
@@ -426,7 +427,9 @@ remember where in the source string the last match ended, and the next time,
it will start the match from where it ended the previous time.
C<\G> matches the point where the previous match ended, or the beginning
-of the string if there was no previous match. See also L<perlremodifiers>.
+of the string if there was no previous match.
+
+=for later add link to perlremodifiers
Mnemonic: I<G>lobal.