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