Re: [dev] network usage graphs

2012-01-27 Thread Jeremy Jackins
On Thu, Jan 26, 2012 at 11:05:19PM -, Bjartur Thorlacius wrote:
 What use is bloatware such as ed when you have sed and sponge?

Not sure if sarcasm...



Re: [dev] [st] new xft branch (FreeType font rendering)

2012-01-27 Thread Aurélien Aptel
Oops. Applied, thanks.



Re: [dev] [st] new xft branch (FreeType font rendering)

2012-01-27 Thread Connor Lane Smith
One thing I like about Go is how instead of breaking switches it has
explicit fallthrough. So this bug would have required the obviously
incorrect (pseudo-)code,

 case 'f':
   if(++i  argc) opt_font = argv[i];
   fallthrough;
 case 't':
   if(++i  argc) opt_title = argv[i];

cls