mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22707 UTC-179-C25 Limit LB21a to the Hebrew-hyphen-non-Hebrew case
This commit is contained in:
parent
83f3334b96
commit
79f4745494
2 changed files with 6 additions and 6 deletions
|
@ -341,10 +341,10 @@ $LB20NonBreaks $CM* ($BA | $HY | $NS);
|
|||
$BB $CM* [^$CB]; # $BB x
|
||||
$BB $CM* $LB20NonBreaks;
|
||||
|
||||
# LB 21a Don't break after Hebrew + Hyphen
|
||||
# HL (HY | BA) x
|
||||
# LB 21a Do not break after the hyphen in Hebrew + Hyphen + non-Hebrew
|
||||
# HL (HY | BA) x [^HL]
|
||||
#
|
||||
$HL $CM* ($HY | $BA) $CM* [^$CB]?;
|
||||
$HL $CM* ($HY | $BA) $CM* [^$CB $HL]?;
|
||||
|
||||
# LB 21b (forward) Don't break between SY and HL
|
||||
# (break between HL and SY already disallowed by LB 13 above)
|
||||
|
|
|
@ -3343,9 +3343,9 @@ int32_t RBBILineMonkey::next(int32_t startPos) {
|
|||
continue;
|
||||
}
|
||||
|
||||
if (fHL->contains(prevCharX2) &&
|
||||
(fHY->contains(prevChar) || fBA->contains(prevChar))) {
|
||||
setAppliedRule(pos, "LB 21a HL (HY | BA) x");
|
||||
if (fHL->contains(prevCharX2) && (fHY->contains(prevChar) || fBA->contains(prevChar)) &&
|
||||
!fHL->contains(thisChar)) {
|
||||
setAppliedRule(pos, "LB 21a HL (HY | BA) x [^HL]");
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue