Skip to content

Commit a307b4d

Browse files
committed
isFOO_utf8_lc: Use utf8_to-uv_or_die not utf8_to_uvchr_buf
1 parent 7097dec commit a307b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

regexec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ S_isFOO_utf8_lc(pTHX_ const U8 classnum, const U8* character, const U8* e)
618618
case CC_ENUM_VERTSPACE_: return is_VERTWS_high(character);
619619
default:
620620
return _invlist_contains_cp(PL_XPosix_ptrs[classnum],
621-
utf8_to_uvchr_buf(character, e, NULL));
621+
utf8_to_uv_or_die(character, e, NULL));
622622
}
623623
NOT_REACHED; /* NOTREACHED */
624624
}

0 commit comments

Comments
 (0)