diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2012-11-18 16:13:06 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-19 13:08:28 -0800 |
commit | 170260ae90cb6a0fec476e7d970e3ac3e81e98f5 (patch) | |
tree | 0c342d4b08c483cf1035c1945113a96ab8057f14 /builtin/ls-tree.c | |
parent | f3828dc0669826660f5034a468913115675ff501 (diff) | |
download | git-170260ae90cb6a0fec476e7d970e3ac3e81e98f5.tar.gz |
pathspec: save the non-wildcard length part
We mark pathspec with wildcards with the field use_wildcard. We
could do better by saving the length of the non-wildcard part, which
can be used for optimizations such as f9f6e2c (exclude: do strcmp as
much as possible before fnmatch - 2012-06-07).
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/ls-tree.c')
-rw-r--r-- | builtin/ls-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/ls-tree.c b/builtin/ls-tree.c index 235c17cc01..fb76e38d84 100644 --- a/builtin/ls-tree.c +++ b/builtin/ls-tree.c @@ -168,7 +168,7 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix) init_pathspec(&pathspec, get_pathspec(prefix, argv + 1)); for (i = 0; i < pathspec.nr; i++) - pathspec.items[i].use_wildcard = 0; + pathspec.items[i].nowildcard_len = pathspec.items[i].len; pathspec.has_wildcard = 0; tree = parse_tree_indirect(sha1); if (!tree) |