aboutsummaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-03-05 15:41:39 -0800
committerJunio C Hamano <gitster@pobox.com>2009-03-05 15:41:39 -0800
commit1456d964fa733dd35122a578d85b72e408108141 (patch)
tree00cdfea7e623a817cc5862b1ddca4e478fd3fcbb /dir.c
parent2e2e91d6b27f522707322835a1f8c4a5e18a2419 (diff)
parentdd482eeac2524627beee323438dd1fdf34b4f97e (diff)
downloadgit-1456d964fa733dd35122a578d85b72e408108141.tar.gz
git-1456d964fa733dd35122a578d85b72e408108141.tar.xz
Merge branch 'fg/exclude-bq'
* fg/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 cfd1ea587..2245749b3 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,