##// END OF EJS Templates
commands: exit from the log loop at the right time...
Bryan O'Sullivan -
r18711:6b786dc8 default
parent child Browse files
Show More
@@ -4215,10 +4215,10 b' def log(ui, repo, *pats, **opts):'
4215 displayer.show(ctx, copies=copies, matchfn=revmatchfn)
4215 displayer.show(ctx, copies=copies, matchfn=revmatchfn)
4216
4216
4217 for ctx in cmdutil.walkchangerevs(repo, matchfn, opts, prep):
4217 for ctx in cmdutil.walkchangerevs(repo, matchfn, opts, prep):
4218 if displayer.flush(ctx.rev()):
4219 count += 1
4218 if count == limit:
4220 if count == limit:
4219 break
4221 break
4220 if displayer.flush(ctx.rev()):
4221 count += 1
4222 displayer.close()
4222 displayer.close()
4223
4223
4224 @command('manifest',
4224 @command('manifest',
General Comments 0
You need to be logged in to leave comments. Login now