[Lldb-commits] [lldb] r216637 - Make it clear in the help that "breakpoint command add" will act on the last set
Jim Ingham
jingham at apple.com
Wed Aug 27 17:50:17 PDT 2014
Author: jingham
Date: Wed Aug 27 19:50:17 2014
New Revision: 216637
URL: http://llvm.org/viewvc/llvm-project?rev=216637&view=rev
Log:
Make it clear in the help that "breakpoint command add" will act on the last set
breakpoint if no breakpoint id is specified.
<rdar://problem/17885160>
Modified:
lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp
Modified: lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp?rev=216637&r1=216636&r2=216637&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectBreakpointCommand.cpp Wed Aug 27 19:50:17 2014
@@ -44,7 +44,8 @@ public:
CommandObjectBreakpointCommandAdd (CommandInterpreter &interpreter) :
CommandObjectParsed (interpreter,
"add",
- "Add a set of commands to a breakpoint, to be executed whenever the breakpoint is hit.",
+ "Add a set of commands to a breakpoint, to be executed whenever the breakpoint is hit."
+ " If no breakpoint is specified, adds the commands to the last created breakpoint.",
NULL),
IOHandlerDelegateMultiline ("DONE", IOHandlerDelegate::Completion::LLDBCommand),
m_options (interpreter)
@@ -193,7 +194,7 @@ one command per line.\n" );
// Define the first (and only) variant of this arg.
bp_id_arg.arg_type = eArgTypeBreakpointID;
- bp_id_arg.arg_repetition = eArgRepeatPlain;
+ bp_id_arg.arg_repetition = eArgRepeatOptional;
// There is only one variant this argument could be; put it into the argument entry.
arg.push_back (bp_id_arg);
More information about the lldb-commits
mailing list