8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ecfacc commit 56d5641Copy full SHA for 56d5641
src/include/c.h
@@ -12,7 +12,7 @@
12
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
13
* Portions Copyright (c) 1994, Regents of the University of California
14
*
15
- * $PostgreSQL: pgsql/src/include/c.h,v 1.229 2008/07/03 02:49:54 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/c.h,v 1.230 2008/10/09 22:23:46 tgl Exp $
16
17
*-------------------------------------------------------------------------
18
*/
@@ -90,12 +90,13 @@
90
/* Must be before gettext() games below */
91
#include <locale.h>
92
93
-#define _(x) gettext((x))
+#define _(x) gettext(x)
94
95
#ifdef ENABLE_NLS
96
#include <libintl.h>
97
#else
98
#define gettext(x) (x)
99
+#define dgettext(d,x) (x)
100
#endif
101
102
/*
0 commit comments