You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Henri Yandell (JIRA)" <ji...@apache.org> on 2010/03/02 08:11:27 UTC

[jira] Closed: (CLI-188) Adding the another hyphen code 96.

     [ https://issues.apache.org/jira/browse/CLI-188?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Henri Yandell closed CLI-188.
-----------------------------

    Resolution: Won't Fix

Agreed - resolving as wontfix.

> 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.0, 1.1, 1.2
>            Reporter: Grzegorz Solecki
>            Priority: Trivial
>             Fix For: 1.3
>
>         Attachments: TwoDifferentHyphens.txt
>
>
> 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.