diff options
author | Chip Salzenberg <chip@perl.com> | 1997-02-17 17:58:57 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-02-18 13:22:00 +1200 |
commit | f65adc383296c14b415f0ade0cf7fc4a27049a24 (patch) | |
tree | 2609eca0a13e65a4abda298ccb406c199b16600f /pod | |
parent | aa00cc68ed6277098db9650fb1149e528f317b3a (diff) | |
download | perl-f65adc383296c14b415f0ade0cf7fc4a27049a24.tar.gz |
Fix formatting in perldiag
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index e29d1353ff..ec300c862b 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1082,7 +1082,7 @@ or it may indicate that a logical name table has been corrupted. (F) A carriage return character was found in the input. This is an error, and not a warning, because carriage return characters can break -here documents (e.g. C<print E<LT>E<LT>EOF;>). Note that Perl always +here documents (e.g. C<print E<lt>E<lt>EOF;>). Note that Perl always opens scripts in text mode, so this error should only occur in C<eval>. =item Illegal division by zero @@ -2194,14 +2194,14 @@ system call to call, silly dilly. =item Too late for "B<-T>" option (try putting it first) -(X) The #! line in a Perl script contains the "-T" option, but Perl -was not invoked with "-T" in its argument list. Due to the way Perl -handles tainting, by the time Perl discovers a "-T" in a script, it's +(X) The #! line in a Perl script contains the B<-T> option, but Perl +was not invoked with B<-T> in its argument list. Due to the way Perl +handles tainting, by the time Perl discovers a B<-T> in a script, it's too late to properly taint everything from the environment. So Perl gives up. This error can usually be fixed by editing the "#!" line so that the -"-T" option is in the Perl program's first argument. (Many operating +B<-T> option is in the Perl program's first argument. (Many operating systems that implement the "#!" feature only pick up one argument from it, so Perl has to get the rest on its own.) |