+2014-12-01 Daiki Ueno <ueno@gnu.org>
+
+ doc: Document placement of extracted comment blocks
+ * xgettext.texi: Mention that extracted comment blocks must be
+ adjacent to keyword lines.
+ Reported by Yves-Gwenael Bourhis at:
+ <https://savannah.gnu.org/bugs/index.php?42376>.
+
2014-10-15 Daiki Ueno <ueno@gnu.org>
* gettext 0.19.3 released.
in the output file. Without a @var{tag}, the option means to put @emph{all}
comment blocks preceding keyword lines in the output file.
+Note that comment blocks supposed to be extracted must be adjacent to
+keyword lines. For example, in the following C source code:
+
+@example
+/* This is the first comment. */
+gettext ("foo");
+
+/* This is the second comment: not extracted */
+gettext (
+ "bar");
+
+gettext (
+ /* This is the third comment. */
+ "baz");
+@end example
+
+The second comment line will not be extracted, because there is one
+blank line between the comment line and the keyword.
+
@end table
@subsection Language specific options