diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-10-28 23:30:28 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-28 23:30:28 +0000 |
| commit | 8763780961ae37b46690e0ee66447847275a0040 (patch) | |
| tree | 81dbb281eba0cad8bdd969e07896a381f4de734b /lldb/source/Commands/CommandObjectHelp.cpp | |
| parent | 7c533b244730c5c8c2ff725e1a81a43df6394b62 (diff) | |
| download | bcm5719-llvm-8763780961ae37b46690e0ee66447847275a0040.tar.gz bcm5719-llvm-8763780961ae37b46690e0ee66447847275a0040.zip | |
Add an example customization directory which uses a binutils.py module to provide
commands to print the binary representaion of an integer.
llvm-svn: 143252
Diffstat (limited to 'lldb/source/Commands/CommandObjectHelp.cpp')
| -rw-r--r-- | lldb/source/Commands/CommandObjectHelp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectHelp.cpp b/lldb/source/Commands/CommandObjectHelp.cpp index e735c662bac..d3b9b0dd902 100644 --- a/lldb/source/Commands/CommandObjectHelp.cpp +++ b/lldb/source/Commands/CommandObjectHelp.cpp @@ -182,7 +182,7 @@ CommandObjectHelp::Execute (Args& command, CommandReturnObject &result) const char *long_help = sub_cmd_obj->GetHelpLong(); if ((long_help != NULL) && (strlen (long_help) > 0)) - output_strm.Printf ("\n%s", long_help); + output_strm.Printf ("%s", long_help); else if (sub_cmd_obj->WantsRawCommandString()) { std::string help_text (sub_cmd_obj->GetHelp()); |

