diff options
author | Sean Callanan <scallanan@apple.com> | 2013-04-17 17:23:58 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2013-04-17 17:23:58 +0000 |
commit | 90e579f2950e72f8cdb7a70ca41d4e96e505b079 (patch) | |
tree | 2185782d34c37099298254cc60bfd21994ded955 /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | d0585d86867d6a32ebd8ed98e930b2f7e5b23c7a (diff) | |
download | bcm5719-llvm-90e579f2950e72f8cdb7a70ca41d4e96e505b079.tar.gz bcm5719-llvm-90e579f2950e72f8cdb7a70ca41d4e96e505b079.zip |
Removed the "expr" alias for "expression," which
is entirely unnecessary and confuses the command
interpreter when the user types "exp".
llvm-svn: 179691
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 093c73d2525..72a9df91050 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -282,9 +282,7 @@ CommandInterpreter::Initialize () cmd_obj_sp = GetCommandSPExact ("expression", false); if (cmd_obj_sp) - { - AddAlias ("expr", cmd_obj_sp); - + { ProcessAliasOptionsArgs (cmd_obj_sp, "--", alias_arguments_vector_sp); AddAlias ("p", cmd_obj_sp); AddAlias ("print", cmd_obj_sp); |