This commit is contained in:
Makoto Kato 2025-04-03 23:38:20 +01:00 committed by GitHub
commit 7dc3c22454
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 14 additions and 1 deletions

View file

@ -4257,6 +4257,6 @@ static const UCPTrie block_trie={
0x0,
};
static const int32_t indexes[UPROPS_INDEX_COUNT]={0x2e8e,0x2e8e,0x2e8e,0x2e8e,0x6db4,3,0x86ce,0x87d5,0x8f67,0x8f67,0x50cf,0x2f75a31,0x152,0,0,0};
static const int32_t indexes[UPROPS_INDEX_COUNT]={0x2e8e,0x2e8e,0x2e8e,0x2e8e,0x6db4,3,0x86ce,0x87d5,0x8f67,0x8f67,0x1d0cf,0x2f75a31,0x152,0,0,0};
#endif // INCLUDED_FROM_UCHAR_C

View file

@ -2763,6 +2763,15 @@ typedef enum UIndicConjunctBreak {
U_INCB_EXTEND,
/** @draft ICU 76 */
U_INCB_LINKER,
#ifndef U_HIDE_DEPRECATED_API
/**
* One more than the highest normal UIndicConjunctBreak value.
* The highest value is available via u_getIntPropertyMaxValue(UCHAR_INDIC_CONJUNCT_BREAK).
*
* @deprecated ICU 58 The numeric value may change over time, see ICU ticket #12420.
*/
U_INCB_COUNT
#endif // U_HIDE_DEPRECATED_API
} UIndicConjunctBreak;
#endif // U_HIDE_DRAFT_API

Binary file not shown.

View file

@ -2915,6 +2915,9 @@ TestAdditionalProperties(void) {
if( u_getIntPropertyMaxValue(UCHAR_EAST_ASIAN_WIDTH) != (int32_t) (U_EA_COUNT -1)) {
log_err("error: u_getIntPropertyMaxValue(UCHAR_EAST_ASIAN_WIDTH) wrong\n");
}
if( u_getIntPropertyMaxValue(UCHAR_INDIC_CONJUNCT_BREAK) != (int32_t) (U_INCB_COUNT -1)) {
log_err("error: u_getIntPropertyMaxValue(UCHAR_INDIC_CONJUNCT_BREAK) wrong\n");
}
/* test u_hasBinaryProperty() and u_getIntPropertyValue() */
for(i=0; i<UPRV_LENGTHOF(props); ++i) {

View file

@ -965,6 +965,7 @@ CorePropsBuilder::build(UErrorCode &errorCode) {
totalSize=4*offset;
indexes[UPROPS_MAX_VALUES_INDEX]=
(((int32_t)U_INCB_COUNT-1)<<UPROPS_INCB_SHIFT)|
(((int32_t)U_EA_COUNT-1)<<UPROPS_EA_SHIFT)|
((int32_t)USCRIPT_CODE_LIMIT-1);
indexes[UPROPS_MAX_VALUES_2_INDEX]=