diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-21 21:46:27 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-21 21:46:27 +0000 |
commit | 98246f1e0d28af5cceb60df6c77f9cfe2dc0d85d (patch) | |
tree | fd8b84161d4cdc60b546d94ec175e6124d147989 /toke.c | |
parent | 651b5b28673befa3f36a39b00591c15d5b30cca2 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |