##// END OF EJS Templates
revset: fix the definition of "unstable changesets" for "unstable" predicate...
FUJIWARA Katsunori -
r17272:632fa86a stable
parent child Browse files
Show More
@@ -1424,7 +1424,7 b' def tagged(repo, subset, x):'
1424
1424
1425 def unstable(repo, subset, x):
1425 def unstable(repo, subset, x):
1426 """``unstable()``
1426 """``unstable()``
1427 Unstable changesets are non-obsolete with obsolete descendants."""
1427 Unstable changesets are non-obsolete with obsolete ancestors."""
1428 # i18n: "unstable" is a keyword
1428 # i18n: "unstable" is a keyword
1429 getargs(x, 0, 0, _("unstable takes no arguments"))
1429 getargs(x, 0, 0, _("unstable takes no arguments"))
1430 unstableset = set(repo.revs('(obsolete()::) - obsolete()'))
1430 unstableset = set(repo.revs('(obsolete()::) - obsolete()'))
General Comments 0
You need to be logged in to leave comments. Login now