]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update after gnulib changed.
authorBruno Haible <bruno@clisp.org>
Fri, 16 Mar 2007 13:56:08 +0000 (13:56 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:42 +0000 (12:14 +0200)
gnulib-local/ChangeLog
gnulib-local/lib/html-ostream.oo.c

index 400d5d1a3e62502a06de1647475649036af61065..f2aefb29746605c8621f8499245cdd2a905332a0 100644 (file)
@@ -1,3 +1,8 @@
+2007-03-16  Bruno Haible  <bruno@clisp.org>
+
+       * lib/html-ostream.oo.c (html_ostream_create): Update after signature
+       of gl_list_create_empty changed.
+
 2007-03-04  Bruno Haible  <bruno@clisp.org>
 
        * lib/propername.c (proper_name, proper_name_utf8): Use mbsstr instead
index bd108932e4139d4a195f2beae9fb4e40b76b66a5..5e8370e50667f5548f68bee024c725af38abddd5 100644 (file)
@@ -1,5 +1,5 @@
 /* Output stream that produces HTML output.
-   Copyright (C) 2006 Free Software Foundation, Inc.
+   Copyright (C) 2006-2007 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2006.
 
    This program is free software; you can redistribute it and/or modify
@@ -268,7 +268,8 @@ html_ostream_create (ostream_t destination)
 
   stream->base.vtable = &html_ostream_vtable;
   stream->destination = destination;
-  stream->class_stack = gl_list_create_empty (GL_ARRAY_LIST, NULL, NULL, true);
+  stream->class_stack =
+    gl_list_create_empty (GL_ARRAY_LIST, NULL, NULL, NULL, true);
   stream->curr_class_stack_size = 0;
   stream->last_class_stack_size = 0;
   stream->buflen = 0;