mercurial/merge.py
branchstable
changeset 23478 30b602168c3b
parent 23420 902554884335
child 23479 406dfc63a1ad
--- a/mercurial/merge.py	Tue Dec 02 17:11:01 2014 -0800
+++ b/mercurial/merge.py	Sun Nov 16 23:41:44 2014 -0800
@@ -298,8 +298,7 @@
         return r
 
 def _checkunknownfile(repo, wctx, mctx, f):
-    return (not repo.dirstate._ignore(f)
-        and os.path.isfile(repo.wjoin(f))
+    return (os.path.isfile(repo.wjoin(f))
         and repo.wopener.audit.check(f)
         and repo.dirstate.normalize(f) not in repo.dirstate
         and mctx[f].cmp(wctx[f]))