Hi Jason,

For overall comments, see my other email.  Here I just have a code
simplification to point out.

On Mon, Aug 01, 2005 at 12:46:22AM -0700, Jason Dagit wrote:
> + maybeAskUser 
> +     | RunPostGet `elem` opts = \_ -> return "yes"
> +     | AskPostGet `elem` opts = askUser 
> +     | otherwise = impossible

If you change this to 

 maybeAskUser 
     | RunPostGet `elem` opts = \_ -> return "yes"
     | otherwise = askUser

you can eliminate the fixFlagsToPostget function, and have cleaner code.
-- 
David Roundy
http://www.darcs.net

_______________________________________________
darcs-devel mailing list
[email protected]
http://www.abridgegame.org/cgi-bin/mailman/listinfo/darcs-devel

Reply via email to