Mercurial > public > mercurial-scm > hg
diff mercurial/revlog.py @ 42988:f4caf910669e
flagprocessors: writetransform function take side data as parameter (API)
If we want some flag processors to be able to store sidedata it needs to be
actually fed that data.
Differential Revision: https://phab.mercurial-scm.org/D6816
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 04 Sep 2019 00:53:27 +0200 |
parents | 36a0a1951d64 |
children | a04b2c010d03 |
line wrap: on
line diff
--- a/mercurial/revlog.py Tue Sep 03 23:51:17 2019 +0200 +++ b/mercurial/revlog.py Wed Sep 04 00:53:27 2019 +0200 @@ -115,7 +115,7 @@ def ellipsisreadprocessor(rl, text): return text, False, {} -def ellipsiswriteprocessor(rl, text): +def ellipsiswriteprocessor(rl, text, sidedata): return text, False def ellipsisrawprocessor(rl, text):