summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-04-21 21:46:27 +0000
committerNicholas Clark <nick@ccl4.org>2007-04-21 21:46:27 +0000
commit98246f1e0d28af5cceb60df6c77f9cfe2dc0d85d (patch)
treefd8b84161d4cdc60b546d94ec175e6124d147989 /toke.c
parent651b5b28673befa3f36a39b00591c15d5b30cca2 (diff)
downloadperl-98246f1e0d28af5cceb60df6c77f9cfe2dc0d85d.tar.gz
Fix bug in change 31015 - saving the wrong size of variable.
p4raw-id: //depot/perl@31016
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 12d91afa77..8599fef5f5 100644
--- a/toke.c
+++ b/toke.c
@@ -1664,7 +1664,7 @@ S_sublex_push(pTHX)
SAVEI32(PL_lex_starts);
SAVEI8(PL_lex_state);
SAVEVPTR(PL_lex_inpat);
- SAVEI8(PL_lex_inwhat);
+ SAVEI16(PL_lex_inwhat);
SAVECOPLINE(PL_curcop);
SAVEPPTR(PL_bufptr);
SAVEPPTR(PL_bufend);