convert literals to escaped bytes

This commit is contained in:
2024-12-17 22:41:21 +01:00
parent 609862f222
commit 4525e3103d
46 changed files with 120 additions and 120 deletions

View File

@ -370,7 +370,7 @@ static bool DecomposeLetter(wchar_t input, char* letter)
case 0x201c: // L'“'
*letter = (char)'"';
return true;
case 0x201d: // L''
case 0x201d: // L'\xE2\x80\x9D'
*letter = (char)'"';
return true;
}