From 5e2adf8597b4131da54f048b3d903feb3849164a Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 9 Jun 2014 12:28:10 -0600 Subject: [PATCH] regcomp.c: EBCDIC fix --- regcomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regcomp.c b/regcomp.c index 5fe3c9c..20824e1 100644 --- a/regcomp.c +++ b/regcomp.c @@ -11364,7 +11364,7 @@ S_alloc_maybe_populate_EXACT(pTHX_ RExC_state_t *pRExC_state, if (! len_passed_in) { if (UTF) { - if (UNI_IS_INVARIANT(code_point)) { + if (UVCHR_IS_INVARIANT(code_point)) { if (LOC || ! FOLD) { /* /l defers folding until runtime */ *character = (U8) code_point; } -- 1.8.3.1