diff options
author | Greg Clayton <gclayton@apple.com> | 2010-10-09 00:51:35 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-10-09 00:51:35 +0000 |
commit | b7c046248cb140d42772c72c249b29d3267d9e14 (patch) | |
tree | 0a8c250353eeeed1d680fb30115fac1663a13536 /lldb/source/Commands/CommandObjectApropos.cpp | |
parent | 74f6e9f523624583227837e1e76c70c622933a86 (diff) | |
download | bcm5719-llvm-b7c046248cb140d42772c72c249b29d3267d9e14.tar.gz bcm5719-llvm-b7c046248cb140d42772c72c249b29d3267d9e14.zip |
Fixed a missing space when using the "apropos" command and you don't find any matches.
llvm-svn: 116133
Diffstat (limited to 'lldb/source/Commands/CommandObjectApropos.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectApropos.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectApropos.cpp b/lldb/source/Commands/CommandObjectApropos.cpp index 545f58cfe49..a72b0db5278 100644 --- a/lldb/source/Commands/CommandObjectApropos.cpp +++ b/lldb/source/Commands/CommandObjectApropos.cpp @@ -73,8 +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'.", search_word); - result.AppendMessage ("Try 'help' to see a complete list of debugger commands."); + result.AppendMessageWithFormat ("No commands found pertaining to '%s'. Try 'help' to see a complete list of debugger commands.", search_word); } else { |