[Lldb-commits] [lldb] r191454 - Fix the command name in the syntax text for _regexp-list
Ben Langmuir
ben.langmuir at intel.com
Thu Sep 26 13:00:01 PDT 2013
Author: benlangmuir
Date: Thu Sep 26 15:00:01 2013
New Revision: 191454
URL: http://llvm.org/viewvc/llvm-project?rev=191454&view=rev
Log:
Fix the command name in the syntax text for _regexp-list
Modified:
lldb/trunk/source/Interpreter/CommandInterpreter.cpp
Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=191454&r1=191453&r2=191454&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Thu Sep 26 15:00:01 2013
@@ -592,7 +592,7 @@ CommandInterpreter::LoadCommandDictionar
list_regex_cmd_ap(new CommandObjectRegexCommand (*this,
"_regexp-list",
"Implements the GDB 'list' command in all of its forms except FILE:FUNCTION and maps them to the appropriate 'source list' commands.",
- "_regexp-list [<line>]\n_regexp-attach [<file>:<line>]\n_regexp-attach [<file>:<line>]",
+ "_regexp-list [<line>]\n_regexp-list [<file>:<line>]\n_regexp-list [<file>:<line>]",
2,
CommandCompletions::eSourceFileCompletion));
if (list_regex_cmd_ap.get())
More information about the lldb-commits
mailing list