summaryrefslogtreecommitdiff
path: root/mg_raw.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-06-15 21:35:56 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-06-15 21:53:18 -0700
commitf34d15629da26eee6e2b4b28c96865dc4921c52b (patch)
treef4820bdf739ea8528fec87074d57749ef43a9884 /mg_raw.h
parenteb883b9286505f2ba163b6a72b9978e9a3645b4d (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mg_raw.h b/mg_raw.h
index d733260eee..e698dcdf76 100644
--- a/mg_raw.h
+++ b/mg_raw.h
@@ -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 */" },