##// END OF EJS Templates
filterfiles: Search as long as the target is a prefix of current....
Brendan Cully -
r2485:885de96e default
parent child Browse files
Show More
@@ -285,8 +285,9 b' class dirstate(object):'
285 continue
285 continue
286 while bs < blen:
286 while bs < blen:
287 s = b[bs]
287 s = b[bs]
288 if len(s) > len(x) and s.startswith(x) and s[len(x)] == '/':
288 if len(s) > len(x) and s.startswith(x):
289 ret[s] = self.map[s]
289 if s[len(x)] == '/':
290 ret[s] = self.map[s]
290 else:
291 else:
291 break
292 break
292 bs += 1
293 bs += 1
General Comments 0
You need to be logged in to leave comments. Login now