summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-11-05 17:39:40 -0700
committerKarl Williamson <khw@cpan.org>2020-11-06 08:27:52 -0700
commitd1b9805ed0a3e2e5eeb6d14466adb0cd9f9a0166 (patch)
tree2ebb08f50b88b85e156aacd7f78e84d949948a3c /autodoc.pl
parent74ab7b797f72da8e6aad6d2db8a99cde4a1b98bb (diff)
downloadperl-d1b9805ed0a3e2e5eeb6d14466adb0cd9f9a0166.tar.gz
perlapi: Split section Display and Dump
into Debugging and Display sections
Diffstat (limited to 'autodoc.pl')
-rw-r--r--autodoc.pl8
1 files changed, 5 insertions, 3 deletions
diff --git a/autodoc.pl b/autodoc.pl
index f4331297e6..f52264c3f9 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -111,7 +111,8 @@ my $concurrency_scn = 'Concurrency';
my $COP_scn = 'COP Hint Hashes';
my $CV_scn = 'CV Handling';
my $custom_scn = 'Custom Operators';
-my $dump_scn = 'Display and Dump functions';
+my $debugging_scn = 'Debugging';
+my $display_scn = 'Display functions';
my $embedding_scn = 'Embedding and Interpreter Cloning';
my $errno_scn = 'Errno';
my $exceptions_scn = 'Exception Handling (simple) Macros';
@@ -180,7 +181,8 @@ my %valid_sections = (
},
$custom_scn => {},
- $dump_scn => {},
+ $debugging_scn => {},
+ $display_scn => {},
$embedding_scn => {},
$errno_scn => {},
$exceptions_scn => {},
@@ -1033,7 +1035,7 @@ sub parse_config_h {
$configs{$name}{'section'} = $formats_scn;
}
elsif ($name =~ / BACKTRACE /x) {
- $configs{$name}{'section'} = $dump_scn;
+ $configs{$name}{'section'} = $debugging_scn;
}
elsif ($name =~ / ALLOC $sb /x) {
$configs{$name}{'section'} = $memory_scn;