##// END OF EJS Templates
mdiff.diffopts: add a new noprefix option...
Siddharth Agarwal -
r23294:ec8c73b0 default
parent child Browse files
Show More
@@ -26,6 +26,7 b' class diffopts(object):'
26 git enables the git extended patch format
26 git enables the git extended patch format
27 nodates removes dates from diff headers
27 nodates removes dates from diff headers
28 nobinary ignores binary files
28 nobinary ignores binary files
29 noprefix disables the 'a/' and 'b/' prefixes (ignored in plain mode)
29 ignorews ignores all whitespace changes in the diff
30 ignorews ignores all whitespace changes in the diff
30 ignorewsamount ignores changes in the amount of whitespace
31 ignorewsamount ignores changes in the amount of whitespace
31 ignoreblanklines ignores changes whose lines are all blank
32 ignoreblanklines ignores changes whose lines are all blank
@@ -39,6 +40,7 b' class diffopts(object):'
39 'git': False,
40 'git': False,
40 'nodates': False,
41 'nodates': False,
41 'nobinary': False,
42 'nobinary': False,
43 'noprefix': False,
42 'ignorews': False,
44 'ignorews': False,
43 'ignorewsamount': False,
45 'ignorewsamount': False,
44 'ignoreblanklines': False,
46 'ignoreblanklines': False,
General Comments 0
You need to be logged in to leave comments. Login now