diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-06-15 21:35:56 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-06-15 21:53:18 -0700 |
commit | f34d15629da26eee6e2b4b28c96865dc4921c52b (patch) | |
tree | f4820bdf739ea8528fec87074d57749ef43a9884 /mg_raw.h | |
parent | eb883b9286505f2ba163b6a72b9978e9a3645b4d (diff) | |
download | perl-f34d15629da26eee6e2b4b28c96865dc4921c52b.tar.gz |
[perl #92906] perl -d has non-functional b command
This fixes a regression introduced after 5.14.0.
Commit 6f83ef0e5a4 got dbfile and dbline magic mixed up and ended up
apply set-magic to the hash (dbfile), not to the element (dbline).
The result was that debugger breakpoints simply did not work at all.
Diffstat (limited to 'mg_raw.h')
-rw-r--r-- | mg_raw.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,9 +50,9 @@ "/* isaelem 'i' @ISA array element */" }, { 'k', "want_vtbl_nkeys | PERL_MAGIC_VALUE_MAGIC", "/* nkeys 'k' scalar(keys()) lvalue */" }, - { 'L', "want_vtbl_dbline", + { 'L', "magic_vtable_max", "/* dbfile 'L' Debugger %_<filename */" }, - { 'l', "magic_vtable_max", + { 'l', "want_vtbl_dbline", "/* dbline 'l' Debugger %_<filename element */" }, { 'o', "want_vtbl_collxfrm | PERL_MAGIC_VALUE_MAGIC", "/* collxfrm 'o' Locale transformation */" }, |