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/CommandObjectWatchpointCommand.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/CommandObjectWatchpointCommand.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpointCommand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpointCommand.cpp b/lldb/source/Commands/CommandObjectWatchpointCommand.cpp index 0083ff140e5..45291a54bdb 100644 --- a/lldb/source/Commands/CommandObjectWatchpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectWatchpointCommand.cpp @@ -46,7 +46,7 @@ public: "add", "Add a set of commands to a watchpoint, to be executed whenever the watchpoint is hit.", NULL), - IOHandlerDelegateMultiline("DONE", IOHandlerDelegate::Completion::LLDBCommand), + IOHandlerDelegateMultiline("DONE", true, IOHandlerDelegate::Completion::LLDBCommand), m_options (interpreter) { SetHelpLong ( |