[Lldb-commits] [lldb] r246740 - Remove the list of all languages in the help for "help language" since

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 2 18:13:26 PDT 2015


Author: jingham
Date: Wed Sep  2 20:13:26 2015
New Revision: 246740

URL: http://llvm.org/viewvc/llvm-project?rev=246740&view=rev
Log:
Remove the list of all languages in the help for "help language" since
almost all the elements on the list can't actually be passed to the language
command and all the ones that can have already been listed in the subcommands 
list.

<rdar://problem/22551082>

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

Modified: lldb/trunk/source/Commands/CommandObjectLanguage.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectLanguage.cpp?rev=246740&r1=246739&r2=246740&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectLanguage.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectLanguage.cpp Wed Sep  2 20:13:26 2015
@@ -34,10 +34,6 @@ CommandObjectMultiword (interpreter,
 void
 CommandObjectLanguage::GenerateHelpText (Stream &output_stream) {
     CommandObjectMultiword::GenerateHelpText(output_stream);
-
-    output_stream << "\nlanguage name can be one of the following:\n";
-
-    Language::PrintAllLanguages(output_stream, "  ", "\n");
 }
 
 CommandObjectLanguage::~CommandObjectLanguage ()




More information about the lldb-commits mailing list