In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/56d02b8ccd734cf5d90ee929ed273d258ecae7c1?hp=b3611286c90f556f03af31aa41e42e4fe258f142>
- Log ----------------------------------------------------------------- commit 56d02b8ccd734cf5d90ee929ed273d258ecae7c1 Author: Karl Williamson <[email protected]> Date: Thu Dec 29 08:19:06 2016 -0700 handy.h: Add missing right paren in macro This only affected EBCDIC builds, causing syntax errors. ----------------------------------------------------------------------- Summary of changes: handy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handy.h b/handy.h index 824302d84a..dd3e01c8bf 100644 --- a/handy.h +++ b/handy.h @@ -1908,7 +1908,7 @@ _generic_utf8_safe(classnum, p, e, _is_utf8_FOO_with_len(classnum, p, e)) /* Because all controls are UTF-8 invariants in EBCDIC, we can use this * more efficient macro instead of the more general one */ # define isCNTRL_utf8_safe(p, e) \ - (__ASSERT_(_utf8_safe_assert(p, e)) isCNTRL_L1(*(p)) + (__ASSERT_(_utf8_safe_assert(p, e)) isCNTRL_L1(*(p))) #else # define isCNTRL_utf8_safe(p, e) _generic_utf8_safe(_CC_CNTRL, p, e, 0) #endif -- Perl5 Master Repository
