[Lldb-commits] [lldb] r115185 - /lldb/trunk/source/Commands/CommandObjectExpression.cpp

Johnny Chen johnny.chen at apple.com
Thu Sep 30 11:16:58 PDT 2010


Author: johnny
Date: Thu Sep 30 13:16:58 2010
New Revision: 115185

URL: http://llvm.org/viewvc/llvm-project?rev=115185&view=rev
Log:
Fixed 'expr' help message.

Modified:
    lldb/trunk/source/Commands/CommandObjectExpression.cpp

Modified: lldb/trunk/source/Commands/CommandObjectExpression.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectExpression.cpp?rev=115185&r1=115184&r2=115185&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectExpression.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectExpression.cpp Thu Sep 30 13:16:58 2010
@@ -105,7 +105,7 @@
 CommandObjectExpression::CommandObjectExpression (CommandInterpreter &interpreter) :
     CommandObject (interpreter,
                    "expression",
-                   "Evaluate an Objective-C++ expression in the current program context, using variables currently in scope.",
+                   "Evaluate a C/ObjC/C++ expression in the current program context, using variables currently in scope.",
                    "expression [<cmd-options>] <expr>"),
 m_expr_line_count (0),
     m_expr_lines ()





More information about the lldb-commits mailing list