diff options
author | Greg Clayton <gclayton@apple.com> | 2014-05-02 01:03:07 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-05-02 01:03:07 +0000 |
commit | f29bf9a169e2d07319178a383045903bbb3982db (patch) | |
tree | 21b0e74936853fdb4db5141d0aaca0bc2fe7cec8 /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | 9005f418372a66ef5657b3683b1c975af88ec1c3 (diff) | |
download | bcm5719-llvm-f29bf9a169e2d07319178a383045903bbb3982db.tar.gz bcm5719-llvm-f29bf9a169e2d07319178a383045903bbb3982db.zip |
"DONE" is being left in multi-line results when it shouldn't for non terminal input.
<rdar://problem/16790579>
llvm-svn: 207818
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index e3e113aac23..fb12c9451bf 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -1567,7 +1567,7 @@ public: "command script add", "Add a scripted function as an LLDB command.", NULL), - IOHandlerDelegateMultiline ("DONE"), + IOHandlerDelegateMultiline ("DONE", true), m_options (interpreter) { CommandArgumentEntry arg1; |