debian/compat
author Durham Goode <durham@fb.com>
Tue, 29 Sep 2015 09:47:10 -0700
changeset 1508 8dfb88ca0c08
parent 531 b18b00036355
child 4912 43e9bb4de6b5
permissions -rw-r--r--
directaccess: inspect trees of len() > 3 Previously, when inspecting revset AST's we'd only traverse down the tree if it was length 3 ([op, left, right]). In some situations, like 'or' the tree node will be greater than length 3 ([op, first, second, ..., nth]). So we need to traverse all the parts of the node to catch all the symbols.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
531
b18b00036355 pkg/debian: Debian packaging
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
diff changeset
     1
8