Update source code comment about when to use gettext_noop().
authorBruce Momjian <bruce@momjian.us>
Thu, 3 Jul 2008 02:49:54 +0000 (02:49 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 3 Jul 2008 02:49:54 +0000 (02:49 +0000)
src/include/c.h

index d8fa1d25d20fcb505f510b151c5646d17a8bb935..51e6216f7c6ac1bc04323bd0176104899c976edc 100644 (file)
@@ -12,7 +12,7 @@
  * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
  * 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 $
  *
  *-------------------------------------------------------------------------
  */
 #endif
 
 /*
- * 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).
+ * Use this to mark string constants as needing translation at some later
+ * 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)