From 4239eadeee4817b7e1e42c0af1a91c5b0b152e17 Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Tue, 12 Oct 2010 22:46:01 +0000 Subject: Comment out code that was preventing commands that take raw input strings from being alias-able. llvm-svn: 116357 --- lldb/source/Commands/CommandObjectCommands.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'lldb/source/Commands/CommandObjectCommands.cpp') diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index 88f3aeb..349c3fc 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. -- cgit v1.1