# HG changeset patch
# User Sean Farley <sean.michael.farley@gmail.com>
# Date 1398189758 18000
#      Tue Apr 22 13:02:38 2014 -0500
# Node ID 3b647aed439405733ccadf5f0645067e1222db01
# Parent  466964bdf4c1acadf6effda007b0c54b2983ed40
localrepo: call _poststatus hook instead of hardcoding symlink knowledge

diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -1556,11 +1556,10 @@
             r = ctx2._buildstatus(ctx1, r, match, listignored, listclean,
                                   listunknown)
 
+        r = ctx2._poststatus(ctx1, r, match, listignored, listclean,
+                             listunknown)
         modified, added, removed, deleted, unknown, ignored, clean = r
 
-        if working:
-            modified = ctx2._filtersuspectsymlink(modified)
-
         if reversed:
             added, removed = removed, added