mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-10142 more direct property access
X-SVN-Rev: 34413
This commit is contained in:
parent
14a75fc273
commit
fed85ddb05
1 changed files with 1 additions and 1 deletions
|
@ -910,7 +910,7 @@ bracketProcessChar(BracketData *bd, int32_t position, DirProp dirProp) {
|
|||
match=u_getBidiPairedBracket(c); /* get the matching char */
|
||||
if(match==c) /* if no matching char */
|
||||
return TRUE;
|
||||
if(u_getIntPropertyValue(c, UCHAR_BIDI_PAIRED_BRACKET_TYPE)!=U_BPT_OPEN)
|
||||
if(ubidi_getPairedBracketType(bd->pBiDi->bdp, c)!=U_BPT_OPEN)
|
||||
return TRUE; /* not an opening bracket */
|
||||
/* special case: process synonyms
|
||||
create an opening entry for each synonym */
|
||||
|
|
Loading…
Add table
Reference in a new issue