diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-03-06 00:41:39 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-06 00:41:39 +0100 |
commit | 1456d964fa733dd35122a578d85b72e408108141 (patch) | |
tree | 00cdfea7e623a817cc5862b1ddca4e478fd3fcbb /dir.c | |
parent | Merge branch 'dm/add-i-edit-abort' (diff) | |
parent | Support "\" in non-wildcard exclusion entries (diff) | |
download | git-1456d964fa733dd35122a578d85b72e408108141.tar.xz git-1456d964fa733dd35122a578d85b72e408108141.zip |
Merge branch 'fg/exclude-bq'
* fg/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, |