]> git.ipfire.org Git - thirdparty/git.git/commit - dir.c
dir.c: refactor is_excluded()
authorAdam Spiers <git@adamspiers.org>
Thu, 27 Dec 2012 02:32:27 +0000 (02:32 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 28 Dec 2012 20:07:46 +0000 (12:07 -0800)
commitf4cd69a67469eff90bee8e31529ca4e03c1afdf2
tree31f2c0ad8fb936cab295b9c560374e670c834a7a
parent578cd7c3eae11e552bbc34b29f35e273a455988e
dir.c: refactor is_excluded()

In a similar way to the previous commit, this extracts a new helper
function last_exclude_matching() which returns the last exclude_list
element which matched, or NULL if no match was found.  is_excluded()
becomes a wrapper around this, and just returns 0 or 1 depending on
whether any matching exclude_list element was found.

This allows callers to find out _why_ a given path was excluded,
rather than just whether it was or not, paving the way for a new git
sub-command which allows users to test their exclude lists from the
command line.

Signed-off-by: Adam Spiers <git@adamspiers.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
dir.c