This makes grep_cache consistent with grep_tree. Signed-off-by: Chris Packham <judge.packham@xxxxxxxxx> --- In addition to consistency, moving the pathspec check up allows the addition of a simple if clause for submodules later. builtin/grep.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/grep.c b/builtin/grep.c index a51eb2c..251c4e7 100644 --- a/builtin/grep.c +++ b/builtin/grep.c @@ -595,10 +595,10 @@ static int grep_cache(struct grep_opt *opt, const char **paths, int cached) for (nr = 0; nr < active_nr; nr++) { struct cache_entry *ce = active_cache[nr]; - if (!S_ISREG(ce->ce_mode)) - continue; if (!pathspec_matches(paths, ce->name, opt->max_depth)) continue; + if (!S_ISREG(ce->ce_mode)) + continue; /* * If CE_VALID is on, we assume worktree file and its cache entry * are identical, even if worktree file has been modified, so use -- 1.7.3.1 -- 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