Mercurial > public > mercurial-scm > hg
comparison mercurial/revset.py @ 17494:74801685aaa2
spelling: further
author | timeless@mozdev.org |
---|---|
date | Fri, 17 Aug 2012 13:58:18 -0700 |
parents | 2d6bbf87f7b4 |
children | 31f32a96e1e3 |
comparison
equal
deleted
inserted
replaced
17493:d057e92dadfc | 17494:74801685aaa2 |
---|---|
592 | 592 |
593 lineage.append(r) | 593 lineage.append(r) |
594 | 594 |
595 # The visited lineage is a match if the current source is in the arg | 595 # The visited lineage is a match if the current source is in the arg |
596 # set. Since every candidate dest is visited by way of iterating | 596 # set. Since every candidate dest is visited by way of iterating |
597 # subset, any dests futher back in the lineage will be tested by a | 597 # subset, any dests further back in the lineage will be tested by a |
598 # different iteration over subset. Likewise, if the src was already | 598 # different iteration over subset. Likewise, if the src was already |
599 # selected, the current lineage can be selected without going back | 599 # selected, the current lineage can be selected without going back |
600 # further. | 600 # further. |
601 if src in args or src in dests: | 601 if src in args or src in dests: |
602 dests.update(lineage) | 602 dests.update(lineage) |