commit | f2e53a53d931692a76f0f8b73a8c38f1bf2cffe9 | [log] [tgz] |
---|---|---|
author | Greg Clayton <gclayton@apple.com> | Thu Sep 27 00:02:27 2012 +0000 |
committer | Greg Clayton <gclayton@apple.com> | Thu Sep 27 00:02:27 2012 +0000 |
tree | 6628d27b6e02619629f1c3df7e1a2186b3a592d8 | |
parent | 4e8570b0bc186b8411a3373b53c79fe20969f603 [diff] [blame] |
Added "k" as an alias to "process kill" since the new "kdb-remote" will now conflict with it. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@164737 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp index 9cec1f3..29ebb69 100644 --- a/source/Interpreter/CommandInterpreter.cpp +++ b/source/Interpreter/CommandInterpreter.cpp
@@ -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)