From 9939e602d8aaffcc65e2db54ff670c8fa888299c Mon Sep 17 00:00:00 2001 From: Russell Belfer Date: Mon, 11 Jun 2012 09:24:02 -0700 Subject: [PATCH] Ignores allow unescapes internal whitespace --- src/ignore.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ignore.c b/src/ignore.c index fc6194bb5..f2d08f59e 100644 --- a/src/ignore.c +++ b/src/ignore.c @@ -28,6 +28,8 @@ static int parse_ignore_file( GITERR_CHECK_ALLOC(match); } + match->flags = GIT_ATTR_FNMATCH_ALLOWSPACE; + if (!(error = git_attr_fnmatch__parse( match, ignores->pool, context, &scan))) {