|
12 | 12 | * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
|
13 | 13 | * Portions Copyright (c) 1994, Regents of the University of California
|
14 | 14 | *
|
15 |
| - * $PostgreSQL: pgsql/src/include/c.h,v 1.229 2008/07/03 02:49:54 momjian Exp $ |
| 15 | + * $PostgreSQL: pgsql/src/include/c.h,v 1.230 2008/10/09 22:23:46 tgl Exp $ |
16 | 16 | *
|
17 | 17 | *-------------------------------------------------------------------------
|
18 | 18 | */
|
|
90 | 90 | /* Must be before gettext() games below */
|
91 | 91 | #include<locale.h>
|
92 | 92 |
|
93 |
| -#define_(x) gettext((x)) |
| 93 | +#define_(x) gettext(x) |
94 | 94 |
|
95 | 95 | #ifdefENABLE_NLS
|
96 | 96 | #include<libintl.h>
|
97 | 97 | #else
|
98 | 98 | #definegettext(x) (x)
|
| 99 | +#definedgettext(d,x) (x) |
99 | 100 | #endif
|
100 | 101 |
|
101 | 102 | /*
|
|