print uc("foo","bar","baz");
undef($foo,&bar);
-used to be accidentally allowed in earlier versions, and produced
+used to be accidentally allowed in earlier versions, and produced
unpredictable behavior. Some of them produced ancillary warnings
when used in this way, while others silently did the wrong thing.
The C<qw//> operator is now evaluated at compile time into a true list
instead of being replaced with a run time call to C<split()>. This
removes the confusing behavior of C<qw//> in scalar context stemming from
-the older implementation, which inherited the behavior from split().
+the older implementation, which inherited the behavior from split().
Thus:
literal control-X character or the two character sequence `caret' plus
`X'. When the braces are omitted, the variable name stops after the
control character. Thus C<"$^XYZ"> continues to be synonymous with
-C<$^X . "YZ"> as before.
+C<$^X . "YZ"> as before.
As before, lexical variables may not have names beginning with control
characters. As before, variables whose names begin with a control
O_ACCMODE: the mask of O_RDONLY, O_WRONLY, and O_RDWR.
=item Math::Complex
-
+
The accessors methods Re, Im, arg, abs, rho, theta, methods can
($z->Re()) now also act as mutators ($z->Re(3)).
=item /%s/: Unrecognized escape \\%c passed through
(W) You used a backslash-character combination which is not recognized
-by Perl. This combination appears in an interpolated variable or a
+by Perl. This combination appears in an interpolated variable or a
C<'>-delimited regular expression.
=item Unrecognized escape \\%c passed through
If they are not then you might have decompressed them incorrectly. Check
your decompression and unpacking utilities settings to make sure they are
translating text files properly.
-As a last resort, you can use the perl one-liner: perl -i.bak -pe
-'s/(?:\015)?\012/\015/g' <filenames> on the source files.
+As a last resort, you can use the perl one-liner:
+
+ perl -i.bak -pe 's/(?:\015)?\012/\015/g' filenames
+
+on the source files.
Move the files manually into the correct folders.