From: Bruno Haible Date: Mon, 19 Jan 2009 00:00:58 +0000 (+0000) Subject: Update after string_list_join changed. X-Git-Tag: v0.18~264 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d029567499c8d8e19c3cfe578d3d531e93add763;p=thirdparty%2Fgettext.git Update after string_list_join changed. --- diff --git a/gettext-tools/libgettextpo/ChangeLog b/gettext-tools/libgettextpo/ChangeLog index fe31b376e..ae11e5f25 100644 --- a/gettext-tools/libgettextpo/ChangeLog +++ b/gettext-tools/libgettextpo/ChangeLog @@ -1,3 +1,8 @@ +2009-01-18 Bruno Haible + + * gettext-po.c (po_message_comments, po_message_extracted_comments): + Update after string_list_join changed. + 2008-10-04 Bruno Haible * gettext-po.h.in (po_message_is_range, po_message_set_range): New diff --git a/gettext-tools/libgettextpo/gettext-po.c b/gettext-tools/libgettextpo/gettext-po.c index 64aa9b731..20347aa04 100644 --- a/gettext-tools/libgettextpo/gettext-po.c +++ b/gettext-tools/libgettextpo/gettext-po.c @@ -1,5 +1,5 @@ /* 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 , 2003. This program is free software: you can redistribute it and/or modify @@ -764,7 +764,7 @@ po_message_comments (po_message_t message) 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); } @@ -819,7 +819,7 @@ po_message_extracted_comments (po_message_t message) 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); }