##// END OF EJS Templates
dirstate-item: use `set_possibly_dirty` in `pure.pack_dirstate`...
marmoute -
r48467:d06ced90 default
parent child Browse files
Show More
@@ -588,8 +588,7 b' def pack_dirstate(dmap, copymap, pl, now'
588 # dirstate, forcing future 'status' calls to compare the
588 # dirstate, forcing future 'status' calls to compare the
589 # contents of the file if the size is the same. This prevents
589 # contents of the file if the size is the same. This prevents
590 # mistakenly treating such files as clean.
590 # mistakenly treating such files as clean.
591 e = DirstateItem(e.state, e.mode, e.size, AMBIGUOUS_TIME)
591 e.set_possibly_dirty()
592 dmap[f] = e
593
592
594 if f in copymap:
593 if f in copymap:
595 f = b"%s\0%s" % (f, copymap[f])
594 f = b"%s\0%s" % (f, copymap[f])
General Comments 0
You need to be logged in to leave comments. Login now