##// END OF EJS Templates
Merge backout of 26fa0e31011d
Brendan Cully -
r9324:19d07553 merge default
parent child Browse files
Show More
@@ -59,7 +59,7 class dirstate(object):
59 59 def _foldmap(self):
60 60 f = {}
61 61 for name in self._map:
62 f[util.realpath(self._join(name))] = name
62 f[os.path.normcase(name)] = name
63 63 return f
64 64
65 65 @propertycache
@@ -340,7 +340,7 class dirstate(object):
340 340 self._ui.warn(_("not in dirstate: %s\n") % f)
341 341
342 342 def _normalize(self, path, knownpath):
343 norm_path = util.realpath(self._join(path))
343 norm_path = os.path.normcase(path)
344 344 fold_path = self._foldmap.get(norm_path, None)
345 345 if fold_path is None:
346 346 if knownpath or not os.path.exists(os.path.join(self._root, path)):
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed, binary diff hidden
General Comments 0
You need to be logged in to leave comments. Login now