Show More
@@ -552,6 +552,14 b' class dirstate(object):' | |||
|
552 | 552 | possibly_dirty=possibly_dirty, |
|
553 | 553 | parentfiledata=parentfiledata, |
|
554 | 554 | ) |
|
555 | if ( | |
|
556 | parentfiledata is not None | |
|
557 | and parentfiledata[2] > self._lastnormaltime | |
|
558 | ): | |
|
559 | # Remember the most recent modification timeslot for status(), | |
|
560 | # to make sure we won't miss future size-preserving file content | |
|
561 | # modifications that happen within the same timeslot. | |
|
562 | self._lastnormaltime = parentfiledata[2] | |
|
555 | 563 | |
|
556 | 564 | @requires_parents_change |
|
557 | 565 | def update_file( |
General Comments 0
You need to be logged in to leave comments.
Login now