Hi, On Mon, 16 Jun 2008, Don Zickus wrote: > Changes since v1 > ================ > - converted to path-list structs > - added testcases for renaming a patch and apply a new patch on top inside > the same patch file Just for future reference: commonly, this is not put into the commit message, but after the "---" separator into the mail comments. > +/* > + * Caches patch filenames to handle the case where a > + * patch chunk reuses a filename > + */ > +struct fn_cache { > + char *name; > + struct patch *patch; > + struct fn_cache *next; > +}; It is still not a path_list. Even if you said so in the "Changes since V1". See http://repo.or.cz/w/git/vmiklos.git?a=blob;f=Documentation/technical/api-path-list.txt;h=9dbedd0a67ce6c1cecd157b0d89f9b1333e180e3;hb=340d6344cfe13bb93740f40d3268ca39b8c7c15d#l36 for a nice example how to use path_lists. You want to use path_list_has_path(). Hth, Dscho -- 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