mercurial/dirstate.py
changeset 47731 485ae37a7ec5
parent 47720 b0314d8deee1
child 47741 9f19d9f2d191
--- a/mercurial/dirstate.py	Mon Jul 19 01:17:56 2021 +0200
+++ b/mercurial/dirstate.py	Mon Jul 19 14:02:58 2021 +0200
@@ -478,6 +478,10 @@
         elif not entry.tracked:
             self.normallookup(filename)
             return True
+        # XXX This is probably overkill for more case, but we need this to
+        # fully replace the `normallookup` call with `set_tracked` one.
+        # Consider smoothing this in the future.
+        self.set_possibly_dirty(filename)
         return False
 
     @requires_no_parents_change