From: Rafael Garcia-Suarez Date: Thu, 14 Oct 2004 14:25:29 +0000 (+0000) Subject: A few fixes in the list of -D debugging flags X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3679267a1146847531c6d6f9fc1a5988659ca0aa;p=p5sagit%2Fp5-mst-13.2.git A few fixes in the list of -D debugging flags p4raw-id: //depot/perl@23364 --- diff --git a/perl.c b/perl.c index 41c538a..70e1bd0 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; diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 3238a5c..3cc8d3d 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -368,8 +368,7 @@ As an alternative, specify a number instead of list of letters (e.g., B<-D14> is equivalent to B<-Dtls>): 1 p Tokenizing and parsing (with v, displays parse stack) - 2 s Stack snapshots - with v, displays all stacks + 2 s Stack snapshots (with v, displays all stacks) 4 l Context (loop) stack processing 8 t Trace execution 16 o Method and overloading resolution @@ -391,7 +390,7 @@ B<-D14> is equivalent to B<-Dtls>): 1048576 v Verbose: use in conjunction with other flags 2097152 C Copy On Write 4194304 A Consistency checks on internal structures - 8388608 q quiet - currently only suppressed the "EXECUTING" message + 8388608 q quiet - currently only suppresses the "EXECUTING" message All these flags require B<-DDEBUGGING> when you compile the Perl executable (but see L, L which may change this).