Subject: | gnu_compat disables bundling, is this intended? |
The documentation only says:
Show quoted text
> "gnu_compat" controls whether "--opt=" is allowed, and what it should do. Without "gnu_compat",
> "--opt=" gives an error. With "gnu_compat", "--opt=" will give option "opt" and empty value.
> This is the way GNU getopt_long() does it.
but the code does this:
elsif ( $try eq 'gnu_compat' ) {
$gnu_compat = $action;
$bundling = 0;
$bundling_values = 1;
}