diff options
Diffstat (limited to 'lldb/source/Interpreter/Options.cpp')
-rw-r--r-- | lldb/source/Interpreter/Options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Interpreter/Options.cpp b/lldb/source/Interpreter/Options.cpp index 95b7078cdd8..6b509d40ef8 100644 --- a/lldb/source/Interpreter/Options.cpp +++ b/lldb/source/Interpreter/Options.cpp @@ -310,7 +310,7 @@ Options::GetLongOptions () } } - //getopt_long requires a NULL final entry in the table: + //getopt_long_only requires a NULL final entry in the table: m_getopt_table[i].name = NULL; m_getopt_table[i].has_arg = 0; @@ -796,7 +796,7 @@ Options::HandleOptionCompletion } else if (opt_defs_index != OptionArgElement::eUnrecognizedArg) { - // We recognized it, if it an incomplete long option, complete it anyway (getopt_long is + // We recognized it, if it an incomplete long option, complete it anyway (getopt_long_only is // happy with shortest unique string, but it's still a nice thing to do.) Otherwise return // The string so the upper level code will know this is a full match and add the " ". if (cur_opt_str && strlen (cur_opt_str) > 2 @@ -819,7 +819,7 @@ Options::HandleOptionCompletion // FIXME - not handling wrong options yet: // Check to see if they are writing a long option & complete it. // I think we will only get in here if the long option table has two elements - // that are not unique up to this point. getopt_long does shortest unique match + // that are not unique up to this point. getopt_long_only does shortest unique match // for long options already. if (cur_opt_str && strlen (cur_opt_str) > 2 |