diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-04-18 21:42:18 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-04-18 21:45:10 -0600 |
commit | 006671a67d63718163a0f4771c9dc358db053aad (patch) | |
tree | bfb84d2210be4126a7dbcb5aaaee02bdfd742e12 | |
parent | afba153847998f7056cb1eb03e5b36c87f9b074a (diff) | |
download | perl-006671a67d63718163a0f4771c9dc358db053aad.tar.gz |
perlop: Update for some 5.14 changes
-rw-r--r-- | pod/perlop.pod | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 3279e81d03..5dfecea0e1 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1359,9 +1359,7 @@ true if it succeeds, false if it fails. If no string is specified via the C<=~> or C<!~> operator, the $_ string is searched. (The string specified with C<=~> need not be an lvalue--it may be the result of an expression evaluation, but remember the C<=~> binds -rather tightly.) See also L<perlre>. See L<perllocale> for -discussion of additional considerations that apply when C<use locale> -is in effect. +rather tightly.) See also L<perlre>. Options are as described in C<qr//> above; in addition, the following match process modifiers are available: @@ -1593,8 +1591,6 @@ at run-time. If you want the pattern compiled only once the first time the variable is interpolated, use the C</o> option. If the pattern evaluates to the empty string, the last successfully executed regular expression is used instead. See L<perlre> for further explanation on these. -See L<perllocale> for discussion of additional considerations that apply -when C<use locale> is in effect. Options are as with m// with the addition of the following replacement specific options: |