diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-10-14 14:58:21 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-10-14 14:58:21 +0000 |
commit | ddcf8bc1d288a9d34b94e354ef9f98b84591150c (patch) | |
tree | bca1a1dd61affb917b99a2afd6809442441e4458 /mg.c | |
parent | 3679267a1146847531c6d6f9fc1a5988659ca0aa (diff) | |
download | perl-ddcf8bc1d288a9d34b94e354ef9f98b84591150c.tar.gz |
Fix [perl #31971] local $^D gives noise
p4raw-id: //depot/perl@23365
Diffstat (limited to 'mg.c')
-rw-r--r-- | mg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2071,7 +2071,7 @@ Perl_magic_set(pTHX_ SV *sv, MAGIC *mg) case '\004': /* ^D */ #ifdef DEBUGGING s = SvPV_nolen(sv); - PL_debug = get_debug_opts(&s) | DEBUG_TOP_FLAG; + PL_debug = get_debug_opts(&s, 0) | DEBUG_TOP_FLAG; DEBUG_x(dump_all()); #else PL_debug = (SvIOK(sv) ? SvIVX(sv) : sv_2iv(sv)) | DEBUG_TOP_FLAG; |