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

Greg Clayton gclayton at apple.com
Wed Sep 26 17:02:27 PDT 2012


Author: gclayton
Date: Wed Sep 26 19:02:27 2012
New Revision: 164737

URL: http://llvm.org/viewvc/llvm-project?rev=164737&view=rev
Log:
Added "k" as an alias to "process kill" since the new "kdb-remote" will now conflict with it.


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=164737&r1=164736&r2=164737&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Wed Sep 26 19:02:27 2012
@@ -268,7 +268,10 @@
     
     cmd_obj_sp = GetCommandSPExact ("process kill", false);
     if (cmd_obj_sp)
+    {
         AddAlias ("kill", cmd_obj_sp);
+        AddAlias ("k", cmd_obj_sp);
+    }
     
     cmd_obj_sp = GetCommandSPExact ("process launch", false);
     if (cmd_obj_sp)





More information about the lldb-commits mailing list