[Lldb-commits] [lldb] r166249 - /lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Jim Ingham jingham at apple.com
Thu Oct 18 16:24:12 PDT 2012


Author: jingham
Date: Thu Oct 18 18:24:12 2012
New Revision: 166249

URL: http://llvm.org/viewvc/llvm-project?rev=166249&view=rev
Log:
Change the "rb" alias to "rbreak" since some people are used to typing more than "rb" and so weren't 
finding the alias.

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=166249&r1=166248&r2=166249&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Thu Oct 18 18:24:12 2012
@@ -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);
     }
 }
 





More information about the lldb-commits mailing list