projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eadb7f6
)
Fix regex
author
Emlyn Corrin
<emlyn.corrin@gmail.com>
Mon, 3 Feb 2020 12:37:24 +0000
(12:37 +0000)
committer
GitHub
<noreply@github.com>
Mon, 3 Feb 2020 12:37:24 +0000
(12:37 +0000)
The hyphen should be the last (or first) item in the character class to prevent it being interpreted as a range indicator
.gitignore
patch
|
blob
|
history
diff --git
a/.gitignore
b/.gitignore
index
21bb1cc
..
e17a67d
100644
(file)
--- a/
.gitignore
+++ b/
.gitignore
@@
-12,8
+12,8
@@
python/lib/aubio/_aubio.*.so
RE:examples/[a-z]*
# ignore compiled test programs
-RE:tests/src/test-[a-z
-_
]*$
-RE:tests/cpp/test-[a-z
-_
]*$
+RE:tests/src/test-[a-z
_-
]*$
+RE:tests/cpp/test-[a-z
_-
]*$
# only sgml manpages count
doc/*.1