+2009-01-18 Bruno Haible <bruno@clisp.org>
+
+ * gettext-po.c (po_message_comments, po_message_extracted_comments):
+ Update after string_list_join changed.
+
2008-10-04 Bruno Haible <bruno@clisp.org>
* gettext-po.h.in (po_message_is_range, po_message_set_range): New
/* Public API for GNU gettext PO files.
- Copyright (C) 2003-2008 Free Software Foundation, Inc.
+ Copyright (C) 2003-2009 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2003.
This program is free software: you can redistribute it and/or modify
if (mp->comment == NULL || mp->comment->nitems == 0)
return "";
else
- return string_list_join (mp->comment, '\n', '\n', true);
+ return string_list_join (mp->comment, "\n", '\n', true);
}
if (mp->comment_dot == NULL || mp->comment_dot->nitems == 0)
return "";
else
- return string_list_join (mp->comment_dot, '\n', '\n', true);
+ return string_list_join (mp->comment_dot, "\n", '\n', true);
}