##// 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 71 lfiles = set()
72 72 normalfiles = set()
73 73 if not pats:
74 pats = ui.config(lfutil.longname, 'patterns', default=())
75 if pats:
76 pats = pats.split(' ')
74 pats = ui.configlist(lfutil.longname, 'patterns', default=[])
77 75 if pats:
78 76 matcher = match_.match(rsrc.root, '', list(pats))
79 77 else:
@@ -1639,7 +1639,7 b' def difflabel(func, *args, **kw):'
1639 1639 if line.startswith('@'):
1640 1640 head = False
1641 1641 else:
1642 if line and not line[0] in ' +-@':
1642 if line and not line[0] in ' +-@\\':
1643 1643 head = True
1644 1644 stripline = line
1645 1645 if not head and line and line[0] in '+-':
@@ -5,7 +5,8 b''
5 5 > graphlog =
6 6 > [largefiles]
7 7 > minsize = 0.5
8 > patterns = **.dat
8 > patterns = **.other
9 > **.dat
9 10 > EOF
10 11
11 12 "lfconvert" works
General Comments 0
You need to be logged in to leave comments. Login now