Rename g_string_printfa(). to g_string_append_printf().
authorOwen Taylor <otaylor@redhat.com>
Mon, 1 Oct 2001 20:26:11 +0000 (20:26 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Mon, 1 Oct 2001 20:26:11 +0000 (20:26 +0000)
Mon Oct  1 15:59:46 2001  Owen Taylor  <otaylor@redhat.com>

        * glib/tmpl/strings.sgml docs/glib-sections.txt: Rename
        g_string_printfa(). to g_string_append_printf().

docs/reference/ChangeLog
docs/reference/glib/glib-sections.txt
docs/reference/glib/tmpl/strings.sgml

index e07f50d..57425ca 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct  1 15:59:46 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/tmpl/strings.sgml docs/glib-sections.txt: Rename
+       g_string_printfa(). to g_string_append_printf().
+
 2001-10-01  Matthias Clasen  <matthiasc@poet.de>
 
        * glib/glib-sections.txt: Move all *_error_quark()
index 081e91c..c20843f 100644 (file)
@@ -552,7 +552,6 @@ g_threads_got_initialized
 g_thread_functions_for_glib_use
 <SUBSECTION Private>
 g_thread_error_quark
-</SUBSECTION>
 </SECTION>
 
 <SECTION>
@@ -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
index 58cf10c..738f987 100644 (file)
@@ -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 <function>sprintf()</function> 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().
 </para>
 
 <!-- # Unused Parameters # -->
@@ -96,7 +97,8 @@ documentation.
 <para>
 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().
 </para>
 
 <!-- # Unused Parameters # -->
@@ -115,12 +117,12 @@ The previous contents of the #GString are destroyed.
 </para>
 
 @string: a #GString.
-@format: the string format. See the <function>sprintf()</function>
+@format: the string format. See the <function>printf()</function>
 documentation.
 @Varargs: the parameters to insert into the format string.
 
 
-<!-- ##### FUNCTION g_string_printfa ##### -->
+<!-- ##### FUNCTION g_string_append_printf ##### -->
 <para>
 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.
 </para>
 
 @string: a #GString.
-@format: the string format. See the <function>sprintf()</function>
+@format: the string format. See the <function>printf()</function>
 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: 
 
 
 <!-- ##### FUNCTION g_string_up ##### -->