diff options
author | Karl Williamson <khw@cpan.org> | 2019-05-28 20:28:07 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-05-30 18:13:29 -0600 |
commit | 9f589e47256c6bacb4cf6d59d0f1116e6a425b3e (patch) | |
tree | 28060b96d6c3aa0cf4ffeeca3dba9b2a4a2b4ef6 /autodoc.pl | |
parent | 6c714a09cc08600278e72aea1fcdf83576d061b4 (diff) | |
download | perl-9f589e47256c6bacb4cf6d59d0f1116e6a425b3e.tar.gz |
embed.fnc: Change s flag to S
autodoc.pl has the s flag in the '=for apidoc' lines mean something
completely different, but Devel::PPPort combines both these lines and
the contents of embed.fnc into one file, expecting the flags to be
consistent.
This commit changes the 's' in embed.fnc to be 'S', which means the
function is static and has an 'S_' prefix. Changing embed.fnc keeps the
changes more contained, and lessens the chance that some module will be
adversely affected (I didn't see anything likely in grepping cpan).
Diffstat (limited to 'autodoc.pl')
-rw-r--r-- | autodoc.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autodoc.pl b/autodoc.pl index 56986ae2a2..05ea482d9c 100644 --- a/autodoc.pl +++ b/autodoc.pl @@ -468,7 +468,7 @@ _EOE_ # List of non-static internal functions my @missing_guts = - grep $funcflags{$_}{flags} !~ /[As]/ && !$docs{guts}{$_}, keys %funcflags; + grep $funcflags{$_}{flags} !~ /[AS]/ && !$docs{guts}{$_}, keys %funcflags; output('perlintern', <<'END', $docs{guts}, \@missing_guts, <<'END'); |=head1 NAME |