In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/330ac7821428da4c8cbdad11eafb703e10f9f253?hp=b0e839b3299f72a209148ba1288d9fabd64d392c>

- Log -----------------------------------------------------------------
commit 330ac7821428da4c8cbdad11eafb703e10f9f253
Author: Josh ben Jore <[email protected]>
Date:   Thu Jul 22 09:46:03 2010 -0700

    Update debugger changelog

M       lib/perl5db.pl

commit f633fd283ef7ea0d5d2f2a51936820166b83f715
Author: Josh ben Jore <[email protected]>
Date:   Thu Jul 22 09:42:00 2010 -0700

    Debugger prints lines to the remote port when it forks and openes a new port

M       lib/perl5db.pl
-----------------------------------------------------------------------

Summary of changes:
 lib/perl5db.pl |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/lib/perl5db.pl b/lib/perl5db.pl
index 87310a6..fedcbe3 100644
--- a/lib/perl5db.pl
+++ b/lib/perl5db.pl
@@ -954,8 +954,18 @@ sub eval {
 # Changes: 1.32: Jun 03, 2009 Jonathan Leto <[email protected]>
 #   + Fix bug where a key _< with undefined value was put into the symbol table
 #   +   when the $filename variable is not set
-# Changes: x.xx: Josh ben Jore <[email protected]>
-#   + TODO
+# Changes: 1.33:
+#   + Debugger prints lines to the remote port when it forks and openes a new 
port (f633fd2)
+#   + The debugger now continues to use RemotePort when it's been configured 
to use it. (11653f7)
+#   + Stop using $ENV{LESS} for parameters not intended for less (d463cf2)
+#   + Configure has a path to less and perl5db.pl can use it (bf320d6)
+#   + Die with $@ instead of empty message (86755f4)
+#   + Remove extra/useless $@ check after eval { require PadWalker } (which is 
still checked) (dab8d6d)
+#   + Promote eval( "require ..." ) to eval { require ... } (4a49187)
+#   + Promote eval { require( ... )} || die to mere require( ... ) (999f23b)
+#   + Remove indirect object notation from debugger (bee4b46)
+#   + Document that @{$main::{'_<'.$filename}} lines are dualvar to (COP*). 
(7e17a74)
+#   + Remove MacOS classic support from the debugger. (2b894b7)
 ########################################################################
 
 =head1 DEBUGGER INITIALIZATION
@@ -6137,7 +6147,7 @@ sub connect_remoteport {
 }
 
 sub socket_get_fork_TTY {
-    $tty = $IN = $OUT = connect_remoteport();
+    $tty = $LINEINFO = $IN = $OUT = connect_remoteport();
 
     # Do I need to worry about setting $term?
 

--
Perl5 Master Repository

Reply via email to