From: jason Date: Thu, 17 Oct 2019 19:17:00 +0000 (+0000) Subject: * .gitattributes: Avoid {} in filename pattern. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28a106d92edd136cbe25c222d4d37ba0bca495fd;p=thirdparty%2Fgcc.git * .gitattributes: Avoid {} in filename pattern. Brace-expansion is a bash feature, not part of glob(7). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@277129 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/.gitattributes b/.gitattributes index b38d7f1b43be..183fdcaaa9ad 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,5 @@ -*.{c,C,cc,h} whitespace=indent-with-non-tab,space-before-tab,trailing-space +# Add indent-with-non-tab to the default git whitespace warnings. +# Note that this file doesn't support bash-style brace expansion. + +*.[cCh] whitespace=indent-with-non-tab,space-before-tab,trailing-space +*.cc whitespace=indent-with-non-tab,space-before-tab,trailing-space diff --git a/ChangeLog b/ChangeLog index 90413f57284b..5487226c9898 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2019-10-17 Jason Merrill + + * .gitattributes: Avoid {} in filename pattern. + 2019-10-08 Thomas Schwinge * MAINTAINERS: Add back Trevor Smigiel; move into Write After