diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-26 21:10:57 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-26 21:10:57 +0000 |
commit | f0cb02e3e781e9ee7442d6b61ec0330b7fb95a52 (patch) | |
tree | 526ded723f46402ca573319d64c7ab27b9412dc2 /pad.c | |
parent | 82af08ae5f1a7d2e5deb69172b40d3168c149528 (diff) | |
download | perl-f0cb02e3e781e9ee7442d6b61ec0330b7fb95a52.tar.gz |
The vestigial PL_pad_reset_pending can actually be bool, rather than
I32. This permits some space saving rejigging of the interpreter
struct.
p4raw-id: //depot/perl@34930
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -180,7 +180,7 @@ Perl_pad_new(pTHX_ int flags) SAVEI32(PL_max_intro_pending); SAVEBOOL(PL_cv_has_eval); if (flags & padnew_SAVESUB) { - SAVEI32(PL_pad_reset_pending); + SAVEBOOL(PL_pad_reset_pending); } } } |