Show More
@@ -42,7 +42,7 def composelargefilematcher(match, manif | |||
|
42 | 42 | lfile = lambda f: lfutil.standin(f) in manifest |
|
43 | 43 | m._files = filter(lfile, m._files) |
|
44 | 44 | m._fileset = set(m._files) |
|
45 |
m. |
|
|
45 | m.always = lambda: False | |
|
46 | 46 | origmatchfn = m.matchfn |
|
47 | 47 | m.matchfn = lambda f: lfile(f) and origmatchfn(f) |
|
48 | 48 | return m |
@@ -57,7 +57,7 def composenormalfilematcher(match, mani | |||
|
57 | 57 | manifest or f in excluded) |
|
58 | 58 | m._files = filter(notlfile, m._files) |
|
59 | 59 | m._fileset = set(m._files) |
|
60 |
m. |
|
|
60 | m.always = lambda: False | |
|
61 | 61 | origmatchfn = m.matchfn |
|
62 | 62 | m.matchfn = lambda f: notlfile(f) and origmatchfn(f) |
|
63 | 63 | return m |
@@ -369,7 +369,7 def overridelog(orig, ui, repo, *pats, * | |||
|
369 | 369 | m._files.append(standin) |
|
370 | 370 | |
|
371 | 371 | m._fileset = set(m._files) |
|
372 |
m. |
|
|
372 | m.always = lambda: False | |
|
373 | 373 | origmatchfn = m.matchfn |
|
374 | 374 | def lfmatchfn(f): |
|
375 | 375 | lf = lfutil.splitstandin(f) |
General Comments 0
You need to be logged in to leave comments.
Login now