[Lldb-commits] [lldb] r118033 - /lldb/trunk/source/Commands/CommandObjectApropos.cpp

Greg Clayton gclayton at apple.com
Tue Nov 2 11:23:13 PDT 2010


Author: gclayton
Date: Tue Nov  2 13:23:13 2010
New Revision: 118033

URL: http://llvm.org/viewvc/llvm-project?rev=118033&view=rev
Log:
Fixed a missing newline when you type "apropos somethingthatdoesnotexist".

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

Modified: lldb/trunk/source/Commands/CommandObjectApropos.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectApropos.cpp?rev=118033&r1=118032&r2=118033&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectApropos.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectApropos.cpp Tue Nov  2 13:23:13 2010
@@ -73,7 +73,7 @@
             m_interpreter.FindCommandsForApropos (search_word, commands_found, commands_help);
             if (commands_found.GetSize() == 0)
             {
-                result.AppendMessageWithFormat ("No commands found pertaining to '%s'. Try 'help' to see a complete list of debugger commands.", search_word);
+                result.AppendMessageWithFormat ("No commands found pertaining to '%s'. Try 'help' to see a complete list of debugger commands.\n", search_word);
             }
             else
             {





More information about the lldb-commits mailing list