Mercurial > public > mercurial-scm > hg
diff mercurial/scmutil.py @ 20702:2764148aa088
merge with stable
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 13 Mar 2014 12:05:08 -0500 |
parents | 165b117ffc1e 58c32a9c8e7b |
children | b93791e0de25 |
line wrap: on
line diff
--- a/mercurial/scmutil.py Tue Feb 04 18:33:25 2014 -0500 +++ b/mercurial/scmutil.py Thu Mar 13 12:05:08 2014 -0500 @@ -506,7 +506,7 @@ start, end = spec.split(_revrangesep, 1) start = revfix(repo, start, 0) end = revfix(repo, end, len(repo) - 1) - if end == nullrev and start <= 0: + if end == nullrev and start < 0: start = nullrev rangeiter = repo.changelog.revs(start, end) if not seen and not l: