equal
deleted
inserted
replaced
1805 for f in sorted(modified + added + removed): |
1805 for f in sorted(modified + added + removed): |
1806 to = None |
1806 to = None |
1807 tn = None |
1807 tn = None |
1808 dodiff = True |
1808 dodiff = True |
1809 header = [] |
1809 header = [] |
1810 if f in man1: |
1810 if f not in addedset: |
1811 to = getfilectx(f, ctx1).data() |
1811 to = getfilectx(f, ctx1).data() |
1812 if f not in removedset: |
1812 if f not in removedset: |
1813 tn = getfilectx(f, ctx2).data() |
1813 tn = getfilectx(f, ctx2).data() |
1814 a, b = f, f |
1814 a, b = f, f |
1815 if opts.git or losedatafn: |
1815 if opts.git or losedatafn: |