diff options
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/c.h b/src/include/c.h index 2f21247b26a..cd3ad5f724e 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.190 2005/10/15 02:49:41 momjian Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.190.2.1 2005/12/06 02:29:26 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -101,9 +101,8 @@ #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. + * Use this to mark strings to be translated by gettext, in places where + * you don't want an actual function call to occur (eg, constant tables). */ #define gettext_noop(x) (x) |