diff options
author | Brandon Williams <bmwill@google.com> | 2017-05-05 21:53:28 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-06 12:15:39 +0200 |
commit | 473e39307d8c9db93bd08d82898e7fff7002c8cb (patch) | |
tree | ffd7732567d72e32b24b5291934db0648fbf7e8c /dir.h | |
parent | dir: convert is_excluded_from_list to take an index (diff) | |
download | git-473e39307d8c9db93bd08d82898e7fff7002c8cb.tar.xz git-473e39307d8c9db93bd08d82898e7fff7002c8cb.zip |
dir: convert add_excludes to take an index
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.h')
-rw-r--r-- | dir.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ extern int is_excluded(struct dir_struct *dir, const char *name, int *dtype); extern struct exclude_list *add_exclude_list(struct dir_struct *dir, int group_type, const char *src); extern int add_excludes_from_file_to_list(const char *fname, const char *base, int baselen, - struct exclude_list *el, int check_index); + struct exclude_list *el, struct index_state *istate); extern void add_excludes_from_file(struct dir_struct *, const char *fname); extern void parse_exclude_pattern(const char **string, int *patternlen, unsigned *flags, int *nowildcardlen); extern void add_exclude(const char *string, const char *base, |