diff options
Diffstat (limited to 'unigen/src')
| -rw-r--r-- | unigen/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unigen/src/main.rs b/unigen/src/main.rs index 4851fa5..bedabc6 100644 --- a/unigen/src/main.rs +++ b/unigen/src/main.rs @@ -33,6 +33,7 @@ impl Flags { let mut rest = Vec::with_capacity(env::args().len() - 1); let mut flags = Flags::default(); let mut parser = lexopt::Parser::from_env(); + parser.set_short_equals(false); while let Some(arg) = parser.next()? { match arg { |