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

Jason Molenda jmolenda at apple.com
Fri Oct 5 15:56:23 PDT 2012


Author: jmolenda
Date: Fri Oct  5 17:56:23 2012
New Revision: 165340

URL: http://llvm.org/viewvc/llvm-project?rev=165340&view=rev
Log:
Remove "k" as an alias for "kill".  It doesn't ask for confirmation and
it's too easy to type by mistake when typing "l" (read: I did this once).


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=165340&r1=165339&r2=165340&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Fri Oct  5 17:56:23 2012
@@ -277,7 +277,6 @@
     if (cmd_obj_sp)
     {
         AddAlias ("kill", cmd_obj_sp);
-        AddAlias ("k", cmd_obj_sp);
     }
     
     cmd_obj_sp = GetCommandSPExact ("process launch", false);





More information about the lldb-commits mailing list