diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-03-11 13:53:53 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-11 13:53:53 -0700 |
commit | 5f7b3383106d4dc8b9556d52e8fabd8d468c994a (patch) | |
tree | 3ea6d684cf2d992d05ee1a5130baa4845332d39c /dir.c | |
parent | Merge branch 'en/maint-hash-object' into maint (diff) | |
parent | Support "\" in non-wildcard exclusion entries (diff) | |
download | tgif-5f7b3383106d4dc8b9556d52e8fabd8d468c994a.tar.xz |
Merge branch 'fg/maint-exclude-bq' into maint
* fg/maint-exclude-bq:
Support "\" in non-wildcard exclusion entries
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -137,7 +137,7 @@ int match_pathspec(const char **pathspec, const char *name, int namelen, static int no_wildcard(const char *string) { - return string[strcspn(string, "*?[{")] == '\0'; + return string[strcspn(string, "*?[{\\")] == '\0'; } void add_exclude(const char *string, const char *base, |