Nguyán ThÃi Ngác Duy <pclouds@xxxxxxxxx> writes: > --- > cache.h | 22 ++++++++++++++++++++-- > dir.c | 11 +++++++---- > setup.c | 17 ----------------- > tree-walk.c | 25 ++++++++++++------------- > 4 files changed, 39 insertions(+), 36 deletions(-) > > diff --git a/cache.h b/cache.h > index 27ac8a7..da1a46c 100644 > --- a/cache.h > +++ b/cache.h > @@ -501,16 +501,34 @@ extern int index_name_is_other(const struct index_state *, const char *, int); > extern int ie_match_stat(const struct index_state *, struct cache_entry *, struct stat *, unsigned int); > extern int ie_modified(const struct index_state *, struct cache_entry *, struct stat *, unsigned int); > > +/* > + * Magic pathspec > + * > + * NEEDSWORK: These need to be moved to dir.h or even to a new > + * pathspec.h when we restructure get_pathspec() users to use the > + * "struct pathspec" interface. > + * > + * Possible future magic semantics include stuff like: > + * > + * { PATHSPEC_NOGLOB, '!', "noglob" }, > + * { PATHSPEC_RECURSIVE, '*', "recursive" }, > + * { PATHSPEC_REGEXP, '\0', "regexp" }, > + * > + */ Gaah, why did you butcher this to heve only the whole comment and struct type declaration here, without moving the "Possible future magic" comment that clearly belongs to the structure definition you still have in dir.c to where it belongs? Also if NOGLOB is no longer "Possible future", why is it still here? -- 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