[Lldb-commits] [lldb] r181856 - <rdar://problem/13892319>

Greg Clayton gclayton at apple.com
Tue May 14 18:03:08 PDT 2013


Author: gclayton
Date: Tue May 14 20:03:08 2013
New Revision: 181856

URL: http://llvm.org/viewvc/llvm-project?rev=181856&view=rev
Log:
<rdar://problem/13892319>

The command "po" by itself yields odd errors. I fixed the alias.


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=181856&r1=181855&r2=181856&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Tue May 14 20:03:08 2013
@@ -292,7 +292,7 @@ CommandInterpreter::Initialize ()
         AddOrReplaceAliasOptions ("call", alias_arguments_vector_sp);
 
         alias_arguments_vector_sp.reset (new OptionArgVector);
-        ProcessAliasOptionsArgs (cmd_obj_sp, "-O --", alias_arguments_vector_sp);
+        ProcessAliasOptionsArgs (cmd_obj_sp, "-O -- ", alias_arguments_vector_sp);
         AddAlias ("po", cmd_obj_sp);
         AddOrReplaceAliasOptions ("po", alias_arguments_vector_sp);
     }





More information about the lldb-commits mailing list