Remove 'x =- 1' check for pgindent, not needed, per report from Andrew

Dunstan.
This commit is contained in:
Bruce Momjian 2012-07-12 14:37:35 -04:00
parent 058a050ec7
commit 76720bdf1a
1 changed files with 0 additions and 3 deletions

View File

@ -60,9 +60,6 @@ do
# Convert // comments to /* */
sed 's;^\([ ]*\)//\(.*\)$;\1/* \2 */;g' |
# Avoid bug that converts 'x =- 1' to 'x = -1'
sed 's;=- ;-= ;g' |
# Mark some comments for special treatment later
sed 's;/\* *---;/*---X_X;g' |