summaryrefslogtreecommitdiff
path: root/pod/perlop.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r--pod/perlop.pod3
1 files changed, 3 insertions, 0 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index d80d34e287..c4eecd6c79 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -2276,6 +2276,9 @@ to occur that you might want. Here are two common cases:
# expand tabs to 8-column spacing
1 while s/\t+/' ' x (length($&)*8 - length($`)%8)/e;
+X</c>While C<s///> accepts the C</c> flag, it has no effect beyond
+producing a warning if warnings are enabled.
+
=back
=head2 Quote-Like Operators