summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-10-14 14:25:29 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-10-14 14:25:29 +0000
commit3679267a1146847531c6d6f9fc1a5988659ca0aa (patch)
tree3acf9f4a7e42e6562d4edfc7dfb74f71ff3a8e05 /perl.c
parent8bcd5811450ad13819564acc4bb15a205239031f (diff)
downloadperl-3679267a1146847531c6d6f9fc1a5988659ca0aa.tar.gz
A few fixes in the list of -D debugging flags
p4raw-id: //depot/perl@23364
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl.c b/perl.c
index 41c538aaf1..70e1bd0d59 100644
--- a/perl.c
+++ b/perl.c
@@ -2378,7 +2378,7 @@ Perl_get_debug_opts(pTHX_ char **s)
static char *usage_msgd[] = {
" Debugging flag values: (see also -d)",
" p Tokenizing and parsing (with v, displays parse stack)",
- " s Stack snapshots. with v, displays all stacks",
+ " s Stack snapshots (with v, displays all stacks)",
" l Context (loop) stack processing",
" t Trace execution",
" o Method and overloading resolution",
@@ -2388,7 +2388,7 @@ Perl_get_debug_opts(pTHX_ char **s)
" f Format processing",
" r Regular expression parsing and execution",
" x Syntax tree dump",
- " u Tainting checks (Obsolete, previously used for LEAKTEST)",
+ " u Tainting checks",
" H Hash dump -- usurps values()",
" X Scratchpad allocation",
" D Cleaning up",
@@ -2399,7 +2399,7 @@ Perl_get_debug_opts(pTHX_ char **s)
" v Verbose: use in conjunction with other flags",
" C Copy On Write",
" A Consistency checks on internal structures",
- " q quiet - currently only suppressed the 'EXECUTING' message",
+ " q quiet - currently only suppresses the 'EXECUTING' message",
NULL
};
int i = 0;