##// END OF EJS Templates
annotate: explicitly only honor whitespace diffopts...
Siddharth Agarwal -
r23455:265034f4 default
parent child Browse files
Show More
@@ -316,7 +316,8 b' def annotate(ui, repo, *pats, **opts):'
316 m = scmutil.match(ctx, pats, opts)
316 m = scmutil.match(ctx, pats, opts)
317 m.bad = bad
317 m.bad = bad
318 follow = not opts.get('no_follow')
318 follow = not opts.get('no_follow')
319 diffopts = patch.diffopts(ui, opts, section='annotate')
319 diffopts = patch.difffeatureopts(ui, opts, section='annotate',
320 whitespace=True)
320 for abs in ctx.walk(m):
321 for abs in ctx.walk(m):
321 fctx = ctx[abs]
322 fctx = ctx[abs]
322 if not opts.get('text') and util.binary(fctx.data()):
323 if not opts.get('text') and util.binary(fctx.data()):
General Comments 0
You need to be logged in to leave comments. Login now