mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-29 02:02:40 +01:00
There's an off-by-one derp issue with this.
This commit is contained in:
parent
0888d59ac9
commit
a5bd88e5cb
1 changed files with 8 additions and 8 deletions
|
@ -301,14 +301,14 @@ class ArcanistBundle {
|
||||||
$last_change = $jj;
|
$last_change = $jj;
|
||||||
for (; $jj < $n; ++$jj) {
|
for (; $jj < $n; ++$jj) {
|
||||||
if ($lines[$jj][0] == ' ') {
|
if ($lines[$jj][0] == ' ') {
|
||||||
// NOTE: We must use "context * 2" or we may generate overlapping
|
// NOTE: We must look past the context size or we may generate
|
||||||
// hunks. For instance, if we have "context = 3" and four unchanged
|
// overlapping hunks. For instance, if we have "context = 3" and four
|
||||||
// lines between hunks, we'll include unchanged lines 1, 2, 3 in
|
// unchanged lines between hunks, we'll include unchanged lines 1, 2,
|
||||||
// the first hunk and 2, 3, and 4 in the second hunk -- that is, lines
|
// 3 in the first hunk and 2, 3, and 4 in the second hunk -- that is,
|
||||||
// 2 and 3 will appear twice in the patch. Some time after 1.7.3.4,
|
// lines 2 and 3 will appear twice in the patch. Some time after
|
||||||
// Git stopped cleanly applying patches with overlapping hunks, so be
|
// 1.7.3.4, Git stopped cleanly applying patches with overlapping
|
||||||
// careful to avoid generating them.
|
// hunks, so be careful to avoid generating them.
|
||||||
if ($jj - $last_change > ($context * 2)) {
|
if ($jj - $last_change > (($context + 1) * 2)) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue