1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-26 04:00:43 +03:00

Update one L"" string to U"" missed on last merge

This commit is contained in:
David Kinder 2023-09-10 11:45:35 +01:00
parent 2edd7ec93d
commit 34337d1faf

View file

@ -543,7 +543,7 @@ int Indexes::sort_comparison(const void *ent1, const void *ent2) {
Str::copy(sort_key, il->term);
/* ensure subentries follow main entries */
if (Str::get_first_char(sort_key) != ':')
Regexp::replace(sort_key, U": *", L"ZZZZZZZZZZZZZZZZZZZZZZ", REP_REPEATING);
Regexp::replace(sort_key, U": *", U"ZZZZZZZZZZZZZZZZZZZZZZ", REP_REPEATING);
IndexUtilities::improve_alphabetisation(sort_key);
match_results mr = Regexp::create_mr();