We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a73aa54 commit bcd28b1Copy full SHA for bcd28b1
regcomp_trie.c
@@ -535,10 +535,10 @@ S_trie_bitmap_set_folded(pTHX_ RExC_state_t *pRExC_state,
535
/* variant codepoints */
536
if (! UVCHR_IS_INVARIANT(ch)) {
537
U8 hi = UTF8_TWO_BYTE_HI(ch);
538
- /* Note that hi will be either 0xc2 or 0xc3, and
539
- * TRIE_BITMAP_SET() will do >>3 to get the byte offset
540
- * within the bit table, which is constant, and Coverity
541
- * complained about this (CID 488118). */
+ /* Note that hi will be either 0xc2 or 0xc3 (apart from EBCDIC
+ * systems), and TRIE_BITMAP_SET() will do >>3 to get the byte
+ * offset within the bit table, which is constant, and
+ * Coverity complained about this (CID 488118). */
542
TRIE_BITMAP_SET(trie, hi);
543
}
544
0 commit comments