diff options
author | Greg Clayton <gclayton@apple.com> | 2014-05-08 16:59:00 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-05-08 16:59:00 +0000 |
commit | c3d874a5843810e69b9847a6a4bb49c9481c6692 (patch) | |
tree | 3d5324d2969902043bcd687787449b49f2a4cc83 /lldb/source/Interpreter/ScriptInterpreterPython.cpp | |
parent | 61449c6b9a69054a93e885b4503c2f9b3a7ce426 (diff) | |
download | bcm5719-llvm-c3d874a5843810e69b9847a6a4bb49c9481c6692.tar.gz bcm5719-llvm-c3d874a5843810e69b9847a6a4bb49c9481c6692.zip |
lldb TOT is dropping the last entry for multi-line IOHandlers that use the IOHandlerDelegateMultiline.
<rdar://problem/16844164>
llvm-svn: 208336
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index 52920eddde2..da84353fed4 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -140,7 +140,7 @@ ScriptInterpreterPython::Locker::~Locker() ScriptInterpreterPython::ScriptInterpreterPython (CommandInterpreter &interpreter) : ScriptInterpreter (interpreter, eScriptLanguagePython), - IOHandlerDelegateMultiline("DONE", true), + IOHandlerDelegateMultiline("DONE"), m_saved_stdin (), m_saved_stdout (), m_saved_stderr (), |