diff options
author | Peter Eisentraut | 2001-07-03 20:21:50 +0000 |
---|---|---|
committer | Peter Eisentraut | 2001-07-03 20:21:50 +0000 |
commit | 30ab5bd43d8f2082659191de8ae19be98c960ad7 (patch) | |
tree | 6fb43a759752330a19f33b76cd29d0dc1eb79bf3 /src/include/c.h | |
parent | 3ec9fb893e61939bb7cbee96dd787c644c3b1d22 (diff) |
More message munging and localization for pg_dump, especially the
--verbose messages, which had not been considered so far. Output to the
terminal should okay now; comments written into the dump are still English
only, which may or may not be the desirable thing.
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index 51727b42db2..2b6a9e0d7f0 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.95 2001/06/03 14:53:56 petere Exp $ + * $Id: c.h,v 1.96 2001/07/03 20:21:50 petere Exp $ * *------------------------------------------------------------------------- */ @@ -73,6 +73,8 @@ #else #define gettext(x) (x) #endif +#define gettext_noop(x) (x) + /* ---------------------------------------------------------------- * Section 1: hacks to cope with non-ANSI C compilers |