[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cmdline.ss library in PLT

This page is part of the web mail archives of SRFI 37 from before July 7th, 2015. The new archives for SRFI 37 contain all messages, not just those from before July 7th, 2015.



At Wed, 25 Sep 2002 11:15:47 -0400 (EDT), Anthony Carrico wrote:
> Given this existing idiom, is it worth upsetting the status quo with a new
> feature? Would it confuse application users, who probably expect the old
> idiom?

Yes, all good points. the cmdline.ss library avoids this problem by
requiring spaces:

  -xall

is the same as

  -x -a -l -l

not the same as

  -x all

regardless of the comandline specification.

Also, it doesn't use the 

  --long-name=x

it still uses spaces, ie:

  --long-name x

so that would be further incompatability.

Robby