diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-17 22:04:56 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-17 22:04:56 +0000 |
commit | aac018bb00282d5a72a5c5b4d95935b9eb667bcc (patch) | |
tree | fd84759f0eadaaff7dd4a9f33c3aa3d9f434a2c5 /embedvar.h | |
parent | c9907023d869893333355372c9385acf6c758809 (diff) | |
download | perl-aac018bb00282d5a72a5c5b4d95935b9eb667bcc.tar.gz |
Fix the bug introduced with MRO, whereby the internals were not saving
lines in subroutines defined inside eval ""s for the debugger.
p4raw-id: //depot/perl@34873
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/embedvar.h b/embedvar.h index 6ea599f972..9b05dd6362 100644 --- a/embedvar.h +++ b/embedvar.h @@ -75,6 +75,7 @@ #define PL_body_arenas (vTHX->Ibody_arenas) #define PL_body_roots (vTHX->Ibody_roots) #define PL_bodytarget (vTHX->Ibodytarget) +#define PL_breakable_sub_generation (vTHX->Ibreakable_sub_generation) #define PL_checkav (vTHX->Icheckav) #define PL_checkav_save (vTHX->Icheckav_save) #define PL_chopset (vTHX->Ichopset) @@ -387,6 +388,7 @@ #define PL_Ibody_arenas PL_body_arenas #define PL_Ibody_roots PL_body_roots #define PL_Ibodytarget PL_bodytarget +#define PL_Ibreakable_sub_generation PL_breakable_sub_generation #define PL_Icheckav PL_checkav #define PL_Icheckav_save PL_checkav_save #define PL_Ichopset PL_chopset |