diff options
author | David Mitchell <davem@iabyn.com> | 2009-08-20 19:29:35 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2009-08-20 19:29:35 +0100 |
commit | d7c0d2821cad1d2e5b6b3d6440e7c22bfaae9559 (patch) | |
tree | 792f00cce43e3f77a0385b65b6bc5d2f9da3087f /perl.c | |
parent | 73519bd01829f1480c288a0a7ccbfff973d867df (diff) | |
download | perl-d7c0d2821cad1d2e5b6b3d6440e7c22bfaae9559.tar.gz |
add -DM flag to track smartmatch resolution
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2863,6 +2863,7 @@ Perl_get_debug_opts(pTHX_ const char **s, bool givehelp) " C Copy On Write", " A Consistency checks on internal structures", " q quiet - currently only suppresses the 'EXECUTING' message", + " M trace smart match resolution", NULL }; int i = 0; @@ -2871,7 +2872,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[] = "psltocPmfrxuUHXDSTRJvCAq"; + static const char debopts[] = "psltocPmfrxuUHXDSTRJvCAqM"; for (; isALNUM(**s); (*s)++) { const char * const d = strchr(debopts,**s); |