# HG changeset patch # User Martin von Zweigbergk # Date 1528736975 25200 # Node ID 0c7970d4e6b46af9db8d0c61da6f08c69e4d139e # Parent aaed058a03901afcb4e7832b51cabe8e5ba6c021 files: drop now-unnecessary filtering of removed dirstate files workingctx.matches() now filters out removed files. Differential Revision: https://phab.mercurial-scm.org/D3712 diff -r aaed058a0390 -r 0c7970d4e6b4 mercurial/cmdutil.py --- a/mercurial/cmdutil.py Mon Jun 11 10:05:23 2018 -0700 +++ b/mercurial/cmdutil.py Mon Jun 11 10:09:35 2018 -0700 @@ -2134,13 +2134,9 @@ return bad, forgot def files(ui, ctx, m, fm, fmt, subrepos): - rev = ctx.rev() ret = 1 - ds = ctx.repo().dirstate for f in ctx.matches(m): - if rev is None and ds[f] == 'r': - continue fm.startitem() if ui.verbose: fc = ctx[f]