From: Nicholas Clark Date: Sat, 21 Apr 2007 21:46:27 +0000 (+0000) Subject: Fix bug in change 31015 - saving the wrong size of variable. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=98246f1e0d28af5cceb60df6c77f9cfe2dc0d85d;p=p5sagit%2Fp5-mst-13.2.git Fix bug in change 31015 - saving the wrong size of variable. p4raw-id: //depot/perl@31016 --- diff --git a/toke.c b/toke.c index 12d91af..8599fef 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);