We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd445a7 commit 99a11acCopy full SHA for 99a11ac
doc.cpp
@@ -2118,7 +2118,7 @@ CString strLine (lpszText, size);
2118
2119
// do not display UTF-8 characters until they have completely arrived
2120
// check if high-order bit is set
2121
- if (m_bUTF_8 && (c & 0x80) && c != IAC)
+ if (!(flags & NOTE_OR_COMMAND) && m_bUTF_8 && (c & 0x80) && (c != IAC || m_phase == HAVE_IAC))
2122
{
2123
m_UTF8Sequence [0] = c;
2124
m_UTF8Sequence [1] = 0; // null terminator
0 commit comments