From: Bruno Haible Date: Fri, 16 Mar 2007 13:56:08 +0000 (+0000) Subject: Update after gnulib changed. X-Git-Tag: v0.17~452 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43abd40380a9e509447d7b545b1ef8a60600ecab;p=thirdparty%2Fgettext.git Update after gnulib changed. --- diff --git a/gnulib-local/ChangeLog b/gnulib-local/ChangeLog index 400d5d1a3..f2aefb297 100644 --- a/gnulib-local/ChangeLog +++ b/gnulib-local/ChangeLog @@ -1,3 +1,8 @@ +2007-03-16 Bruno Haible + + * lib/html-ostream.oo.c (html_ostream_create): Update after signature + of gl_list_create_empty changed. + 2007-03-04 Bruno Haible * lib/propername.c (proper_name, proper_name_utf8): Use mbsstr instead diff --git a/gnulib-local/lib/html-ostream.oo.c b/gnulib-local/lib/html-ostream.oo.c index bd108932e..5e8370e50 100644 --- a/gnulib-local/lib/html-ostream.oo.c +++ b/gnulib-local/lib/html-ostream.oo.c @@ -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 , 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;