Update source code comment about when to use gettext_noop().

This commit is contained in:
Bruce Momjian 2008-07-03 02:49:54 +00:00
parent c5f4b98fae
commit 2c2aff6acd
1 changed files with 7 additions and 3 deletions

View File

@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/include/c.h,v 1.228 2008/06/24 17:58:27 tgl Exp $ * $PostgreSQL: pgsql/src/include/c.h,v 1.229 2008/07/03 02:49:54 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -99,8 +99,12 @@
#endif #endif
/* /*
* Use this to mark strings to be translated by gettext, in places where * Use this to mark string constants as needing translation at some later
* you don't want an actual function call to occur (eg, constant tables). * time, rather than immediately. This is useful for cases where you need
* access to the original string and translated string, and for cases where
* immediate translation is not possible, like when initializing global
* variables.
* http://www.gnu.org/software/autoconf/manual/gettext/Special-cases.html
*/ */
#define gettext_noop(x) (x) #define gettext_noop(x) (x)