diff --git a/uppsrc/Core/UnicodeInfo.cpp b/uppsrc/Core/UnicodeInfo.cpp index b81316f37..473b7de35 100644 --- a/uppsrc/Core/UnicodeInfo.cpp +++ b/uppsrc/Core/UnicodeInfo.cpp @@ -214,7 +214,7 @@ char ToAsciiRest_(dword c) UnicodeInfo& f = Single(); int q = f.composed.Find(c); if(q < 0) - return 0; + return ' '; int ch = *(const dword *)~f.decomposed[q]; return ch < 128 ? ch : ' '; }