diff options
author | Greg Clayton <gclayton@apple.com> | 2012-09-27 00:02:27 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-09-27 00:02:27 +0000 |
commit | e86fd74901534965640bb8f6ba3c5ffc377f5a26 (patch) | |
tree | 16f009b2ba2c742312c6abe868fa03135a3e98f6 /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | c091ea33f07a9da83a78edc3e73685a5f1f14577 (diff) | |
download | bcm5719-llvm-e86fd74901534965640bb8f6ba3c5ffc377f5a26.tar.gz bcm5719-llvm-e86fd74901534965640bb8f6ba3c5ffc377f5a26.zip |
Added "k" as an alias to "process kill" since the new "kdb-remote" will now conflict with it.
llvm-svn: 164737
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 9cec1f39906..29ebb694890 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) |