Mercurial > hg
changeset 23954:310222feb9a8 stable
revset: allow rev(-1) to indicate null revision (BC)
This can simplify the conversion from numeric revision to string. Without it,
we have to handle -1 specially because repo['-1'] != repo[-1].
The -1 revision is not officially documented, but this change makes sense
assuming that "rev(%d)" exists for scripting or third-party tools.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sat, 10 Jan 2015 12:56:38 +0900 |
parents | af73c05e735a |
children | 8a29897d42d2 |
files | mercurial/revset.py tests/test-revset.t |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/revset.py Fri Jan 23 20:30:49 2015 -0800 +++ b/mercurial/revset.py Sat Jan 10 12:56:38 2015 +0900 @@ -1545,7 +1545,7 @@ except (TypeError, ValueError): # i18n: "rev" is a keyword raise error.ParseError(_("rev expects a number")) - if l not in fullreposet(repo): + if l not in fullreposet(repo) and l != node.nullrev: return baseset() return subset & baseset([l])