summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-10-01 20:26:11 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-10-01 20:26:11 +0000
commit58d6b101cafcc2f693dad0d484614bb384878b58 (patch)
tree4cb3e578b5cbd76802e715353379d99425c9467d /docs
parent42a186482c08cfced993f35612f35f782d1aef5b (diff)
Rename g_string_printfa(). to g_string_append_printf().
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().
Diffstat (limited to 'docs')
-rw-r--r--docs/reference/ChangeLog5
-rw-r--r--docs/reference/glib/glib-sections.txt3
-rw-r--r--docs/reference/glib/tmpl/strings.sgml13
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 <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()
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
<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
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 <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 ##### -->