mercurial/revset.py
changeset 20418 454c143b9955
parent 20417 827561a99569
child 20424 1da346bad3d8
--- 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)