summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-19 07:34:29 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-19 07:34:29 +0000
commit2a4bf7730d252fcadf5e50c3a9c740b5c94acfe3 (patch)
tree9a7597178791661d866752380767b1406cb2c96a /toke.c
parent17cab1b848e4960c008b73548ee8e62a9e9735ec (diff)
parent41d6edb2c1acac32a0296d594f0943752d23f077 (diff)
downloadperl-2a4bf7730d252fcadf5e50c3a9c740b5c94acfe3.tar.gz
integrate cfgperl contents into mainline
p4raw-id: //depot/perl@5822
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index 0ec3cf66ed..cb6751a502 100644
--- a/toke.c
+++ b/toke.c
@@ -3278,7 +3278,7 @@ Perl_yylex(pTHX)
/* This kludge not intended to be bulletproof. */
if (PL_tokenbuf[1] == '[' && !PL_tokenbuf[2]) {
yylval.opval = newSVOP(OP_CONST, 0,
- newSViv((IV)PL_compiling.cop_arybase));
+ newSViv(PL_compiling.cop_arybase));
yylval.opval->op_private = OPpCONST_ARYBASE;
TERM(THING);
}