Re: exit and eject should have their second letter in upper-case in cdio(1) help output

2005-12-21 Thread Todd C. Miller
Actually, the correct thing to do is to make one match with a single letter and the other match with two or more letters. I chose to make eject match e. This resolves the ambiguity. - todd

exit and eject should have their second letter in upper-case in cdio(1) help output

2005-12-20 Thread Andrés Delfino
Since E is an ambiguous command, one must use either type EJ or EX to eject a cd or otherwise exit cdio, but both have an E shorcut. That's why these two lines must be changed: { CMD_EJECT, eject, 1, } to: { CMD_EJECT, eject, 2, }, { CMD_QUIT, exit, 1, }, to: { CMD_QUIT, exit, 2, }, at