diff options
Diffstat (limited to 'lldb/source/Core/IOHandler.cpp')
-rw-r--r-- | lldb/source/Core/IOHandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Core/IOHandler.cpp b/lldb/source/Core/IOHandler.cpp index 79eb89251c8..eb90462afee 100644 --- a/lldb/source/Core/IOHandler.cpp +++ b/lldb/source/Core/IOHandler.cpp @@ -352,7 +352,8 @@ IOHandlerEditline::IOHandlerEditline (Debugger &debugger, #ifndef _MSC_VER use_editline = m_input_sp->GetFile().GetIsRealTerminal(); #else - use_editline = true; + // Editline is causing issues on Windows, so use the fallback. + use_editline = false; #endif if (use_editline) |