File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 12
12
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
13
13
* Portions Copyright (c) 1994, Regents of the University of California
14
14
*
15
- * $PostgreSQL: pgsql/src/include/c.h,v 1.228 2008/06/24 17:58:27 tgl Exp $
15
+ * $PostgreSQL: pgsql/src/include/c.h,v 1.229 2008/07/03 02:49:54 momjian Exp $
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
99
99
#endif
100
100
101
101
/*
102
- * Use this to mark strings to be translated by gettext, in places where
103
- * you don't want an actual function call to occur (eg, constant tables).
102
+ * Use this to mark string constants as needing translation at some later
103
+ * time, rather than immediately. This is useful for cases where you need
104
+ * access to the original string and translated string, and for cases where
105
+ * immediate translation is not possible, like when initializing global
106
+ * variables.
107
+ * http://www.gnu.org/software/autoconf/manual/gettext/Special-cases.html
104
108
*/
105
109
#define gettext_noop (x ) (x)
106
110
You can’t perform that action at this time.
0 commit comments