[FreeBSD] set tab width to 8

This commit is contained in:
Eitan Adler 2019-03-29 07:30:17 -07:00
parent bc137b6141
commit d9549a7da3
2 changed files with 2 additions and 2 deletions

View file

@ -1525,7 +1525,7 @@ final class DifferentialChangesetParser extends Phobject {
$line = phutil_string_cast($line);
// TODO: This should be flexible, eventually.
$tab_width = 2;
$tab_width = 8;
$line = self::replaceTabsWithSpaces($line, $tab_width);
$line = str_replace($search, $replace, $line);

View file

@ -283,7 +283,7 @@ final class DifferentialHunkParser extends Phobject {
if ($o['type'] != $n['type']) {
$o_segments = array();
$n_segments = array();
$tab_width = 2;
$tab_width = 8;
$o_text = $o['text'];
$n_text = $n['text'];