Submitter | phabricator |
---|---|
Date | Feb. 12, 2020, 7:40 p.m. |
Message ID | <c421e1d24d71a2744197736014b88361@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/45189/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -1262,6 +1262,9 @@ return files in the dirstate (in whatever state) filtered by match ''' dmap = self._map + if rustmod is not None: + dmap = self._map._rustmap + if match.always(): return dmap.keys() files = match.files()