ICU-22707 UTC-179-C25 Limit LB21a to the Hebrew-hyphen-non-Hebrew case

This commit is contained in:
Robin Leroy 2024-03-21 18:28:51 +01:00 committed by Markus Scherer
parent 83f3334b96
commit 79f4745494
2 changed files with 6 additions and 6 deletions

View file

@ -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)

View file

@ -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;
}