[Request] [+ ] D11424: dirstate: directly call the right function in `set_tracked`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Thu Sep 16 14:42:38 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This get use closer to removing some older API on the dirstate.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11424
AFFECTED FILES
mercurial/dirstate.py
CHANGE DETAILS
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -471,9 +471,12 @@
return True the file was previously untracked, False otherwise.
"""
+ self._dirty = True
+ self._updatedfiles.add(filename)
entry = self._map.get(filename)
if entry is None:
- self._add(filename)
+ self._check_new_tracked_filename(filename)
+ self._map.addfile(filename, added=True)
return True
elif not entry.tracked:
self._normallookup(filename)
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210916/e2a15696/attachment-0001.html>
More information about the Mercurial-patches
mailing list