diff options
author | Caroline Tice <ctice@apple.com> | 2010-10-12 22:46:01 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-10-12 22:46:01 +0000 |
commit | 4239eadeee4817b7e1e42c0af1a91c5b0b152e17 (patch) | |
tree | e9d95ae2ebe5cc23f89dac4e1f664efeb1f53e3a | |
parent | 0924b412012e106758528d92511dd3132161e21b (diff) | |
download | bcm5719-llvm-4239eadeee4817b7e1e42c0af1a91c5b0b152e17.tar.gz bcm5719-llvm-4239eadeee4817b7e1e42c0af1a91c5b0b152e17.zip |
Comment out code that was preventing commands that take raw input strings
from being alias-able.
llvm-svn: 116357
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index 88f3aeb4b0c..349c3fc802c 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -310,15 +310,15 @@ public: if (args.GetArgumentCount () > 0) { - if ((!use_subcommand && (cmd_obj->WantsRawCommandString())) - || (use_subcommand && (sub_cmd_obj->WantsRawCommandString()))) - { - result.AppendErrorWithFormat ("'%s' cannot be aliased with any options or arguments.\n", - (use_subcommand ? sub_cmd_obj->GetCommandName() - : cmd_obj->GetCommandName())); - result.SetStatus (eReturnStatusFailed); - return false; - } + //if ((!use_subcommand && (cmd_obj->WantsRawCommandString())) + // || (use_subcommand && (sub_cmd_obj->WantsRawCommandString()))) + //{ + // result.AppendErrorWithFormat ("'%s' cannot be aliased with any options or arguments.\n", + // (use_subcommand ? sub_cmd_obj->GetCommandName() + // : cmd_obj->GetCommandName())); + // result.SetStatus (eReturnStatusFailed); + // return false; + //} // options or arguments have been passed to the alias command, and must be // verified & processed here. |