##// END OF EJS Templates
log: simplify 'x or ancestors(x)' expression...
Yuya Nishihara -
r35661:668c5a52 default
parent child Browse files
Show More
@@ -2352,7 +2352,7 b' def _makenofollowlogfilematcher(repo, pa'
2352 2352 '_patsfollow': ('follow(%(val)r)', ' or '),
2353 2353 '_patsfollowfirst': ('_followfirst(%(val)r)', ' or '),
2354 2354 'keyword': ('keyword(%(val)r)', ' or '),
2355 'prune': ('not (%(val)r or ancestors(%(val)r))', ' and '),
2355 'prune': ('not ancestors(%(val)r)', ' and '),
2356 2356 'user': ('user(%(val)r)', ' or '),
2357 2357 }
2358 2358
@@ -1573,34 +1573,24 b' glog always reorders nodes which explain'
1573 1573 []
1574 1574 (and
1575 1575 (not
1576 (or
1577 (list
1578 (string '31')
1579 (func
1580 (symbol 'ancestors')
1581 (string '31')))))
1576 (func
1577 (symbol 'ancestors')
1578 (string '31')))
1582 1579 (not
1583 (or
1584 (list
1585 (string '32')
1586 (func
1587 (symbol 'ancestors')
1588 (string '32'))))))
1580 (func
1581 (symbol 'ancestors')
1582 (string '32'))))
1589 1583 <filteredset
1590 1584 <filteredset
1591 1585 <spanset- 0:37>,
1592 1586 <not
1593 <addset
1594 <baseset [31]>,
1595 <filteredset
1596 <spanset- 0:37>,
1597 <generatorsetdesc+>>>>>,
1598 <not
1599 <addset
1600 <baseset [32]>,
1601 1587 <filteredset
1602 1588 <spanset- 0:37>,
1603 <generatorsetdesc+>>>>>
1589 <generatorsetdesc+>>>>,
1590 <not
1591 <filteredset
1592 <spanset- 0:37>,
1593 <generatorsetdesc+>>>>
1604 1594
1605 1595 Dedicated repo for --follow and paths filtering. The g is crafted to
1606 1596 have 2 filelog topological heads in a linear changeset graph.
General Comments 0
You need to be logged in to leave comments. Login now