# HG changeset patch # User Siddharth Agarwal # Date 1416377806 28800 # Node ID 265034f4e27cfcf85000b3235a1481ac233c9e62 # Parent 317ccfbd1a84c0b0b7e2f6aa0601fb5bb99635e5 annotate: explicitly only honor whitespace diffopts The whitespace ones are the only ones the annotate logic cares about anyway, so there's no visible impact. diff -r 317ccfbd1a84 -r 265034f4e27c mercurial/commands.py --- a/mercurial/commands.py Tue Nov 18 21:47:47 2014 -0800 +++ b/mercurial/commands.py Tue Nov 18 22:16:46 2014 -0800 @@ -316,7 +316,8 @@ m = scmutil.match(ctx, pats, opts) m.bad = bad follow = not opts.get('no_follow') - diffopts = patch.diffopts(ui, opts, section='annotate') + diffopts = patch.difffeatureopts(ui, opts, section='annotate', + whitespace=True) for abs in ctx.walk(m): fctx = ctx[abs] if not opts.get('text') and util.binary(fctx.data()):