diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-02-15 01:03:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-02-15 01:03:47 +0000 |
commit | 1d7dfb149643199652c2521e89120b50690ca09f (patch) | |
tree | a1d214ec62a6c81f686a6d4415bea01d0a3d47e4 /src | |
parent | d73e0410bd6e21dc2508751b31667f0f66ce0120 (diff) |
Document usage of gettext_noop().
Diffstat (limited to 'src')
-rw-r--r-- | src/include/c.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index 5f884d8f2f0..0430dcf449a 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/c.h,v 1.178 2004/12/31 22:03:18 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.179 2005/02/15 01:03:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -96,6 +96,12 @@ #else #define gettext(x) (x) #endif + +/* + * These strings are to be translation via xgettext. We can't + * call gettext() because it is located in variable initialization and + * a function call can not be used. + */ #define gettext_noop(x) (x) |