##// END OF EJS Templates
largefiles: replace splitstandin() by isstandin() to omit str creation...
FUJIWARA Katsunori -
r31614:d5d0e6ca default
parent child Browse files
Show More
@@ -351,7 +351,7 b' def overridelog(orig, ui, repo, *pats, *'
351 pats.update(fixpats(f, tostandin) for f in p)
351 pats.update(fixpats(f, tostandin) for f in p)
352 else:
352 else:
353 def tostandin(f):
353 def tostandin(f):
354 if lfutil.splitstandin(f):
354 if lfutil.isstandin(f):
355 return f
355 return f
356 return lfutil.standin(f)
356 return lfutil.standin(f)
357 pats.update(fixpats(f, tostandin) for f in p)
357 pats.update(fixpats(f, tostandin) for f in p)
General Comments 0
You need to be logged in to leave comments. Login now