##// END OF EJS Templates
hg log --limit shouldn't count unprinted revisions (found by TK Soh)
Thomas Arendsen Hein -
r1765:b9fac31f default
parent child Browse files
Show More
@@ -1660,9 +1660,10 b' def log(ui, repo, *pats, **opts):'
1660 du.write("\n\n")
1660 du.write("\n\n")
1661 elif st == 'iter':
1661 elif st == 'iter':
1662 if count == limit: break
1662 if count == limit: break
1663 count += 1
1663 if du.hunk[rev]:
1664 for args in du.hunk[rev]:
1664 count += 1
1665 ui.write(*args)
1665 for args in du.hunk[rev]:
1666 ui.write(*args)
1666
1667
1667 def manifest(ui, repo, rev=None):
1668 def manifest(ui, repo, rev=None):
1668 """output the latest or given revision of the project manifest
1669 """output the latest or given revision of the project manifest
General Comments 0
You need to be logged in to leave comments. Login now