From: Richard A. Wells Date: Thu, 4 Sep 1997 12:00:00 +0000 (+1200) Subject: typos in perl -h output X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=50492d440d979148ae8a1d4c450e80c4590a6d76;p=p5sagit%2Fp5-mst-13.2.git typos in perl -h output Typos in perl -h: Usage: C:\PERL5.004_01\BIN\PERL.EXE [switches] [--] [programfile] [arguments] [...] -Idirectory specify @INC/#include directory (may be used more then once) ^^^^ -l[octal] enable line ending processing, specifies line teminator ^^^^^^^^^ [...] -n assume 'while (<>) { ... }' loop arround your script ^^^^^^^ [...] p5p-msgid: 6D0BF914BC@gateuhs.harvard.edu --- diff --git a/perl.c b/perl.c index 891b76b..11fb462 100644 --- a/perl.c +++ b/perl.c @@ -1297,10 +1297,10 @@ char *name; printf("\n -e 'command' one line of script. Several -e's allowed. Omit [programfile]."); printf("\n -F/pattern/ split() pattern for autosplit (-a). The //'s are optional."); printf("\n -i[extension] edit <> files in place (make backup if extension supplied)"); - printf("\n -Idirectory specify @INC/#include directory (may be used more then once)"); - printf("\n -l[octal] enable line ending processing, specifies line teminator"); + printf("\n -Idirectory specify @INC/#include directory (may be used more than once)"); + printf("\n -l[octal] enable line ending processing, specifies line terminator"); printf("\n -[mM][-]module.. executes `use/no module...' before executing your script."); - printf("\n -n assume 'while (<>) { ... }' loop arround your script"); + printf("\n -n assume 'while (<>) { ... }' loop around your script"); printf("\n -p assume loop like -n but print line also like sed"); printf("\n -P run script through C preprocessor before compilation"); printf("\n -s enable some switch parsing for switches after script name");