equal
deleted
inserted
replaced
117 |
117 |
118 lfnames = [] |
118 lfnames = [] |
119 m = matcher |
119 m = matcher |
120 |
120 |
121 wctx = repo[None] |
121 wctx = repo[None] |
122 for f in repo.walk(matchmod.badmatch(m, lambda x, y: None)): |
122 for f in repo[None].walk(matchmod.badmatch(m, lambda x, y: None)): |
123 exact = m.exact(f) |
123 exact = m.exact(f) |
124 lfile = lfutil.standin(f) in wctx |
124 lfile = lfutil.standin(f) in wctx |
125 nfile = f in wctx |
125 nfile = f in wctx |
126 exists = lfile or nfile |
126 exists = lfile or nfile |
127 |
127 |