diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-29 10:53:40 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-29 10:53:40 +0000 |
commit | f2f0f09211f65b9eb53652642c8665449ebbea60 (patch) | |
tree | 74841bdebd2cbdb7d1883773aedf39f0b376f517 /mathoms.c | |
parent | 6b27b0a01f1113e5e831a7896f1e08800942f3e5 (diff) | |
download | perl-f2f0f09211f65b9eb53652642c8665449ebbea60.tar.gz |
gv_fullname and gv_efullname are definately mathoms.
p4raw-id: //depot/perl@25869
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -16,8 +16,8 @@ /* * This file contains mathoms, various binary artifacts from previous - * versions of Perl. For binary compatibility reasons, though, we - * cannot completely remove them from the core code. + * versions of Perl. For binary or source compatibility reasons, though, + * we cannot completely remove them from the core code. * * SMP - Oct. 24, 2005 * @@ -291,6 +291,20 @@ document } #endif /* sfio */ +/* compatibility with versions <= 5.003. */ +void +Perl_gv_fullname(pTHX_ SV *sv, const GV *gv) +{ + gv_fullname3(sv, gv, sv == (const SV*)gv ? "*" : ""); +} + +/* compatibility with versions <= 5.003. */ +void +Perl_gv_efullname(pTHX_ SV *sv, const GV *gv) +{ + gv_efullname3(sv, gv, sv == (const SV*)gv ? "*" : ""); +} + /* * Local variables: * c-indentation-style: bsd |