Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Devel-ebug CPAN distribution.

Report information
The Basics
Id: 50836
Status: resolved
Priority: 0/
Queue: Devel-ebug

People
Owner: Nobody in particular
Requestors: info1 [...] wolframhumann.de
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.49
Fixed in: (no value)



Subject: ebug enters "MainLoop" prematurely when debugging Tk application
Consider the mini Tk app in file 'foolabel': use Tk; $mw = MainWindow->new(-title => 'umpf'); $mw->Label(-text => 'this is a foo label')->pack; MainLoop; When I step through this from "perl -d foolabel" using 'n', the Tk window is displayed when I step over "MainLoop", as expected. Doing the same from "ebug foolabel", the Tk window is displayed after the first 'n' already (i.e. while stepping over MainWindow->new). This line should just create the object but not enter the messageloop or display the window. using perl, v5.10.1 (*) built for x86_64-linux