]> granicus.if.org Git - postgresql/commitdiff
Document usage of gettext_noop().
authorBruce Momjian <bruce@momjian.us>
Tue, 15 Feb 2005 01:03:47 +0000 (01:03 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 15 Feb 2005 01:03:47 +0000 (01:03 +0000)
src/include/c.h

index 5f884d8f2f03d4384f3342ffb994c2c9ca1b7882..0430dcf449ae9efc542482641a02368ca5d070a7 100644 (file)
@@ -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 $
  *
  *-------------------------------------------------------------------------
  */
 #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)