summaryrefslogtreecommitdiff
path: root/dump.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-05-14 09:41:18 +0100
committerNicholas Clark <nick@ccl4.org>2011-06-11 10:39:31 +0200
commitb76b0bf9b926e6a5504a59a935a232eb91d44437 (patch)
tree455cc52b96e804f581ded5f59fdc5d5d3fadf4cb /dump.c
parentb2e9fc6f32369f6de4f37da887e1e7c4a48dd506 (diff)
downloadperl-b76b0bf9b926e6a5504a59a935a232eb91d44437.tar.gz
Replace references to PL_vtbl_{bm,fm} in the code with PL_vtbl_regexp.
Also, in Perl_sv_magic() merge the case for PERL_MAGIC_dbfile with the others that return a NULL vtable.
Diffstat (limited to 'dump.c')
-rw-r--r--dump.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/dump.c b/dump.c
index 66b6da5fbd..97505fb7c4 100644
--- a/dump.c
+++ b/dump.c
@@ -1308,8 +1308,6 @@ Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32
else if (v == &PL_vtbl_substr) s = "substr";
else if (v == &PL_vtbl_vec) s = "vec";
else if (v == &PL_vtbl_pos) s = "pos";
- else if (v == &PL_vtbl_bm) s = "bm";
- else if (v == &PL_vtbl_fm) s = "fm";
else if (v == &PL_vtbl_uvar) s = "uvar";
else if (v == &PL_vtbl_defelem) s = "defelem";
#ifdef USE_LOCALE_COLLATE