summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-07 09:31:11 -0600
committerKarl Williamson <khw@cpan.org>2022-05-07 11:17:13 -0600
commitf58e1f6ccb82563e99330e0db299082ae9ef4b0a (patch)
tree543139ca6da0ce9d65e8704fc7886d9e77559ea6 /scope.c
parente34671d94057f7a91cfbdc2ac0a8c05469e3d470 (diff)
downloadperl-f58e1f6ccb82563e99330e0db299082ae9ef4b0a.tar.gz
perlapi: Mark internal, document (push|pop)_scope
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/scope.c b/scope.c
index 8730a3f096..d5e691f666 100644
--- a/scope.c
+++ b/scope.c
@@ -105,6 +105,14 @@ Perl_cxinc(pTHX)
return cxstack_ix + 1;
}
+/*
+=for apidoc push_scope
+
+Implements L<perlapi/C<ENTER>>
+
+=cut
+*/
+
void
Perl_push_scope(pTHX)
{
@@ -123,6 +131,14 @@ Perl_push_scope(pTHX)
}
+/*
+=for apidoc pop_scope
+
+Implements L<perlapi/C<LEAVE>>
+
+=cut
+*/
+
void
Perl_pop_scope(pTHX)
{