Remove "k" as an alias for "kill". It doesn't ask for confirmation and
authorJason Molenda <jmolenda@apple.com>
Fri, 5 Oct 2012 22:56:23 +0000 (22:56 +0000)
committerJason Molenda <jmolenda@apple.com>
Fri, 5 Oct 2012 22:56:23 +0000 (22:56 +0000)
it's too easy to type by mistake when typing "l" (read: I did this once).

llvm-svn: 165340

lldb/source/Interpreter/CommandInterpreter.cpp

index c621789..85d7a89 100644 (file)
@@ -277,7 +277,6 @@ CommandInterpreter::Initialize ()
     if (cmd_obj_sp)
     {
         AddAlias ("kill", cmd_obj_sp);
-        AddAlias ("k", cmd_obj_sp);
     }
     
     cmd_obj_sp = GetCommandSPExact ("process launch", false);