Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions pkgs/characters/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ using a [`CharacterRange`][CharacterRange].

Based on Unicode <!-- unicode-version -->version 16.0.0<!-- /unicode-version -->.

This package is not script-aware, and does not currently support the rule for
Indic Conjunct Breaks introduced in Unicode 15.10.0
([GB9c](https://www.unicode.org/reports/tr29/tr29-43.html#GB9c)).

## Unicode characters and representations

There is no such thing as plain text.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/characters/lib/src/characters_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ class StringCharacterRange implements CharacterRange {
}
}
state = move(state, category);
if (state & stateNoBreak == 0 && --count == 0) {
if (state & maskBreak == flagBreak && --count == 0) {
_move(newStart, index);
return true;
}
Expand Down
Loading
Loading