[Lldb-commits] [lldb] r120850 - /lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
Jim Ingham
jingham at apple.com
Fri Dec 3 14:37:19 PST 2010
Author: jingham
Date: Fri Dec 3 16:37:19 2010
New Revision: 120850
URL: http://llvm.org/viewvc/llvm-project?rev=120850&view=rev
Log:
Document the fact that "breakpoint modify" with no breakpoint acts on the
last created breakpoint.
Modified:
lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
Modified: lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp?rev=120850&r1=120849&r2=120850&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp Fri Dec 3 16:37:19 2010
@@ -1486,7 +1486,8 @@
CommandObjectBreakpointModify::CommandObjectBreakpointModify (CommandInterpreter &interpreter) :
CommandObject (interpreter,
"breakpoint modify",
- "Modify the options on a breakpoint or set of breakpoints in the executable.",
+ "Modify the options on a breakpoint or set of breakpoints in the executable. "
+ "If no breakpoint is specified, acts on the last created breakpoint.",
NULL)
{
CommandArgumentEntry arg;
More information about the lldb-commits
mailing list