Mercurial > hg-stable
changeset 37040:bd0086bd3af4
rebase: inline _makextrafn() now that we have only one caller
Also avoid even creating a function since we just end up calling it
right away.
Differential Revision: https://phab.mercurial-scm.org/D2918
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 20 Mar 2018 21:45:48 -0700 |
parents | 0ab0d94ead72 |
children | 7db86856f27f |
files | hgext/rebase.py |
diffstat | 1 files changed, 2 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/rebase.py Tue Mar 20 21:41:53 2018 -0700 +++ b/hgext/rebase.py Tue Mar 20 21:45:48 2018 -0700 @@ -87,17 +87,6 @@ def _savebranch(ctx, extra): extra['branch'] = ctx.branch() -def _makeextrafn(copiers): - """make an extrafn out of the given copy-functions. - - A copy function takes a context and an extra dict, and mutates the - extra dict as needed based on the given context. - """ - def extrafn(ctx, extra): - for c in copiers: - c(ctx, extra) - return extrafn - def _destrebase(repo, sourceset, destspace=None): """small wrapper around destmerge to pass the right extra args @@ -457,10 +446,9 @@ ctx = repo[rev] if commitmsg is None: commitmsg = ctx.description() - extrafn = _makeextrafn(self.extrafns) extra = {'rebase_source': ctx.hex()} - if extrafn: - extrafn(ctx, extra) + for c in self.extrafns: + c(ctx, extra) if self.inmemory: newnode = concludememorynode(repo, ctx, p1, p2, wctx=self.wctx,