summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-26 17:47:31 -0600
committerKarl Williamson <khw@cpan.org>2020-09-04 16:13:25 -0600
commit51b56f5c7c7e109a2c53226c83c2d324801d4f9b (patch)
tree6fba1874921dc4fbec86d41614083856335c42cb /perl.c
parent70b05c7cee1d4db8aa1fee6424603ecb21eac423 (diff)
downloadperl-51b56f5c7c7e109a2c53226c83c2d324801d4f9b.tar.gz
Reorganize perlapi
This uses a new organization of sections that I came up with. I asked for comments on p5p, but there were none.
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/perl.c b/perl.c
index f32686b982..f54dc6025f 100644
--- a/perl.c
+++ b/perl.c
@@ -177,7 +177,7 @@ perl_alloc_using(struct IPerlMem* ipM, struct IPerlMem* ipMS,
#else
/*
-=head1 Embedding Functions
+=for apidoc_section Embedding and Interpreter Cloning
=for apidoc perl_alloc
@@ -2742,7 +2742,7 @@ S_run_body(pTHX_ I32 oldscope)
}
/*
-=head1 SV Manipulation Functions
+=for apidoc_section SV Handling
=for apidoc get_sv
@@ -2768,7 +2768,7 @@ Perl_get_sv(pTHX_ const char *name, I32 flags)
}
/*
-=head1 Array Manipulation Functions
+=for apidoc_section AV Handling
=for apidoc get_av
@@ -2798,7 +2798,7 @@ Perl_get_av(pTHX_ const char *name, I32 flags)
}
/*
-=head1 Hash Manipulation Functions
+=for apidoc_section HV Handling
=for apidoc get_hv
@@ -2825,7 +2825,7 @@ Perl_get_hv(pTHX_ const char *name, I32 flags)
}
/*
-=head1 CV Manipulation Functions
+=for apidoc_section CV Handling
=for apidoc get_cvn_flags
@@ -3271,7 +3271,7 @@ Perl_eval_pv(pTHX_ const char *p, I32 croak_on_error)
/* Require a module. */
/*
-=head1 Embedding Functions
+=for apidoc_section Embedding and Interpreter Cloning
=for apidoc require_pv