summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-02-15 15:43:00 -0800
committerFather Chrysostomos <sprout@cpan.org>2015-02-15 17:28:02 -0800
commitf36b6700b62dc209a8e6142efd1cbfbf8c14457c (patch)
treef29781c3d5f5049580fe7831c92458df52b4d7ac /toke.c
parentf10ebf6ccbdb32fe334fb04b0a1fd342046d70ee (diff)
downloadperl-f36b6700b62dc209a8e6142efd1cbfbf8c14457c.tar.gz
toke.c: Don’t bother setting type for FORMRBRACK
The type is unused, so there is no need to set it to 0.
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/toke.c b/toke.c
index 24b5ed0c6e..a00d41bdd0 100644
--- a/toke.c
+++ b/toke.c
@@ -4962,7 +4962,6 @@ Perl_yylex(pTHX)
}
if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
PL_lex_state = LEX_FORMLINE;
- NEXTVAL_NEXTTOKE.ival = 0;
force_next(FORMRBRACK);
TOKEN(';');
}
@@ -5005,7 +5004,6 @@ Perl_yylex(pTHX)
incline(s);
if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
PL_lex_state = LEX_FORMLINE;
- NEXTVAL_NEXTTOKE.ival = 0;
force_next(FORMRBRACK);
TOKEN(';');
}