diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2001-03-08 12:06:57 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-09 01:20:39 +0000 |
commit | aea4f609175b8d3694278560443a821f9cb5265c (patch) | |
tree | 7da408a425212defbdef9241ff28e718f99633c8 /pp_ctl.c | |
parent | be16fac9c9469295c8c71e007edeeaf65dd86c84 (diff) | |
download | perl-aea4f609175b8d3694278560443a821f9cb5265c.tar.gz |
Re: [ PATCH perl@8956 ] new debug option -DR shows ref counts
Message-Id: <200103081206.MAA06281@tiree.fdgroup.co.uk>
p4raw-id: //depot/perl@9084
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1743,7 +1743,8 @@ PP(pp_dbstate) if (!cv) DIE(aTHX_ "No DB::DB routine defined"); - if (CvDEPTH(cv) >= 1 && !(PL_debug & (1<<30))) /* don't do recursive DB::DB call */ + if (CvDEPTH(cv) >= 1 && !(PL_debug & DEBUG_DB_RECURSE_FLAG)) + /* don't do recursive DB::DB call */ return NORMAL; ENTER; |