diff options
author | Enrico Granata <egranata@apple.com> | 2013-06-12 01:50:57 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2013-06-12 01:50:57 +0000 |
commit | 9b62d1d5ee32ec7abca5ed2fdfc079aab2168c2a (patch) | |
tree | 4a81d561c8821dd14d627e1daf6580ad238f508a /lldb/source/Commands/CommandObjectHelp.h | |
parent | f045007f117f91656a5d16ae004cfc3934c61c70 (diff) | |
download | bcm5719-llvm-9b62d1d5ee32ec7abca5ed2fdfc079aab2168c2a.tar.gz bcm5719-llvm-9b62d1d5ee32ec7abca5ed2fdfc079aab2168c2a.zip |
<rdar://problem/11914077>
If you type help command <word> <word> <word> <missingSubCommand> (e.g. help script import or help type summary fake), you will get help on the deepest matched command word (i.e. script or type summary in the examples)
Also, reworked the logic for commands to produce their help to make it more object-oriented
llvm-svn: 183822
Diffstat (limited to 'lldb/source/Commands/CommandObjectHelp.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectHelp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectHelp.h b/lldb/source/Commands/CommandObjectHelp.h index 91a40b52949..6e8f9d4cbc7 100644 --- a/lldb/source/Commands/CommandObjectHelp.h +++ b/lldb/source/Commands/CommandObjectHelp.h @@ -108,7 +108,7 @@ protected: virtual bool DoExecute (Args& command, CommandReturnObject &result); - + private: CommandOptions m_options; |