diff options
author | Adam Spiers <git@adamspiers.org> | 2012-12-27 02:32:23 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-12-28 12:07:45 -0800 |
commit | 9013089c4a841bf17bcc8e2510a86ceecac29ffd (patch) | |
tree | 35d4cebe8af5fa6638ad929ea02df48b4248895a /dir.h | |
parent | dir.c: rename cryptic 'which' variable to more consistent name (diff) | |
download | tgif-9013089c4a841bf17bcc8e2510a86ceecac29ffd.tar.xz |
dir.c: rename path_excluded() to is_path_excluded()
Start adopting clearer names for exclude functions. This 'is_*'
naming pattern for functions returning booleans was agreed here:
http://thread.gmane.org/gmane.comp.version-control.git/204661/focus=204924
Signed-off-by: Adam Spiers <git@adamspiers.org>
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
@@ -123,7 +123,7 @@ struct path_exclude_check { }; extern void path_exclude_check_init(struct path_exclude_check *, struct dir_struct *); extern void path_exclude_check_clear(struct path_exclude_check *); -extern int path_excluded(struct path_exclude_check *, const char *, int namelen, int *dtype); +extern int is_path_excluded(struct path_exclude_check *, const char *, int namelen, int *dtype); extern int add_excludes_from_file_to_list(const char *fname, const char *base, int baselen, |