projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
740ed90
)
Windows fix: Disable editline for MSVC. Since r208369 there have been issues, probabl...
author
Colin Riley
<colin@codeplay.com>
Tue, 3 Jun 2014 14:37:35 +0000
(14:37 +0000)
committer
Colin Riley
<colin@codeplay.com>
Tue, 3 Jun 2014 14:37:35 +0000
(14:37 +0000)
llvm-svn: 210105
lldb/source/Core/IOHandler.cpp
patch
|
blob
|
history
diff --git
a/lldb/source/Core/IOHandler.cpp
b/lldb/source/Core/IOHandler.cpp
index
79eb892
..
eb90462
100644
(file)
--- 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)