diff options
author | Karl Williamson <khw@cpan.org> | 2016-05-10 21:26:33 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-05-12 20:19:58 -0600 |
commit | 5ff52e3ca85f534d7e9cc92421be53c783fc747b (patch) | |
tree | c0f4f2ee56df499f1932ce656d52f1f936121d77 /regen/embed.pl | |
parent | 52de5f36afe1d56995f76f26f15cf191e9cf699a (diff) | |
download | perl-5ff52e3ca85f534d7e9cc92421be53c783fc747b.tar.gz |
embed.fnc: Change 'b' flag to not imply 'p' flag
By doing this, we make it more general, which will be useful in a few
commits.
Diffstat (limited to 'regen/embed.pl')
-rwxr-xr-x | regen/embed.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regen/embed.pl b/regen/embed.pl index 4bfb44317f..e06d764fe4 100755 --- a/regen/embed.pl +++ b/regen/embed.pl @@ -45,7 +45,7 @@ sub full_name ($$) { # Returns the function name with potentially the my ($func, $flags) = @_; return "S_$func" if $flags =~ /[si]/; - return "Perl_$func" if $flags =~ /[bp]/; + return "Perl_$func" if $flags =~ /p/; return $func; } |