In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/92ff660bc8c29480a311c0b95430f16c175961db?hp=2dfc11ec3af312f4fa3eb244077c79dbb5fc2d85>
- Log ----------------------------------------------------------------- commit 92ff660bc8c29480a311c0b95430f16c175961db Author: Craig A. Berry <[email protected]> Date: Thu Jan 19 10:10:36 2017 -0600 pp_ctl.c: false/true --> FALSE/TRUE The win32 build died with the lower case versions. Follow-up to 86191aed6f092273. ----------------------------------------------------------------------- Summary of changes: pp_ctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pp_ctl.c b/pp_ctl.c index 5588a3b5f3..2ced82dc07 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -490,7 +490,7 @@ PP(pp_formline) U8 *source; /* source of bytes to append */ STRLEN to_copy; /* how may bytes to append */ char trans; /* what chars to translate */ - bool copied_form = false; /* have we duplicated the form? */ + bool copied_form = FALSE; /* have we duplicated the form? */ mg = doparseform(tmpForm); @@ -703,7 +703,7 @@ PP(pp_formline) fpc = new_compiled + (fpc - (U32*)mg->mg_ptr); formsv = newformsv; - copied_form = true; + copied_form = TRUE; } if (chopspace) { while (isSPACE(*s)) -- Perl5 Master Repository
