diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-27 23:33:24 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-12-27 23:33:24 +0000 |
commit | a67e862a325388c91a8a3eee7f587636c9a77259 (patch) | |
tree | e044e1c0b7f7fd84beb7f72dfb37c7b59c863f3b | |
parent | 0df16ed7435a5bd0cc9e44b33066360b99ad12b5 (diff) | |
download | perl-a67e862a325388c91a8a3eee7f587636c9a77259.tar.gz |
update perldiag for change#4707
p4raw-link: @4707 on //depot/perl: 0df16ed7435a5bd0cc9e44b33066360b99ad12b5
p4raw-id: //depot/perl@4708
-rw-r--r-- | perl.c | 4 | ||||
-rw-r--r-- | pod/perldiag.pod | 11 |
2 files changed, 10 insertions, 5 deletions
@@ -851,7 +851,7 @@ S_parse_body(pTHX_ va_list args) Safefree(p); } else - Perl_croak(aTHX_ "No argument specified for -I"); + Perl_croak(aTHX_ "No directory specified for -I"); break; case 'P': forbid_setid("-P"); @@ -1763,7 +1763,7 @@ Perl_moreswitches(pTHX_ char *s) s++; } else - Perl_croak(aTHX_ "No argument specified for -I"); + Perl_croak(aTHX_ "No directory specified for -I"); return s; case 'l': PL_minus_l = TRUE; diff --git a/pod/perldiag.pod b/pod/perldiag.pod index a76d8f008b..f47ae5a12e 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1904,6 +1904,11 @@ See L<perlsec>. (F) A setuid script can't be specified by the user. +=item No %s specified for -%c + +(F) The indicated command line switch needs a mandatory argument, but +you haven't specified one. + =item No comma allowed after %s (F) A list operator that has a filehandle or "indirect object" is not @@ -1988,10 +1993,10 @@ your system. (F) Configure didn't find anything resembling the setreuid() call for your system. -=item No space allowed after B<-I> +=item No space allowed after -%c -(F) The argument to B<-I> must follow the B<-I> immediately with no -intervening space. +(F) The argument to the indicated command line switch must follow immediately +after the switch, without intervening spaces. =item No such pseudo-hash field "%s" |