summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-26 12:23:07 -0600
committerKarl Williamson <khw@cpan.org>2020-09-04 16:13:25 -0600
commit00b0fb83031904b9c10ea557ce9aa5610952b450 (patch)
tree6c4e282faeecf44fb2fb3f9e969af4e56928c18b /autodoc.pl
parent3e81cfaf6781302a0cd8f9c06ee9c9b60a5067e3 (diff)
downloadperl-00b0fb83031904b9c10ea557ce9aa5610952b450.tar.gz
autodoc: Add section footers in this file
Previously, there were no section footers This commit doesn't actually add any of these; just accepts and handles any future ones.
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 54b154b664..330b90fd42 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -454,6 +454,9 @@ sub output {
docout($fh, $function_name, $section_info->{$function_name});
}
print $fh "\n=back\n";
+
+ print $fh "\n", $valid_sections{$section_name}{footer}, "\n"
+ if defined $valid_sections{$section_name}{footer};
}
if (@$missing) {