mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +00:00
LibUnicode: Ignore U+200F when parsing format identifiers
Noticed this while implementing multiple identifier support. We were errantly parsing U+200F as a lone identifier in some Hebrew formats.
This commit is contained in:
parent
04b8b87c17
commit
c24a350a18
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ struct UnicodeLocaleData {
|
||||||
|
|
||||||
static String parse_identifiers(String pattern, StringView replacement, UnicodeLocaleData& locale_data, NumberFormat& format)
|
static String parse_identifiers(String pattern, StringView replacement, UnicodeLocaleData& locale_data, NumberFormat& format)
|
||||||
{
|
{
|
||||||
static Utf8View whitespace { "\u0020\u00a0"sv };
|
static Utf8View whitespace { "\u0020\u00a0\u200f"sv };
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
Utf8View utf8_pattern { pattern };
|
Utf8View utf8_pattern { pattern };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue