equal
deleted
inserted
replaced
1373 We use this poststatus hook to filter out symlinks that might have |
1373 We use this poststatus hook to filter out symlinks that might have |
1374 accidentally ended up with the entire contents of the file they are |
1374 accidentally ended up with the entire contents of the file they are |
1375 susposed to be linking to. |
1375 susposed to be linking to. |
1376 """ |
1376 """ |
1377 s[0] = self._filtersuspectsymlink(s[0]) |
1377 s[0] = self._filtersuspectsymlink(s[0]) |
1378 self._status = s |
1378 self._status = s[:] |
1379 return s |
1379 return s |
1380 |
1380 |
1381 def _dirstatestatus(self, match=None, ignored=False, clean=False, |
1381 def _dirstatestatus(self, match=None, ignored=False, clean=False, |
1382 unknown=False): |
1382 unknown=False): |
1383 '''Gets the status from the dirstate -- internal use only.''' |
1383 '''Gets the status from the dirstate -- internal use only.''' |