diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-08 15:52:57 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-08 15:52:57 +0000 |
commit | e930465f0bda9d63d97d7bcbea42ed0d09f68de3 (patch) | |
tree | e37de6ce3bff7322c358026fe968afe950bf698a /toke.c | |
parent | 7feb700b9f07ce221e631b28bb4fe5cab7fddd08 (diff) | |
download | perl-e930465f0bda9d63d97d7bcbea42ed0d09f68de3.tar.gz |
Slight tweaks on #11213.
p4raw-id: //depot/perl@11215
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2167,7 +2167,7 @@ Perl_yylex(pTHX) /* check if there's an identifier for us to look at */ if (PL_pending_ident) - return pending_ident(aTHX); + return S_pending_ident(aTHX); /* no identifier pending identification */ @@ -5112,7 +5112,8 @@ Perl_yylex(pTHX) #pragma segment Main #endif -int S_pending_ident(pTHX) +static int +S_pending_ident(pTHX) { register char *d; register I32 tmp; |