This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlapi: Mark internal, document (push|pop)_scope
[perl5.git] / scope.c
diff --git a/scope.c b/scope.c
index 8730a3f..d5e691f 100644 (file)
--- 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)
 {