##// END OF EJS Templates
Merge with stable
Matt Mackall -
r11228:5cdac5c3 merge default
parent child Browse files
Show More
@@ -1041,7 +1041,9 b' class localrepository(repo.repository):'
1041 match.bad = bad
1041 match.bad = bad
1042
1042
1043 if working: # we need to scan the working dir
1043 if working: # we need to scan the working dir
1044 subrepos = ctx1.substate.keys()
1044 subrepos = []
1045 if '.hgsub' in self.dirstate:
1046 subrepos = ctx1.substate.keys()
1045 s = self.dirstate.status(match, subrepos, listignored,
1047 s = self.dirstate.status(match, subrepos, listignored,
1046 listclean, listunknown)
1048 listclean, listunknown)
1047 cmp, modified, added, removed, deleted, unknown, ignored, clean = s
1049 cmp, modified, added, removed, deleted, unknown, ignored, clean = s
General Comments 0
You need to be logged in to leave comments. Login now