summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-09-19 22:55:27 +0000
committerNicholas Clark <nick@ccl4.org>2007-09-19 22:55:27 +0000
commitc74c7a1e27c5e7f7e00419dd2667079018fc7d6f (patch)
tree385d03ef04a663f5ed8f8451782b56dae02c0714 /pod
parentfda2d18a806c2883a36b25ff9f691418a05ccea0 (diff)
downloadperl-c74c7a1e27c5e7f7e00419dd2667079018fc7d6f.tar.gz
Change 31849 forgot to regenerate the documentation - removing a
documented function from the published API moves the POD file in which its documentation resides. p4raw-id: //depot/perl@31918
Diffstat (limited to 'pod')
-rw-r--r--pod/perlapi.pod38
-rw-r--r--pod/perlintern.pod38
2 files changed, 38 insertions, 38 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index c8ac82746d..716c6b102e 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -2720,44 +2720,6 @@ invalidated).
=for hackers
Found in file mro.c
-=item mro_get_linear_isa_c3
-X<mro_get_linear_isa_c3>
-
-Returns the C3 linearization of @ISA
-the given stash. The return value is a read-only AV*.
-C<level> should be 0 (it is used internally in this
-function's recursion).
-
-You are responsible for C<SvREFCNT_inc()> on the
-return value if you plan to store it anywhere
-semi-permanently (otherwise it might be deleted
-out from under you the next time the cache is
-invalidated).
-
- AV* mro_get_linear_isa_c3(HV* stash, I32 level)
-
-=for hackers
-Found in file mro.c
-
-=item mro_get_linear_isa_dfs
-X<mro_get_linear_isa_dfs>
-
-Returns the Depth-First Search linearization of @ISA
-the given stash. The return value is a read-only AV*.
-C<level> should be 0 (it is used internally in this
-function's recursion).
-
-You are responsible for C<SvREFCNT_inc()> on the
-return value if you plan to store it anywhere
-semi-permanently (otherwise it might be deleted
-out from under you the next time the cache is
-invalidated).
-
- AV* mro_get_linear_isa_dfs(HV* stash, I32 level)
-
-=for hackers
-Found in file mro.c
-
=item mro_method_changed_in
X<mro_method_changed_in>
diff --git a/pod/perlintern.pod b/pod/perlintern.pod
index 06e0f0be95..54fffe694b 100644
--- a/pod/perlintern.pod
+++ b/pod/perlintern.pod
@@ -464,6 +464,44 @@ Found in file mg.c
=over 8
+=item mro_get_linear_isa_c3
+X<mro_get_linear_isa_c3>
+
+Returns the C3 linearization of @ISA
+the given stash. The return value is a read-only AV*.
+C<level> should be 0 (it is used internally in this
+function's recursion).
+
+You are responsible for C<SvREFCNT_inc()> on the
+return value if you plan to store it anywhere
+semi-permanently (otherwise it might be deleted
+out from under you the next time the cache is
+invalidated).
+
+ AV* mro_get_linear_isa_c3(HV* stash, I32 level)
+
+=for hackers
+Found in file mro.c
+
+=item mro_get_linear_isa_dfs
+X<mro_get_linear_isa_dfs>
+
+Returns the Depth-First Search linearization of @ISA
+the given stash. The return value is a read-only AV*.
+C<level> should be 0 (it is used internally in this
+function's recursion).
+
+You are responsible for C<SvREFCNT_inc()> on the
+return value if you plan to store it anywhere
+semi-permanently (otherwise it might be deleted
+out from under you the next time the cache is
+invalidated).
+
+ AV* mro_get_linear_isa_dfs(HV* stash, I32 level)
+
+=for hackers
+Found in file mro.c
+
=item mro_isa_changed_in
X<mro_isa_changed_in>