1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 03:46:36 +02:00

Fix finding gettext on Windows.

Unfortunately we need to move our escape character from 0x1A to 0x1B
because newer versions of gettext treat the former as an EOF character.
This commit is contained in:
Sadie Powell
2026-02-07 21:17:52 +00:00
parent e7aa0cb583
commit aef1925b1d
44 changed files with 631 additions and 615 deletions
+1 -1
View File
@@ -479,7 +479,7 @@ bool LineWrapper::GetLine(Anope::string &out)
break;
}
case '\x1A': // Non-breaking space
case '\x1B': // Non-breaking space
{
// There aren't any single byte non-breaking spaces so we use
// a substitute for that purpose.