diff options
author | Greg Clayton <gclayton@apple.com> | 2010-11-02 18:23:13 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-11-02 18:23:13 +0000 |
commit | 3bcbf842351fc9291f10de4b2dbc88b61e3b9188 (patch) | |
tree | b64a6c0b166ea884c5fd932ef918a6cb5d4f4303 /lldb/source/Commands/CommandObjectApropos.cpp | |
parent | 82ae9a95a5ba14dc0b2212ff5f51d05c194854f4 (diff) | |
download | bcm5719-llvm-3bcbf842351fc9291f10de4b2dbc88b61e3b9188.tar.gz bcm5719-llvm-3bcbf842351fc9291f10de4b2dbc88b61e3b9188.zip |
Fixed a missing newline when you type "apropos somethingthatdoesnotexist".
llvm-svn: 118033
Diffstat (limited to 'lldb/source/Commands/CommandObjectApropos.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectApropos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectApropos.cpp b/lldb/source/Commands/CommandObjectApropos.cpp index a72b0db5278..1bab2c97d9b 100644 --- a/lldb/source/Commands/CommandObjectApropos.cpp +++ b/lldb/source/Commands/CommandObjectApropos.cpp @@ -73,7 +73,7 @@ CommandObjectApropos::Execute 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 { |