##// END OF EJS Templates
files: cache repo.dirstate...
Siddharth Agarwal -
r22594:1257cc6c default
parent child Browse files
Show More
@@ -3219,8 +3219,9 b' def files(ui, repo, *pats, **opts):'
3219 3219 fmt = '%s' + end
3220 3220
3221 3221 m = scmutil.match(ctx, pats, opts)
3222 ds = repo.dirstate
3222 3223 for f in ctx.matches(m):
3223 if rev is None and repo.dirstate[f] == 'r':
3224 if rev is None and ds[f] == 'r':
3224 3225 continue
3225 3226 fm.startitem()
3226 3227 if ui.verbose:
General Comments 0
You need to be logged in to leave comments. Login now