Adjust pgindent to remove tabs after periods in C comments.

This commit is contained in:
Bruce Momjian 2014-05-06 10:57:15 -04:00
parent 55d5ff825f
commit fb85cd4320

View File

@ -395,7 +395,7 @@ sub entab
$tmp_fh->close();
open(my $entab, '-|',
"$entab -d -t8 -qc " . $tmp_fh->filename . " | $entab -t4 -qc");
"$entab -d -t8 -qc " . $tmp_fh->filename . " | $entab -t4 -qc | $entab -d -t4 -m");
local ($/) = undef;
$source = <$entab>;
close($entab);