Suppress a compilation warning reported by Jarkko
Rafael Garcia-Suarez [Fri, 6 Dec 2002 20:42:01 +0000 (20:42 +0000)]
(variable initialization skipped by goto).

p4raw-id: //depot/perl@18249

toke.c

diff --git a/toke.c b/toke.c
index 722609b..1abf121 100644 (file)
--- a/toke.c
+++ b/toke.c
@@ -2208,6 +2208,7 @@ Perl_yylex(pTHX)
     GV *gv = Nullgv;
     GV **gvp = 0;
     bool bof = FALSE;
+    I32 orig_keyword = 0;
 
     /* check if there's an identifier for us to look at */
     if (PL_pending_ident)
@@ -3800,7 +3801,7 @@ Perl_yylex(pTHX)
     case 'z': case 'Z':
 
       keylookup: {
-       I32 orig_keyword = 0;
+       orig_keyword = 0;
        gv = Nullgv;
        gvp = 0;