diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-02-22 04:43:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-02-22 04:43:23 +0000 |
commit | 0542b1e2fee5fe7c7fa1a83fa9fe81618b2bc69e (patch) | |
tree | eb42bea6234c92d377cb52257855b4b882120e78 /src/bin/scripts/common.h | |
parent | 64011b4dce7db05bd7bb1911fe81fcc8f2da75e1 (diff) | |
download | postgresql-0542b1e2fee5fe7c7fa1a83fa9fe81618b2bc69e.tar.gz postgresql-0542b1e2fee5fe7c7fa1a83fa9fe81618b2bc69e.zip |
Use _() macro consistently rather than gettext(). Add translation
macros around strings that were missing them.
Diffstat (limited to 'src/bin/scripts/common.h')
-rw-r--r-- | src/bin/scripts/common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/scripts/common.h b/src/bin/scripts/common.h index 04f8af4f0c2..46e2a610aaa 100644 --- a/src/bin/scripts/common.h +++ b/src/bin/scripts/common.h @@ -10,8 +10,6 @@ int optreset; const char *get_user_name(const char *progname); -#define _(x) gettext((x)) - typedef void (*help_handler) (const char *); void handle_help_version_opts(int argc, char *argv[], const char *fixed_progname, help_handler hlp); |