Show More
@@ -1129,28 +1129,26 b' def iterhunks(fp):' | |||
|
1129 | 1129 | x = lr.readline() |
|
1130 | 1130 | if not x: |
|
1131 | 1131 | break |
|
1132 |
if |
|
|
1133 | ((context is not False) and x.startswith('***************')))): | |
|
1132 | if state == BFILE and ( | |
|
1133 | (not context and x[0] == '@') | |
|
1134 | or (context is not False and x.startswith('***************')) | |
|
1135 | or x.startswith('GIT binary patch')): | |
|
1136 | gp = changed.get(bfile) | |
|
1137 | if x.startswith('GIT binary patch'): | |
|
1138 | h = binhunk(gp) | |
|
1139 | h.extract(lr) | |
|
1140 | afile = 'a/' + afile | |
|
1141 | bfile = 'b/' + bfile | |
|
1142 | else: | |
|
1134 | 1143 | if context is None and x.startswith('***************'): |
|
1135 | 1144 | context = True |
|
1136 | gpatch = changed.get(bfile) | |
|
1137 |
|
|
|
1138 | remove = bfile == '/dev/null' or gpatch and gpatch.op == 'DELETE' | |
|
1145 | create = afile == '/dev/null' or gp and gp.op == 'ADD' | |
|
1146 | remove = bfile == '/dev/null' or gp and gp.op == 'DELETE' | |
|
1139 | 1147 | h = hunk(x, hunknum + 1, lr, context, create, remove) |
|
1140 | 1148 | hunknum += 1 |
|
1141 | 1149 | if emitfile: |
|
1142 | 1150 | emitfile = False |
|
1143 |
yield 'file', (afile, bfile, h, gp |
|
|
1144 | yield 'hunk', h | |
|
1145 | elif state == BFILE and x.startswith('GIT binary patch'): | |
|
1146 | gpatch = changed[bfile] | |
|
1147 | h = binhunk(gpatch) | |
|
1148 | hunknum += 1 | |
|
1149 | if emitfile: | |
|
1150 | emitfile = False | |
|
1151 | yield 'file', ('a/' + afile, 'b/' + bfile, h, | |
|
1152 | gpatch and gpatch.mode or None) | |
|
1153 | h.extract(lr) | |
|
1151 | yield 'file', (afile, bfile, h, gp and gp.mode or None) | |
|
1154 | 1152 | yield 'hunk', h |
|
1155 | 1153 | elif x.startswith('diff --git'): |
|
1156 | 1154 | # check for git diff, scanning the whole patch file if needed |
General Comments 0
You need to be logged in to leave comments.
Login now