[Lldb-commits] [lldb] r116760 - /lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Caroline Tice ctice at apple.com
Mon Oct 18 15:38:05 PDT 2010


Author: ctice
Date: Mon Oct 18 17:38:05 2010
New Revision: 116760

URL: http://llvm.org/viewvc/llvm-project?rev=116760&view=rev
Log:
Fix small mistake in previous commit (fixing aliases for commands that
take raw input).


Modified:
    lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=116760&r1=116759&r2=116760&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Mon Oct 18 17:38:05 2010
@@ -555,7 +555,7 @@
                         if (command_args.GetCommandString (aliased_cmd_str))
                         {
                             command_line = aliased_cmd_str.c_str();
-                            command_cstr = command_obj->GetCommandName();
+                            command_cstr = command_args.GetArgumentAtIndex (0);
                         }
                     }
                 }





More information about the lldb-commits mailing list