Show More
@@ -680,6 +680,7 b' class hunk(object):' | |||
|
680 | 680 | del self.b[-1] |
|
681 | 681 | self.lena -= 1 |
|
682 | 682 | self.lenb -= 1 |
|
683 | self._fixnewline(lr) | |
|
683 | 684 | |
|
684 | 685 | def read_context_hunk(self, lr): |
|
685 | 686 | self.desc = lr.readline() |
@@ -782,9 +783,14 b' class hunk(object):' | |||
|
782 | 783 | self.desc = "@@ -%d,%d +%d,%d @@\n" % (self.starta, self.lena, |
|
783 | 784 | self.startb, self.lenb) |
|
784 | 785 | self.hunk[0] = self.desc |
|
786 | self._fixnewline(lr) | |
|
785 | 787 | |
|
786 |
def fix |
|
|
787 | diffhelpers.fix_newline(self.hunk, self.a, self.b) | |
|
788 | def _fixnewline(self, lr): | |
|
789 | l = lr.readline() | |
|
790 | if l.startswith('\ '): | |
|
791 | diffhelpers.fix_newline(self.hunk, self.a, self.b) | |
|
792 | else: | |
|
793 | lr.push(l) | |
|
788 | 794 | |
|
789 | 795 | def complete(self): |
|
790 | 796 | return len(self.a) == self.lena and len(self.b) == self.lenb |
@@ -993,7 +999,6 b' def iterhunks(ui, fp):' | |||
|
993 | 999 | maps filenames to gitpatch records. Unique event. |
|
994 | 1000 | """ |
|
995 | 1001 | changed = {} |
|
996 | current_hunk = None | |
|
997 | 1002 | afile = "" |
|
998 | 1003 | bfile = "" |
|
999 | 1004 | state = None |
@@ -1011,11 +1016,6 b' def iterhunks(ui, fp):' | |||
|
1011 | 1016 | x = lr.readline() |
|
1012 | 1017 | if not x: |
|
1013 | 1018 | break |
|
1014 | if current_hunk: | |
|
1015 | if x.startswith('\ '): | |
|
1016 | current_hunk.fix_newline() | |
|
1017 | yield 'hunk', current_hunk | |
|
1018 | current_hunk = None | |
|
1019 | 1019 | if (state == BFILE and ((not context and x[0] == '@') or |
|
1020 | 1020 | ((context is not False) and x.startswith('***************')))): |
|
1021 | 1021 | if context is None and x.startswith('***************'): |
@@ -1023,18 +1023,20 b' def iterhunks(ui, fp):' | |||
|
1023 | 1023 | gpatch = changed.get(bfile) |
|
1024 | 1024 | create = afile == '/dev/null' or gpatch and gpatch.op == 'ADD' |
|
1025 | 1025 | remove = bfile == '/dev/null' or gpatch and gpatch.op == 'DELETE' |
|
1026 |
|
|
|
1026 | h = hunk(x, hunknum + 1, lr, context, create, remove) | |
|
1027 | 1027 | hunknum += 1 |
|
1028 | 1028 | if emitfile: |
|
1029 | 1029 | emitfile = False |
|
1030 |
yield 'file', (afile, bfile, |
|
|
1030 | yield 'file', (afile, bfile, h) | |
|
1031 | yield 'hunk', h | |
|
1031 | 1032 | elif state == BFILE and x.startswith('GIT binary patch'): |
|
1032 |
|
|
|
1033 | h = binhunk(changed[bfile]) | |
|
1033 | 1034 | hunknum += 1 |
|
1034 | 1035 | if emitfile: |
|
1035 | 1036 | emitfile = False |
|
1036 |
yield 'file', ('a/' + afile, 'b/' + bfile, |
|
|
1037 |
|
|
|
1037 | yield 'file', ('a/' + afile, 'b/' + bfile, h) | |
|
1038 | h.extract(lr) | |
|
1039 | yield 'hunk', h | |
|
1038 | 1040 | elif x.startswith('diff --git'): |
|
1039 | 1041 | # check for git diff, scanning the whole patch file if needed |
|
1040 | 1042 | m = gitre.match(x) |
@@ -1083,12 +1085,6 b' def iterhunks(ui, fp):' | |||
|
1083 | 1085 | emitfile = True |
|
1084 | 1086 | state = BFILE |
|
1085 | 1087 | hunknum = 0 |
|
1086 | if current_hunk: | |
|
1087 | if current_hunk.complete(): | |
|
1088 | yield 'hunk', current_hunk | |
|
1089 | else: | |
|
1090 | raise PatchError(_("malformed patch %s %s") % (afile, | |
|
1091 | current_hunk.desc)) | |
|
1092 | 1088 | |
|
1093 | 1089 | def applydiff(ui, fp, changed, strip=1, eolmode='strict'): |
|
1094 | 1090 | """Reads a patch from fp and tries to apply it. |
General Comments 0
You need to be logged in to leave comments.
Login now