In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/a161cde74ab6bd0def025bb5691c39d682c4204e?hp=4bd4e9335ffc257cbe2bf1a42789f693f5797337>
- Log ----------------------------------------------------------------- commit a161cde74ab6bd0def025bb5691c39d682c4204e Author: Daniel Dragan <bul...@hotmail.com> Date: Fri Apr 27 21:09:49 2018 -0400 utf8.c: use TRUE not true "true" token was added in commit 394d2d3f37 but "true" is C++ and C99, "TRUE" is portable perl API Win32 VC 2003 C mode (C89) build faiure ..\utf8.c(6177) : error C2065: 'true' : undeclared identifier ----------------------------------------------------------------------- Summary of changes: utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8.c b/utf8.c index e66c328b11..ceb4723113 100644 --- a/utf8.c +++ b/utf8.c @@ -6174,7 +6174,7 @@ Perl_parse_uniprop_string(pTHX_ const char * const name, const Size_t len, const return NULL; } - starts_with_In_or_Is = true; + starts_with_In_or_Is = TRUE; } /* Get the index into our pointer table of the inversion list corresponding -- Perl5 Master Repository