On Sat, Apr 14, 2012 at 07:55:58PM +0200, Ross Lagerwall wrote: > > Add a --null (-z) option to git-clean which prints out the files > and directories separated with a NUL character rather than '\n'. > This makes it useful in conjunction with xargs -0. Thanks. Looks sensible to me. > - printf(_("Removing %s\n"), qname); > + print_path(_("Removing %s\n"), qname, > + use_nul); Although exceeding the 80 column boundary, I think this would be more readable without line break. If we want to stay within 80 columns, I don't think you can use 5 levels of indentation at the same time. You could also make use_nul a static global, although it probably does not improve the situation much. -- 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