Slight tweaks on #11213.
authorJarkko Hietaniemi <jhi@iki.fi>
Sun, 8 Jul 2001 15:52:57 +0000 (15:52 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sun, 8 Jul 2001 15:52:57 +0000 (15:52 +0000)
p4raw-id: //depot/perl@11215

toke.c

diff --git a/toke.c b/toke.c
index 26b99d3..09f5988 100644 (file)
--- a/toke.c
+++ b/toke.c
@@ -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;