Skip to content

Commit

Permalink
Fix eagerly trimming dash in parse_long_flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ldm0 committed Feb 5, 2021
1 parent b799613 commit adf91fd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/parse/parser.rs
Expand Up @@ -1015,7 +1015,7 @@ impl<'help, 'app> Parser<'help, 'app> {
self.cur_idx.set(self.cur_idx.get() + 1);

debug!("Parser::parse_long_arg: Does it contain '='...");
let long_arg = full_arg.trim_start_matches(b'-');
let long_arg = full_arg.trim_start_n_matches(2, b'-');
let (arg, val) = if full_arg.contains_byte(b'=') {
let (p0, p1) = long_arg.split_at_byte(b'=');
debug!("Yes '{:?}'", p1);
Expand Down Expand Up @@ -1526,6 +1526,7 @@ impl<'help, 'app> Parser<'help, 'app> {

// Error, Help, and Version Methods
impl<'help, 'app> Parser<'help, 'app> {
/// Is only used for the long flag(which is the only one needs fuzzy searching)
fn did_you_mean_error(
&mut self,
arg: &str,
Expand Down
21 changes: 21 additions & 0 deletions tests/flags.rs
Expand Up @@ -146,3 +146,24 @@ fn issue_1284_argument_in_flag_style() {
true
));
}

#[test]
fn issue_2308_multiple_dashes() {
static MULTIPLE_DASHES: &str =
"error: Found argument '-----' which wasn't expected, or isn't valid in this context
If you tried to supply `-----` as a value rather than a flag, use `-- -----`
USAGE:
test <arg>
For more information try --help";
let app = App::new("test").arg(Arg::new("arg").takes_value(true).required(true));

assert!(utils::compare_output(
app,
"test -----",
MULTIPLE_DASHES,
true
));
}

0 comments on commit adf91fd

Please sign in to comment.