diff options
author | Karl Williamson <public@khwilliamson.com> | 2014-04-08 18:46:25 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-05-29 18:58:20 -0600 |
commit | 8dab3ba5fe05d49fe039bc05012fdab8bc572a5c (patch) | |
tree | 5e1bca32302ab77c90df5442d270e48a0cf13cd8 | |
parent | c88850db6f3a4374e7627417acde100d7210630f (diff) | |
download | perl-8dab3ba5fe05d49fe039bc05012fdab8bc572a5c.tar.gz |
Remove deprecated 'PL_sv_objcount'
This was scheduled to be removed in 5.20, but was forgotten.
-rw-r--r-- | embedvar.h | 1 | ||||
-rw-r--r-- | intrpvar.h | 3 | ||||
-rw-r--r-- | pod/perldelta.pod | 4 |
3 files changed, 1 insertions, 7 deletions
diff --git a/embedvar.h b/embedvar.h index 5ae8d051b1..bf087801aa 100644 --- a/embedvar.h +++ b/embedvar.h @@ -304,7 +304,6 @@ #define PL_sv_consts (vTHX->Isv_consts) #define PL_sv_count (vTHX->Isv_count) #define PL_sv_no (vTHX->Isv_no) -#define PL_sv_objcount (vTHX->Isv_objcount) #define PL_sv_root (vTHX->Isv_root) #define PL_sv_serial (vTHX->Isv_serial) #define PL_sv_undef (vTHX->Isv_undef) diff --git a/intrpvar.h b/intrpvar.h index a6ed644fc9..17b2551773 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -109,9 +109,6 @@ PERLVAR(I, mainstack, AV *) /* the stack when nothing funny is /* memory management */ PERLVAR(I, sv_count, IV) /* how many SV* are currently allocated */ -PERLVAR(I, sv_objcount, IV) /* DEPRECATED AND UNMAINTAINED. - * Will be removed in Perl 5.22. - * Used to be: how many objects are currently allocated. */ PERLVAR(I, sv_root, SV *) /* storage for SVs belonging to interp */ PERLVAR(I, sv_arenaroot, SV *) /* list of areas for garbage collection */ diff --git a/pod/perldelta.pod b/pod/perldelta.pod index e95e32009b..e1a0af50d1 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -366,13 +366,11 @@ XXX Changes which affect the interface available to C<XS> code go here. Other significant internal changes for future core maintainers should be noted as well. -[ List each change as a =item entry ] - =over 4 =item * -XXX +The deprecated variable C<PL_sv_objcount> has been removed. =back |