mercurial/copies.py
changeset 6750 fb42030d79d6
parent 6646 9eb274d773d9
child 6762 f67d1468ac50
equal deleted inserted replaced
6749:51b0e799352f 6750:fb42030d79d6
    65     #   - track number of interesting revs that might still be on a side
    65     #   - track number of interesting revs that might still be on a side
    66     #   - track the lowest interesting rev seen
    66     #   - track the lowest interesting rev seen
    67     #   - quit when interesting revs is zero
    67     #   - quit when interesting revs is zero
    68 
    68 
    69     cl = repo.changelog
    69     cl = repo.changelog
    70     working = cl.count() # pseudo rev for the working directory
    70     working = len(cl) # pseudo rev for the working directory
    71     if a is None:
    71     if a is None:
    72         a = working
    72         a = working
    73     if b is None:
    73     if b is None:
    74         b = working
    74         b = working
    75 
    75