summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-07-22 17:50:49 -0600
committerKarl Williamson <khw@cpan.org>2020-09-04 16:13:24 -0600
commitee1e502635450eaf25fa4d255d0c335278bfe7a4 (patch)
tree71cc1f5805747be16228c308f1f625b80aaaa26e /autodoc.pl
parent7cb0b6c48849d54cce48bbe3106a4f86ead6f8b4 (diff)
downloadperl-ee1e502635450eaf25fa4d255d0c335278bfe7a4.tar.gz
autodoc.pl: Update to accept F flag
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 9989b4136a..7870a88136 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -154,7 +154,7 @@ Expected:
=for apidoc name
EOS
die "flag $1 is not legal (for function $name (from $file))"
- if $flags =~ / ( [^AabCDdEefhiMmNnTOoPpRrSsUuWXx] ) /x;
+ if $flags =~ / ( [^AabCDdEeFfhiMmNnTOoPpRrSsUuWXx] ) /x;
next FUNC if $flags =~ /h/;
die "'u' flag must also have 'm' flag' for $name" if $flags =~ /u/ && $flags !~ /m/;