summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-06 12:42:54 -0600
committerKarl Williamson <khw@cpan.org>2022-05-06 12:47:06 -0600
commitd8e799d8745d2ac633964ffe0c05f5642ab34bcf (patch)
treedaec1cccb0a1db1593e23be9dfdaaf8fb350f3aa /autodoc.pl
parent877d2b3ed105c10cd1766537532b3322d0205379 (diff)
downloadperl-d8e799d8745d2ac633964ffe0c05f5642ab34bcf.tar.gz
perlapi,perlintern: Add tainting section
Tainting is so specialized that things dealing with it are better gathered together in one place. This commit moves the existing docs for such API into the new section
Diffstat (limited to 'autodoc.pl')
-rw-r--r--autodoc.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/autodoc.pl b/autodoc.pl
index 3d4da5f4a6..54e048a4c7 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -152,6 +152,7 @@ my $stack_scn = 'Stack Manipulation Macros';
my $string_scn = 'String Handling';
my $SV_flags_scn = 'SV Flags';
my $SV_scn = 'SV Handling';
+my $tainting_scn = 'Tainting';
my $time_scn = 'Time';
my $typedefs_scn = 'Typedef names';
my $unicode_scn = 'Unicode Support';
@@ -323,6 +324,7 @@ my %valid_sections = (
},
$SV_flags_scn => {},
$SV_scn => {},
+ $tainting_scn => {},
$time_scn => {},
$typedefs_scn => {},
$unicode_scn => {
@@ -437,6 +439,7 @@ my %initial_file_section = (
'pp_sort.c' => $SV_scn,
'regcomp.c' => $regexp_scn,
'regexp.h' => $regexp_scn,
+ 'taint.c' => $tainting_scn,
'unicode_constants.h' => $unicode_scn,
'utf8.c' => $unicode_scn,
'utf8.h' => $unicode_scn,