X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl.c;h=7cb8530b245ca5786d9378f1cad227d9494593d4;hb=1ff5bc37303d3f603211be08e5e01dac62fcfa6c;hp=6c1b5434bb8b5543045522c7b07513317e10802b;hpb=d7c0d2821cad1d2e5b6b3d6440e7c22bfaae9559;p=p5sagit%2Fp5-mst-13.2.git diff --git a/perl.c b/perl.c index 6c1b543..7cb8530 100644 --- a/perl.c +++ b/perl.c @@ -2864,6 +2864,7 @@ Perl_get_debug_opts(pTHX_ const char **s, bool givehelp) " A Consistency checks on internal structures", " q quiet - currently only suppresses the 'EXECUTING' message", " M trace smart match resolution", + " B dump suBroutine definitions, including special Blocks like BEGIN", NULL }; int i = 0; @@ -2872,7 +2873,7 @@ Perl_get_debug_opts(pTHX_ const char **s, bool givehelp) if (isALPHA(**s)) { /* if adding extra options, remember to update DEBUG_MASK */ - static const char debopts[] = "psltocPmfrxuUHXDSTRJvCAqM"; + static const char debopts[] = "psltocPmfrxuUHXDSTRJvCAqMB"; for (; isALNUM(**s); (*s)++) { const char * const d = strchr(debopts,**s);