diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-12-31 13:54:04 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-12-31 13:54:04 +0000 |
commit | 488344d27a84a21afc5e4f3a5237fcad050f664d (patch) | |
tree | 532046cd58be3f14c96b8af75f49e00d24f5f66d /perl.h | |
parent | ceb531cd9f4a607a106933280c868d236b5c51fa (diff) | |
download | perl-488344d27a84a21afc5e4f3a5237fcad050f664d.tar.gz |
Perl_magic_setbm() and Perl_magic_setfm() are mathoms that can be
merged with Perl_magic_setregexp(). [Coverage on the testsuite
suggests that more than that they're actually dead code, but in theory
it should be possible to construct a test case that exercises them.]
p4raw-id: //depot/perl@32789
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5024,7 +5024,7 @@ MGVTBL_SET( MGVTBL_SET( PL_vtbl_bm, 0, - MEMBER_TO_FPTR(Perl_magic_setbm), + MEMBER_TO_FPTR(Perl_magic_setregexp), 0, 0, 0, @@ -5036,7 +5036,7 @@ MGVTBL_SET( MGVTBL_SET( PL_vtbl_fm, 0, - MEMBER_TO_FPTR(Perl_magic_setfm), + MEMBER_TO_FPTR(Perl_magic_setregexp), 0, 0, 0, |