You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(technically I guess this would be considering a "breaking-change", since it would be changing the semantics of how getopt behaves in this corner case; though it seems like anyone relying on the current behavior is asking for trouble...)
Sample program:
Here is a transcript illustrating some interesting invocations
I think that
--attrib hi=world
and--attrib=hi=world
should be treated as equivalent inputs.From skimming getopts, this should be relatively easy to fix by replacing the call to
split('=')
withsplitn('=', 1)
.The text was updated successfully, but these errors were encountered: