On Mon, Jan 09, 2006 at 10:41:36PM -0800, Jason Dagit wrote: > On Jan 9, 2006, at 9:44 PM, Will wrote: > >I'd be in favor of eliminating the output on success; it would annoy me > >to see that message after every command =) > > That message is printed by putInfo, > let putInfo s = when (not $ Quiet `elem` opts) $ putStr s > > Let's just change it to > let putInfo s = when ( Verbose `elem` opts) $ putstr s
The naming convention normally used is that the latter function is called "putVerbose", the former "putInfo", so I'd prefer to rename it when you change it, and leave putInfo doing the same job. -- David Roundy http://www.darcs.net _______________________________________________ darcs-users mailing list [email protected] http://www.abridgegame.org/mailman/listinfo/darcs-users
