Show More
@@ -88,6 +88,14 b' class dirstate(object):' | |||
|
88 | 88 | |
|
89 | 89 | @propertycache |
|
90 | 90 | def _filefoldmap(self): |
|
91 | try: | |
|
92 | makefilefoldmap = parsers.make_file_foldmap | |
|
93 | except AttributeError: | |
|
94 | pass | |
|
95 | else: | |
|
96 | return makefilefoldmap(self._map, util.normcasespec, | |
|
97 | util.normcasefallback) | |
|
98 | ||
|
91 | 99 | f = {} |
|
92 | 100 | normcase = util.normcase |
|
93 | 101 | for name, s in self._map.iteritems(): |
General Comments 0
You need to be logged in to leave comments.
Login now