From d19baf1257ca9e3f2cd822d8d7c816aad36da4d4 Mon Sep 17 00:00:00 2001 From: James Holderness Date: Sat, 13 Jan 2024 21:27:14 +0000 Subject: [PATCH] Use U+2426 for SUB control glyph. --- src/terminal/parser/OutputStateMachineEngine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/terminal/parser/OutputStateMachineEngine.cpp b/src/terminal/parser/OutputStateMachineEngine.cpp index 68a45916df4..70352c4b764 100644 --- a/src/terminal/parser/OutputStateMachineEngine.cpp +++ b/src/terminal/parser/OutputStateMachineEngine.cpp @@ -87,8 +87,8 @@ bool OutputStateMachineEngine::ActionExecute(const wchar_t wch) case AsciiChars::SUB: // The SUB control is used to cancel a control sequence in the same // way as CAN, but unlike CAN it also displays an error character, - // typically a reverse question mark. - _dispatch->Print(L'\u2E2E'); + // typically a reverse question mark (Unicode substitute form two). + _dispatch->Print(L'\u2426'); break; case AsciiChars::DEL: // The DEL control can sometimes be translated into a printable glyph