# HG changeset patch # User Aay Jay Chan # Date 1612002611 -28800 # Node ID b84c3d43ff2ec1dee2cbb244af4d500bf8d24947 # Parent e61c2dc6e1c2fbbbc0a1402adfccbd50c0485f63 churn: count lines that look like diff headers but are not Previously, churn cannot count added lines that start with "++ " or removed lines that start with "-- ". Differential Revision: https://phab.mercurial-scm.org/D9929 diff -r e61c2dc6e1c2 -r b84c3d43ff2e hgext/churn.py --- a/hgext/churn.py Mon Jan 25 12:31:40 2021 +0100 +++ b/hgext/churn.py Sat Jan 30 18:30:11 2021 +0800 @@ -38,11 +38,16 @@ def changedlines(ui, repo, ctx1, ctx2, fmatch): added, removed = 0, 0 diff = b''.join(patch.diff(repo, ctx1.node(), ctx2.node(), fmatch)) + inhunk = False for l in diff.split(b'\n'): - if l.startswith(b"+") and not l.startswith(b"+++ "): + if inhunk and l.startswith(b"+"): added += 1 - elif l.startswith(b"-") and not l.startswith(b"--- "): + elif inhunk and l.startswith(b"-"): removed += 1 + elif l.startswith(b"@"): + inhunk = True + elif l.startswith(b"d"): + inhunk = False return (added, removed) diff -r e61c2dc6e1c2 -r b84c3d43ff2e tests/test-churn.t --- a/tests/test-churn.t Mon Jan 25 12:31:40 2021 +0100 +++ b/tests/test-churn.t Sat Jan 30 18:30:11 2021 +0800 @@ -195,3 +195,22 @@ alltogether 11 ********************************************************* $ cd .. + +count lines that look like headings but are not + + $ hg init not-headers + $ cd not-headers + $ cat > a < diff + > @@ -195,3 +195,21 @@ + > -- a/tests/test-churn.t + > ++ b/tests/test-churn.t + > EOF + $ hg ci -Am adda -u user1 + adding a + $ hg churn --diffstat + user1 +4/-0 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ + $ hg rm a + $ hg ci -Am removea -u user1 + $ hg churn --diffstat + user1 +4/-4 +++++++++++++++++++++++++++---------------------------