equal
deleted
inserted
replaced
253 |
253 |
254 def stringset(repo, subset, x): |
254 def stringset(repo, subset, x): |
255 x = repo[x].rev() |
255 x = repo[x].rev() |
256 if x == -1 and len(subset) == len(repo): |
256 if x == -1 and len(subset) == len(repo): |
257 return baseset([-1]) |
257 return baseset([-1]) |
258 if len(subset) == len(repo) or x in subset: |
258 if x in subset: |
259 return baseset([x]) |
259 return baseset([x]) |
260 return baseset() |
260 return baseset() |
261 |
261 |
262 def symbolset(repo, subset, x): |
262 def symbolset(repo, subset, x): |
263 if x in symbols: |
263 if x in symbols: |