diff options
author | Karl Williamson <khw@cpan.org> | 2020-08-26 12:23:07 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-09-04 16:13:25 -0600 |
commit | 00b0fb83031904b9c10ea557ce9aa5610952b450 (patch) | |
tree | 6c4e282faeecf44fb2fb3f9e969af4e56928c18b /autodoc.pl | |
parent | 3e81cfaf6781302a0cd8f9c06ee9c9b60a5067e3 (diff) | |
download | perl-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.pl | 3 |
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) { |