Commit d7fee591 authored by Bruce Momjian's avatar Bruce Momjian

Remove blank lines in code.

parent bc6fb543
/* ----------------------------------------------------------------------- /* -----------------------------------------------------------------------
* formatting.c * formatting.c
* *
* $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.121 2007/02/09 03:15:48 momjian Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.122 2007/02/09 04:17:58 momjian Exp $
* *
* *
* Portions Copyright (c) 1999-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1999-2007, PostgreSQL Global Development Group
...@@ -3858,7 +3858,6 @@ NUM_prepare_locale(NUMProc *Np) ...@@ -3858,7 +3858,6 @@ NUM_prepare_locale(NUMProc *Np)
else else
Np->L_currency_symbol = " "; Np->L_currency_symbol = " ";
if (!IS_LDECIMAL(Np->Num)) if (!IS_LDECIMAL(Np->Num))
Np->decimal = "."; Np->decimal = ".";
} }
...@@ -3870,7 +3869,6 @@ NUM_prepare_locale(NUMProc *Np) ...@@ -3870,7 +3869,6 @@ NUM_prepare_locale(NUMProc *Np)
Np->L_negative_sign = "-"; Np->L_negative_sign = "-";
Np->L_positive_sign = "+"; Np->L_positive_sign = "+";
Np->decimal = "."; Np->decimal = ".";
Np->L_thousands_sep = ","; Np->L_thousands_sep = ",";
Np->L_currency_symbol = " "; Np->L_currency_symbol = " ";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment