mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
fixup! refactor(parser): Clarify where escaping is relevant
This commit is contained in:
parent
69c4628b16
commit
53836f583c
1 changed files with 1 additions and 4 deletions
|
@ -1351,10 +1351,7 @@ impl<'help, 'cmd> Parser<'help, 'cmd> {
|
||||||
if let Some((_, Some(ref val))) = arg.env {
|
if let Some((_, Some(ref val))) = arg.env {
|
||||||
let val = RawOsStr::new(val);
|
let val = RawOsStr::new(val);
|
||||||
|
|
||||||
debug!(
|
debug!("Parser::add_env: Found an opt with value={:?}", val,);
|
||||||
"Parser::add_env: Found an opt with value={:?}",
|
|
||||||
val, trailing_values
|
|
||||||
);
|
|
||||||
let mut arg_values = Vec::new();
|
let mut arg_values = Vec::new();
|
||||||
let _parse_result =
|
let _parse_result =
|
||||||
self.split_arg_values(arg, &val, trailing_values, &mut arg_values);
|
self.split_arg_values(arg, &val, trailing_values, &mut arg_values);
|
||||||
|
|
Loading…
Reference in a new issue