diff options
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 1012de57d3f..8b3dbcf602e 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.100 2005/01/08 22:51:13 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.101 2005/02/22 04:40:55 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -31,8 +31,6 @@ #include "common.h" #include "sql_help.h" -#define _(x) gettext((x)) - /* * PLEASE: * If you change something in this file, also make the same changes @@ -346,8 +344,8 @@ helpSQL(const char *topic, unsigned short int pager) "Description: %s\n" "Syntax:\n%s\n\n"), QL_HELP[i].cmd, - gettext(QL_HELP[i].help), - gettext(QL_HELP[i].syntax)); + _(QL_HELP[i].help), + _(QL_HELP[i].syntax)); /* If we have an exact match, exit. Fixes \h SELECT */ if (pg_strcasecmp(topic, QL_HELP[i].cmd) == 0) break; |