]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update after string_list_join changed.
authorBruno Haible <bruno@clisp.org>
Mon, 19 Jan 2009 00:00:58 +0000 (00:00 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:15:58 +0000 (12:15 +0200)
gettext-tools/libgettextpo/ChangeLog
gettext-tools/libgettextpo/gettext-po.c

index fe31b376e1f71399bd15d31d7792f67c08ab5143..ae11e5f25276443bace989b0ca472f14bc4577af 100644 (file)
@@ -1,3 +1,8 @@
+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
index 64aa9b7311a216f3ef86fdb350663e2815950093..20347aa045b47953e1167c9a69e61abbd73af5ba 100644 (file)
@@ -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 <bruno@clisp.org>, 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);
 }