diff options
author | Enrico Granata <egranata@apple.com> | 2016-02-29 21:37:01 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-02-29 21:37:01 +0000 |
commit | 7a67ee263f6f286166aeb512d8efe81c82a7df6c (patch) | |
tree | 6d6a4c9d344607e60d8305936a3af5204ec53859 /lldb/source/Interpreter/CommandObject.cpp | |
parent | ab9eca4d9fabfae3e78afe785fb8f6a061b4095c (diff) | |
download | llvm-7a67ee263f6f286166aeb512d8efe81c82a7df6c.zip llvm-7a67ee263f6f286166aeb512d8efe81c82a7df6c.tar.gz llvm-7a67ee263f6f286166aeb512d8efe81c82a7df6c.tar.bz2 |
Change the user-visible name for the argument type language to source-language
This makes it so that help language provides help on the language command and help source-language provides the list of source languages one can pass as an option
Fixes rdar://24869942
llvm-svn: 262259
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 616d3e3..e04659c 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -1170,7 +1170,7 @@ CommandObject::g_arguments_data[] = { eArgTypeGDBFormat, "gdb-format", CommandCompletions::eNoCompletion, { GDBFormatHelpTextCallback, true }, nullptr }, { eArgTypeHelpText, "help-text", CommandCompletions::eNoCompletion, { nullptr, false }, "Text to be used as help for some other entity in LLDB" }, { eArgTypeIndex, "index", CommandCompletions::eNoCompletion, { nullptr, false }, "An index into a list." }, - { eArgTypeLanguage, "language", CommandCompletions::eNoCompletion, { LanguageTypeHelpTextCallback, true }, nullptr }, + { eArgTypeLanguage, "source-language", CommandCompletions::eNoCompletion, { LanguageTypeHelpTextCallback, true }, nullptr }, { eArgTypeLineNum, "linenum", CommandCompletions::eNoCompletion, { nullptr, false }, "Line number in a source file." }, { eArgTypeLogCategory, "log-category", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a category within a log channel, e.g. all (try \"log list\" to see a list of all channels and their categories." }, { eArgTypeLogChannel, "log-channel", CommandCompletions::eNoCompletion, { nullptr, false }, "The name of a log channel, e.g. process.gdb-remote (try \"log list\" to see a list of all channels and their categories)." }, |