[Lldb-commits] [lldb] r114840 - /lldb/trunk/source/Commands/CommandObjectSettings.cpp

Caroline Tice ctice at apple.com
Mon Sep 27 09:58:16 PDT 2010


Author: ctice
Date: Mon Sep 27 11:58:16 2010
New Revision: 114840

URL: http://llvm.org/viewvc/llvm-project?rev=114840&view=rev
Log:
Change command option "--no_override" to "--no-override" (hypen instead of underscore).


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

Modified: lldb/trunk/source/Commands/CommandObjectSettings.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectSettings.cpp?rev=114840&r1=114839&r2=114840&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectSettings.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectSettings.cpp Mon Sep 27 11:58:16 2010
@@ -206,7 +206,7 @@
 lldb::OptionDefinition
 CommandObjectSettingsSet::CommandOptions::g_option_table[] =
 {
-    { LLDB_OPT_SET_1, false, "no_override", 'n', no_argument, NULL, NULL, NULL, "Prevents already existing instances and pending settings from being assigned this new value.  Using this option means that only the default or specified instance setting values will be updated." },
+    { LLDB_OPT_SET_1, false, "no-override", 'n', no_argument, NULL, NULL, NULL, "Prevents already existing instances and pending settings from being assigned this new value.  Using this option means that only the default or specified instance setting values will be updated." },
     { LLDB_OPT_SET_2, false, "reset", 'r', no_argument,   NULL, NULL, NULL, "Causes value to be reset to the original default for this variable.  No value needs to be specified when this option is used." },
 };
 





More information about the lldb-commits mailing list