summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-03 07:32:38 -0600
committerKarl Williamson <khw@cpan.org>2022-05-03 08:43:04 -0600
commitb83249756e4513da67807fbc19047223291c94b8 (patch)
tree0010aa6f6c0e3b343f4c96f00b62640adf9efa5c /autodoc.pl
parent6e93196a2777ee927403982ff2aa30e23617fead (diff)
downloadperl-b83249756e4513da67807fbc19047223291c94b8.tar.gz
autodoc.pl: Allow 'x' flag in apidoc_item entries
The only flags allowed are those affecting the display in perlapi and perlintern. The 'x' flag previously omitted, fits this.
Diffstat (limited to 'autodoc.pl')
-rw-r--r--autodoc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/autodoc.pl b/autodoc.pl
index fa10dff044..fd0b2fec62 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -354,7 +354,7 @@ my $apidoc_re = qr/ ^ (\s*) # $1
(.*?) # $7
\s* \n /x;
# Only certain flags, dealing with display, are acceptable for apidoc_item
-my $display_flags = "fFnDopsT";
+my $display_flags = "fFnDopsTx";
sub check_api_doc_line ($$) {
my ($file, $in) = @_;