On Fri, Jun 11, 2010 at 04:52:19PM -0700, Junio C Hamano wrote: > Axel Bonnet <axel.bonnet@xxxxxxxxxxxxxxx> writes: > > > + switch (userdiff_config(var, value)) { > > + case 0: break; > > + case -1: return -1; > > + default: return 0; > > + } > > Style: > > switch (userdiff_config(var, value)) { > case 0: > break; > case -1: > return -1; > default: > return 0; > } This is cut-and-paste from some of my code in git_diff_basic_config. I dunno if it is worth style-fixing that one, too. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html