Change the "rb" alias to "rbreak" since some people are used to typing more than "rb" and so weren't
finding the alias.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@166249 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp
index 461f821..2bf1cc3 100644
--- a/source/Interpreter/CommandInterpreter.cpp
+++ b/source/Interpreter/CommandInterpreter.cpp
@@ -309,8 +309,8 @@
{
alias_arguments_vector_sp.reset (new OptionArgVector);
ProcessAliasOptionsArgs (cmd_obj_sp, "--func-regex %1", alias_arguments_vector_sp);
- AddAlias ("rb", cmd_obj_sp);
- AddOrReplaceAliasOptions("rb", alias_arguments_vector_sp);
+ AddAlias ("rbreak", cmd_obj_sp);
+ AddOrReplaceAliasOptions("rbreak", alias_arguments_vector_sp);
}
}