Adding the another hyphen code 96.
----------------------------------

                 Key: CLI-188
                 URL: https://issues.apache.org/jira/browse/CLI-188
             Project: Commons CLI
          Issue Type: Improvement
          Components: Parser
    Affects Versions: 1.2, 1.1, 1.0
            Reporter: Grzegorz Solecki
            Priority: Trivial
             Fix For: 1.3


In the class Parser (rev 680644) close to line 190 there is code:
\\
\\
{code:title=Parser.java}
// the value is an option
else if (t.startsWith("-"))
{
{code} 

This line recognizes hyphen like -
But sometimes (when someone has to work with MS Word Docs) this hyphen - can be 
used instead of -.
So I would like to suggest just adding a simple piece of code like:
\\
\\
{code:title=Parser.java}
// the value is an option
else if (t.startsWith("-") || t.startsWith("-"))
{
{code} 
or try to throw an exception like "Option expected not " or "unexpected 
argument".

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to