fixup! refactor(parser): Clarify where escaping is relevant

This commit is contained in:
Ed Page 2022-08-03 23:53:33 -05:00
parent 69c4628b16
commit 53836f583c

View file

@ -1351,10 +1351,7 @@ impl<'help, 'cmd> Parser<'help, 'cmd> {
if let Some((_, Some(ref val))) = arg.env {
let val = RawOsStr::new(val);
debug!(
"Parser::add_env: Found an opt with value={:?}",
val, trailing_values
);
debug!("Parser::add_env: Found an opt with value={:?}", val,);
let mut arg_values = Vec::new();
let _parse_result =
self.split_arg_values(arg, &val, trailing_values, &mut arg_values);