pathspec: convert some match_pathspec_depth() to dir_path_match()
This helps reduce the number of match_pathspec_depth() call sites and show how m_p_d() is used. And it usage is: - match against an index entry (ce_path_match or match_pathspec_depth in ls-files) - match against a dir_entry from read_directory (dir_path_match and match_pathspec_depth in clean.c, which will be converted later) - resolve-undo (rerere.c and ls-files.c) Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
429bb40abd
commit
ebb32893ba
@ -524,9 +524,7 @@ static int grep_directory(struct grep_opt *opt, const struct pathspec *pathspec,
|
||||
|
||||
fill_directory(&dir, pathspec);
|
||||
for (i = 0; i < dir.nr; i++) {
|
||||
const char *name = dir.entries[i]->name;
|
||||
int namelen = strlen(name);
|
||||
if (!match_pathspec_depth(pathspec, name, namelen, 0, NULL))
|
||||
if (!dir_path_match(dir.entries[i], pathspec, 0, NULL))
|
||||
continue;
|
||||
hit |= grep_file(opt, dir.entries[i]->name);
|
||||
if (hit && opt->status_only)
|
||||
|
Reference in New Issue
Block a user