+2007-06-05 Vincent Untz <vuntz@gnome.org>
+
+ * glib/goption.c: (g_option_context_get_help): don't replace the usage
+ line with the description for optional parameters, but append the
+ description. (#444130)
+
2007-06-04 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
if (rest_description)
{
- g_string_printf (string, " ");
- g_string_printf (string, rest_description);
+ g_string_append (string, " ");
+ g_string_append (string, rest_description);
}
if (context->parameter_string)
{
- g_string_printf (string, " ");
- g_string_printf (string, TRANSLATE (context, context->parameter_string));
+ g_string_append (string, " ");
+ g_string_append (string, TRANSLATE (context, context->parameter_string));
}
g_string_append (string, "\n\n");