diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1998-07-25 17:28:16 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-01 19:52:19 +0000 |
commit | ee239bfe47dc5d504cf50bb8f48401031aa791d7 (patch) | |
tree | d639b7f5512d058ca4c8b24cbcd2f0fc5efab604 /lib/perl5db.pl | |
parent | 3654eb6c94c503df3bbf29cfeb2429609f7a0879 (diff) | |
download | perl-ee239bfe47dc5d504cf50bb8f48401031aa791d7.tar.gz |
fixes for overloading bugs and docs, tweaked some
Message-Id: <199807260128.VAA10543@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_76] better overloading
p4raw-id: //depot/maint-5.005/perl@1677
Diffstat (limited to 'lib/perl5db.pl')
-rw-r--r-- | lib/perl5db.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/perl5db.pl b/lib/perl5db.pl index 67a6a6d839..bad153c574 100644 --- a/lib/perl5db.pl +++ b/lib/perl5db.pl @@ -2,7 +2,7 @@ package DB; # Debugger for Perl 5.00x; perl5db.pl patch level: -$VERSION = 1.03; +$VERSION = 1.04; $header = "perl5db.pl version $VERSION"; # Enhanced by ilya@math.ohio-state.edu (Ilya Zakharevich) @@ -179,7 +179,7 @@ $inhibit_exit = $option{PrintRet} = 1; TTY noTTY ReadLine NonStop LineInfo maxTraceLen recallCommand ShellBang pager tkRunning ornaments signalLevel warnLevel dieLevel inhibit_exit - ImmediateStop); + ImmediateStop bareStringify); %optionVars = ( hashDepth => \$dumpvar::hashDepth, @@ -191,6 +191,7 @@ $inhibit_exit = $option{PrintRet} = 1; undefPrint => \$dumpvar::printUndef, globPrint => \$dumpvar::globPrint, UsageOnly => \$dumpvar::usageOnly, + bareStringify => \$dumpvar::bareStringify, frame => \$frame, AutoTrace => \$trace, inhibit_exit => \$inhibit_exit, @@ -1823,6 +1824,7 @@ B<O> [I<opt>[B<=>I<val>]] [I<opt>B<\">I<val>B<\">] [I<opt>B<?>]... I<DumpPackages>: dump symbol tables of packages; I<DumpReused>: dump contents of \"reused\" addresses; I<quote>, I<HighBit>, I<undefPrint>: change style of string dump; + I<bareStringify>: Do not print the overload-stringified value; Option I<PrintRet> affects printing of return value after B<r> command, I<frame> affects printing messages on entry and exit from subroutines. I<AutoTrace> affects printing messages on every possible breaking point. |