mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
Merge f999e0a396
into 770c4b8042
This commit is contained in:
commit
7dc3c22454
5 changed files with 14 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
@ -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) {
|
||||
|
|
|
@ -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]=
|
||||
|
|
Loading…
Add table
Reference in a new issue