On 09/14/2011 12:04 AM, Jeff King wrote: > On Tue, Sep 13, 2011 at 05:58:25PM -0400, Jeff King wrote: > >> @@ -609,26 +610,23 @@ int finish_async(struct async *async) >> int run_hook(const char *index_file, const char *name, ...) >> { >> struct child_process hook; >> - const char **argv = NULL, *env[2]; >> + struct argv_array argv = ARGV_ARRAY_INIT; > > I find this diff function header pretty confusing. Of course we're not > in finish_async, as you can see by the fact that the context contains > the start of run_hook. > > I don't think this is something that can be solved with xfuncname > config; we would have to teach xdiff to look at context lines when > picking a header line. > > Am I the only one who finds this confusing? Can anyone think of a reason > to keep showing finish_async in this example? > I've never thought about the problem as I tend to read changes and context before header. Current behaviour makes sense if the closing brace of the previous function is inside the context, so if we're going to change this, we'd either have to teach xfuncname() (or whatever we'll be using) about indentation to make it handle bannerstyle[1] indentation, or take any closing brace before a new first-level indentation as a sign to close the previous function. OTOH we could just ignore bannerstyle indent, as it's sort of bizarre and not very widely used, but we'd still have to handle the case of the previous function being closed inside the context. Personally, I don't think it's worth it, but I certainly see your point. *1. Bannerstyle indent looks like this, for those who aren't familiar with this very confusing style. int prefixcmp(char *haystack, char *needle) { return strncmp(haystack, needle, strlen(needle)); } -- Andreas Ericsson andreas.ericsson@xxxxxx OP5 AB www.op5.se Tel: +46 8-230225 Fax: +46 8-230231 Considering the successes of the wars on alcohol, poverty, drugs and terror, I think we should give some serious thought to declaring war on peace. -- 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