summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-03-11 20:53:53 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-03-11 20:53:53 (GMT)
commit5f7b3383106d4dc8b9556d52e8fabd8d468c994a (patch)
tree3ea6d684cf2d992d05ee1a5130baa4845332d39c /dir.c
parentbbc6a14b723ae831f35fc1b923fe497e7329443e (diff)
parentdd482eeac2524627beee323438dd1fdf34b4f97e (diff)
downloadgit-5f7b3383106d4dc8b9556d52e8fabd8d468c994a.zip
git-5f7b3383106d4dc8b9556d52e8fabd8d468c994a.tar.gz
git-5f7b3383106d4dc8b9556d52e8fabd8d468c994a.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dir.c b/dir.c
index cfd1ea5..2245749 100644
--- a/dir.c
+++ b/dir.c
@@ -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,