diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-22 22:57:54 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-22 22:57:54 +0000 |
commit | 222206208128104dd9837dda856fd43c0f121508 (patch) | |
tree | 68f934808dee8902f549f36c0e3af1823c17d9d6 /utf8.c | |
parent | dc0a77c9b9af15fb3c72399a7235e96c7033cc43 (diff) | |
download | perl-222206208128104dd9837dda856fd43c0f121508.tar.gz |
Fix problems caused by downsizing in change 31017. (Which don't show
up until you test on a "real" architecture)
p4raw-id: //depot/perl@31023
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1596,7 +1596,7 @@ Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits PUTBACK; if (IN_PERL_COMPILETIME) { /* XXX ought to be handled by lex_start */ - SAVEI32(PL_in_my); + SAVEI16(PL_in_my); PL_in_my = 0; sv_setpv(tokenbufsv, PL_tokenbuf); } |