##// END OF EJS Templates
fileset: handle underbar in symbols...
Matt Mackall -
r19470:19ac0d8e stable
parent child Browse files
Show More
@@ -27,7 +27,7 b' elements = {'
27
27
28 keywords = set(['and', 'or', 'not'])
28 keywords = set(['and', 'or', 'not'])
29
29
30 globchars = ".*{}[]?/\\"
30 globchars = ".*{}[]?/\\_"
31
31
32 def tokenize(program):
32 def tokenize(program):
33 pos, l = 0, len(program)
33 pos, l = 0, len(program)
@@ -42,6 +42,7 b' Test operators and basic patterns'
42 b2
42 b2
43 $ fileset 'a* - a1'
43 $ fileset 'a* - a1'
44 a2
44 a2
45 $ fileset 'a_b'
45
46
46 Test files status
47 Test files status
47
48
General Comments 0
You need to be logged in to leave comments. Login now