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:
+1
-1
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user