diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-12-06 20:42:01 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-12-06 20:42:01 +0000 |
commit | 1d239bbba2de439a8971f5436d867599b62848c8 (patch) | |
tree | eef7516936efe473c70af62b051d08558df0eac4 /toke.c | |
parent | d90a703e9b2a2038e53e20447f0482fe07515888 (diff) | |
download | perl-1d239bbba2de439a8971f5436d867599b62848c8.tar.gz |
Suppress a compilation warning reported by Jarkko
(variable initialization skipped by goto).
p4raw-id: //depot/perl@18249
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |