From 58d6b101cafcc2f693dad0d484614bb384878b58 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Mon, 1 Oct 2001 20:26:11 +0000 Subject: [PATCH] Rename g_string_printfa(). to g_string_append_printf(). Mon Oct 1 15:59:46 2001 Owen Taylor * glib/tmpl/strings.sgml docs/glib-sections.txt: Rename g_string_printfa(). to g_string_append_printf(). --- docs/reference/ChangeLog | 5 +++++ docs/reference/glib/glib-sections.txt | 3 +-- docs/reference/glib/tmpl/strings.sgml | 13 ++++++++----- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index e07f50d83..57425caa1 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 1 15:59:46 2001 Owen Taylor + + * glib/tmpl/strings.sgml docs/glib-sections.txt: Rename + g_string_printfa(). to g_string_append_printf(). + 2001-10-01 Matthias Clasen * glib/glib-sections.txt: Move all *_error_quark() diff --git a/docs/reference/glib/glib-sections.txt b/docs/reference/glib/glib-sections.txt index 081e91cca..c20843f79 100644 --- a/docs/reference/glib/glib-sections.txt +++ b/docs/reference/glib/glib-sections.txt @@ -552,7 +552,6 @@ g_threads_got_initialized g_thread_functions_for_glib_use g_thread_error_quark -
@@ -1489,7 +1488,7 @@ g_string_assign g_string_sprintf g_string_sprintfa g_string_printf -g_string_printfa +g_string_append_printf g_string_append g_string_append_c g_string_append_unichar diff --git a/docs/reference/glib/tmpl/strings.sgml b/docs/reference/glib/tmpl/strings.sgml index 58cf10cc1..738f98789 100644 --- a/docs/reference/glib/tmpl/strings.sgml +++ b/docs/reference/glib/tmpl/strings.sgml @@ -82,7 +82,8 @@ you do not have to worry about having enough space to copy the string. Writes a formatted string into a #GString. This is similar to the standard sprintf() function, except that the #GString buffer automatically expands to contain the results. -The previous contents of the #GString are destroyed. +The previous contents of the #GString are destroyed. This +function has been renamaed to g_string_printf(). @@ -96,7 +97,8 @@ documentation. Appends a formatted string onto the end of a #GString. This function is is similar to g_string_sprintf() except that -the text is appended to the #GString. +the text is appended to the #GString. The function has been +renamed to g_string_append_printf(). @@ -115,12 +117,12 @@ The previous contents of the #GString are destroyed. @string: a #GString. -@format: the string format. See the sprintf() +@format: the string format. See the printf() documentation. @Varargs: the parameters to insert into the format string. - + Appends a formatted string onto the end of a #GString. This function is is similar to g_string_sprintf() except that @@ -128,7 +130,7 @@ the text is appended to the #GString. @string: a #GString. -@format: the string format. See the sprintf() +@format: the string format. See the printf() documentation. @Varargs: the parameters to insert into the format string. @@ -304,6 +306,7 @@ If @free_segment is %TRUE it also frees the character data. @string: a #GString. @free_segment: if %TRUE the actual character data is freed as well. +@Returns: