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 65126c7 commit 6fc6b56Copy full SHA for 6fc6b56
lldb/include/lldb/Host/Terminal.h
@@ -174,10 +174,11 @@ class TerminalState {
174
/// The value is cached after the first computation.
175
///
176
/// On POSIX systems, we check if the LANG environment variable contains the
177
-/// substring "UTF-8";
+/// substring "UTF-8", case insensitive.
178
179
-/// On Windows, we check that we are running from the Windows Terminal
180
-/// application.
+/// On Windows, we always return true since we use the `WriteConsoleW` API
+/// internally. Note that the default Windows codepage (437) does not support
181
+/// all Unicode characters. This function does not check the codepage.
182
bool TerminalSupportsUnicode();
183
184
} // namespace lldb_private
0 commit comments