Windows fix: Disable editline for MSVC. Since r208369 there have been issues, probably related to the editline wrapper. For now, it's more stable and usable disabled.

llvm-svn: 210105
This commit is contained in:
Colin Riley 2014-06-03 14:37:35 +00:00
parent 740ed90626
commit 28e7ed12f5
1 changed files with 2 additions and 1 deletions

View File

@ -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)