mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +01:00
Use new SVN format for all property changes
Test Plan: `svn diff` Reviewers: nh Reviewed By: nh CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D2799
This commit is contained in:
parent
23b3dd7e95
commit
450433dbae
1 changed files with 1 additions and 1 deletions
|
@ -403,6 +403,7 @@ final class ArcanistDiffParser {
|
|||
$target = null;
|
||||
|
||||
$line = $this->nextLine();
|
||||
$prop_index = 2;
|
||||
while ($line !== null) {
|
||||
$done = preg_match(
|
||||
'/^(Modified|Added|Deleted|Index|Property changes on):/',
|
||||
|
@ -410,7 +411,6 @@ final class ArcanistDiffParser {
|
|||
if ($done) {
|
||||
break;
|
||||
}
|
||||
$prop_index = 2;
|
||||
$trimline = ltrim($line);
|
||||
if ($trimline && $trimline[0] == '#') {
|
||||
// in svn1.7, a line like ## -0,0 +1 ## is put between the Added: line
|
||||
|
|
Loading…
Reference in a new issue