summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2008-10-09 22:23:46 +0000
committerTom Lane2008-10-09 22:23:46 +0000
commita49e1561ff4c73a2f274fb67820bb6d237cd5003 (patch)
treef02ac0599e40638518332e6d33a0bd7c9456ce95
parent523bbb1a2d08bad5101b15d2ea699538bc2e5c93 (diff)
Un-break non-NLS builds.
-rw-r--r--src/include/c.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 2087c537da..d2dcaa783f 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -90,12 +90,13 @@
/* Must be before gettext() games below */
#include <locale.h>
-#define _(x) gettext((x))
+#define _(x) gettext(x)
#ifdef ENABLE_NLS
#include <libintl.h>
#else
#define gettext(x) (x)
+#define dgettext(d,x) (x)
#endif
/*