From: Bruce Momjian Date: Tue, 6 May 2014 14:57:15 +0000 (-0400) Subject: Adjust pgindent to remove tabs after periods in C comments. X-Git-Tag: REL9_4_BETA1~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb85cd4320414c3f6e9c8bc69ec944200ae1e493;p=postgresql Adjust pgindent to remove tabs after periods in C comments. --- diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent index 8633c62c5a..18d3effede 100755 --- a/src/tools/pgindent/pgindent +++ b/src/tools/pgindent/pgindent @@ -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);