summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2001-03-09 13:49:31 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-09 14:38:56 +0000
commit04932ac8f7d72810cce59c52976ab33010e88b99 (patch)
treebc6507fa14063a22f27503c74bc21bfb9ed56af1 /perl.c
parent1dfe7606714789cb685cd524877388fe1e9008b4 (diff)
downloadperl-04932ac8f7d72810cce59c52976ab33010e88b99.tar.gz
Re: [ PATCH perl@8956 ] new debug option -DR shows ref counts
Message-Id: <200103091349.NAA16617@tiree.fdgroup.co.uk> p4raw-id: //depot/perl@9087
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index 0c4d9072cd..65681613c4 100644
--- a/perl.c
+++ b/perl.c
@@ -2126,7 +2126,8 @@ Perl_moreswitches(pTHX_ char *s)
#ifdef DEBUGGING
forbid_setid("-D");
if (isALPHA(s[1])) {
- static char debopts[] = "psltocPmfrxuLHXDST";
+ /* if adding extra options, remember to update DEBUG_MASK */
+ static char debopts[] = "psltocPmfrxuLHXDSTR";
char *d;
for (s++; *s && (d = strchr(debopts,*s)); s++)