diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-21 21:47:34 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-21 21:47:34 +0000 |
commit | 8bbe96d720ac7fdd2c32da6f4dd8032b43985afd (patch) | |
tree | 795c0083d7d10763dbdaf1cba115d8d961657207 /pad.c | |
parent | 98246f1e0d28af5cceb60df6c77f9cfe2dc0d85d (diff) | |
download | perl-8bbe96d720ac7fdd2c32da6f4dd8032b43985afd.tar.gz |
Various variables in intrpvar.h and thrdvar.h are considerably larger
than they need to be.
p4raw-id: //depot/perl@31017
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -168,7 +168,7 @@ Perl_pad_new(pTHX_ int flags) SAVEI32(PL_comppad_name_fill); SAVEI32(PL_min_intro_pending); SAVEI32(PL_max_intro_pending); - SAVEI32(PL_cv_has_eval); + SAVEBOOL(PL_cv_has_eval); if (flags & padnew_SAVESUB) { SAVEI32(PL_pad_reset_pending); } |