In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/f9ae8fb691541b6b2e48da8df7a37ed95c4f518a?hp=97927b02e770cc108bacba3ab142068174310fb9>
- Log ----------------------------------------------------------------- commit f9ae8fb691541b6b2e48da8df7a37ed95c4f518a Author: Jan Dubois <[email protected]> Date: Thu Apr 4 14:12:04 2013 -0700 S_* functions should be STATIC ----------------------------------------------------------------------- Summary of changes: pp_hot.c | 2 +- utf8.c | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pp_hot.c b/pp_hot.c index 7eb0c61..361b488 100644 --- a/pp_hot.c +++ b/pp_hot.c @@ -322,7 +322,7 @@ PP(pp_concat) * I suspect that the mg_get is no longer needed, but while padav * differs, it can't share this function */ -void +STATIC void S_pushav(pTHX_ AV* const av) { dSP; diff --git a/utf8.c b/utf8.c index 511e845..2228778 100644 --- a/utf8.c +++ b/utf8.c @@ -1512,8 +1512,10 @@ Perl_is_uni_alnumc(pTHX_ UV c) return _is_utf8_FOO(_CC_ALPHANUMERIC, tmpbuf); } -bool /* Internal function so we can deprecate the external one, and call - this one from other deprecated functions in this file */ +/* Internal function so we can deprecate the external one, and call + this one from other deprecated functions in this file */ + +PERL_STATIC_INLINE bool S_is_utf8_idfirst(pTHX_ const U8 *p) { dVAR; -- Perl5 Master Repository
