From e86fd74901534965640bb8f6ba3c5ffc377f5a26 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Thu, 27 Sep 2012 00:02:27 +0000 Subject: [PATCH] Added "k" as an alias to "process kill" since the new "kdb-remote" will now conflict with it. llvm-svn: 164737 --- lldb/source/Interpreter/CommandInterpreter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 9cec1f3..29ebb69 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -268,7 +268,10 @@ CommandInterpreter::Initialize () 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) -- 2.7.4