Skip to content

Commit d75f7a0

Browse files
committed
Fix a commented-out block of code that pgindent didn't understand
properly; it's been making that comment uglier with each run.
1 parent cb08f6b commit d75f7a0

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/timezone/pgtz.c

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
77
*
88
* IDENTIFICATION
9-
* $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.66 2010/02/26 02:01:39 momjian Exp $
9+
* $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.67 2010/03/12 21:40:36 tgl Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -974,9 +974,13 @@ static const struct
974974
"W. Australia Standard Time", "W. Australia Daylight Time",
975975
"Australia/Perth"
976976
}, /* (GMT+08:00) Perth */
977-
/* {"W. Central Africa Standard Time", "W. Central Africa Daylight Time",
978-
* * * * * * * * * ""}, Could not find a match for this one. Excluded for now. *//* (
979-
* G MT+01:00) West Central Africa */
977+
#ifdef NOT_USED
978+
/* Could not find a match for this one. Excluded for now. */
979+
{
980+
"W. Central Africa Standard Time", "W. Central Africa Daylight Time",
981+
""
982+
}, /* (GMT+01:00) West Central Africa */
983+
#endif
980984
{
981985
"W. Europe Standard Time", "W. Europe Daylight Time",
982986
"CET"

0 commit comments

Comments
 (0)