revset: minor changes adding baseset to revsets
authorLucas Moscovicz <lmoscovicz@fb.com>
Thu, 06 Feb 2014 14:57:25 -0800
changeset 20418 454c143b9955
parent 20417 827561a99569
child 20419 e61a8395c3c1
revset: minor changes adding baseset to revsets Changed bits of code to work with baseset implementations.
mercurial/revset.py
--- a/mercurial/revset.py	Thu Feb 06 11:37:16 2014 -0800
+++ b/mercurial/revset.py	Thu Feb 06 14:57:25 2014 -0800
@@ -250,7 +250,7 @@
 def orset(repo, subset, x, y):
     xl = getset(repo, subset, x)
     yl = getset(repo, subset - xl, y)
-    return baseset(xl + yl)
+    return xl + yl
 
 def notset(repo, subset, x):
     return subset - getset(repo, subset, x)