##// END OF EJS Templates
merge with stable
Matt Mackall -
r15591:97fc5eec merge default
parent child Browse files
Show More
@@ -71,9 +71,7 b' def lfconvert(ui, src, dest, *pats, **op'
71 lfiles = set()
71 lfiles = set()
72 normalfiles = set()
72 normalfiles = set()
73 if not pats:
73 if not pats:
74 pats = ui.config(lfutil.longname, 'patterns', default=())
74 pats = ui.configlist(lfutil.longname, 'patterns', default=[])
75 if pats:
76 pats = pats.split(' ')
77 if pats:
75 if pats:
78 matcher = match_.match(rsrc.root, '', list(pats))
76 matcher = match_.match(rsrc.root, '', list(pats))
79 else:
77 else:
@@ -1639,7 +1639,7 b' def difflabel(func, *args, **kw):'
1639 if line.startswith('@'):
1639 if line.startswith('@'):
1640 head = False
1640 head = False
1641 else:
1641 else:
1642 if line and not line[0] in ' +-@':
1642 if line and not line[0] in ' +-@\\':
1643 head = True
1643 head = True
1644 stripline = line
1644 stripline = line
1645 if not head and line and line[0] in '+-':
1645 if not head and line and line[0] in '+-':
@@ -5,7 +5,8 b''
5 > graphlog =
5 > graphlog =
6 > [largefiles]
6 > [largefiles]
7 > minsize = 0.5
7 > minsize = 0.5
8 > patterns = **.dat
8 > patterns = **.other
9 > **.dat
9 > EOF
10 > EOF
10
11
11 "lfconvert" works
12 "lfconvert" works
General Comments 0
You need to be logged in to leave comments. Login now