Skip to content
Snippets Groups Projects
Commit 19ac0d8e authored by Matt Mackall's avatar Matt Mackall
Browse files

fileset: handle underbar in symbols

This was documented, but not implemented.
parent bf6bc468
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@
keywords = set(['and', 'or', 'not'])
globchars = ".*{}[]?/\\"
globchars = ".*{}[]?/\\_"
def tokenize(program):
pos, l = 0, len(program)
......
......@@ -42,6 +42,7 @@
b2
$ fileset 'a* - a1'
a2
$ fileset 'a_b'
Test files status
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment