diff options
author | Jason Merrill <jason@redhat.com> | 2019-10-17 15:17:00 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2019-10-17 15:17:00 -0400 |
commit | 6664a5f7ecb8fa96c0b754f66cc9bb73423c42fb (patch) | |
tree | 558d7c6481df5931641e0dc2b890d2dfa967322e | |
parent | 8e5993e236a50ffc161dd45d1ef3ab86133e3363 (diff) | |
download | gcc-6664a5f7ecb8fa96c0b754f66cc9bb73423c42fb.zip gcc-6664a5f7ecb8fa96c0b754f66cc9bb73423c42fb.tar.gz gcc-6664a5f7ecb8fa96c0b754f66cc9bb73423c42fb.tar.bz2 |
gitattributes: Avoid {} in filename pattern.
* .gitattributes: Avoid {} in filename pattern.
Brace-expansion is a bash feature, not part of glob(7).
From-SVN: r277129
-rw-r--r-- | .gitattributes | 6 | ||||
-rw-r--r-- | ChangeLog | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.gitattributes b/.gitattributes index b38d7f1..183fdca 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 @@ -1,3 +1,7 @@ +2019-10-17 Jason Merrill <jason@redhat.com> + + * .gitattributes: Avoid {} in filename pattern. + 2019-10-08 Thomas Schwinge <thomas@codesourcery.com> * MAINTAINERS: Add back Trevor Smigiel; move into Write After |