XML fix.
authorOwen Taylor <otaylor@redhat.com>
Sun, 8 Jun 2003 16:35:16 +0000 (16:35 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Sun, 8 Jun 2003 16:35:16 +0000 (16:35 +0000)
Sun Jun  8 12:28:39 2003  Owen Taylor  <otaylor@redhat.com>

        * glib/tmpl/error_reporting.sgml: XML fix.

        * glib/glib-sections.txt: Updated.

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

index 89b37b9614ab3413a64103a9d0887c4b9e985709..7e6d8c2244dc2d358678d1cdbd8cd6525c2295eb 100644 (file)
@@ -1,3 +1,9 @@
+Sun Jun  8 12:28:39 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/tmpl/error_reporting.sgml: XML fix.
+
+       * glib/glib-sections.txt: Updated.
+
 2003-06-06  Matthias Clasen  <maclas@gmx.de>
 
        * glib/tmpl/limits.sgml: Correct the documentation for
index d7674afb844308b1fff991d1cf1f1656531f64ee..3faada03f68c9931c6d1cd04ad2ba5e38da7fe69 100644 (file)
@@ -234,11 +234,17 @@ GUINT64_SWAP_LE_BE
 
 <SUBSECTION Private>
 GUINT16_SWAP_LE_BE_CONSTANT
-GUINT16_SWAP_LE_BE_X86
 GUINT32_SWAP_LE_BE_CONSTANT
-GUINT32_SWAP_LE_BE_X86
 GUINT64_SWAP_LE_BE_CONSTANT
-GUINT64_SWAP_LE_BE_X86
+GUINT16_SWAP_LE_BE_IA32
+GUINT32_SWAP_LE_BE_IA32
+GUINT64_SWAP_LE_BE_IA32
+GUINT16_SWAP_LE_BE_IA64
+GUINT32_SWAP_LE_BE_IA64
+GUINT64_SWAP_LE_BE_IA64
+GUINT32_SWAP_LE_BE_X86_64
+GUINT64_SWAP_LE_BE_X86_64
+
 </SECTION>
 
 <SECTION>
@@ -286,6 +292,7 @@ G_STRINGIFY
 <SUBSECTION>
 G_GNUC_EXTENSION
 G_GNUC_CONST
+G_GNUC_DEPRECATED
 G_GNUC_NORETURN
 G_GNUC_UNUSED
 G_GNUC_PURE
@@ -440,7 +447,6 @@ GLIB_SYSDEF_POLLIN
 GLIB_SYSDEF_POLLNVAL
 GLIB_SYSDEF_POLLOUT
 GLIB_SYSDEF_POLLPRI
-g_main_poll_win32_msg_add
 G_WIN32_MSG_HANDLE
 g_idle_funcs
 g_timeout_funcs
@@ -1144,6 +1150,7 @@ g_hook_destroy_link
 <TITLE>Miscellaneous Utility Functions</TITLE>
 <FILE>misc_utils</FILE>
 g_get_application_name
+g_set_application_name
 g_get_prgname
 g_set_prgname
 g_getenv
index 4174733f8b7e45c36aa14761d5ebcceed99ec1c4..6b555a1a77d358ec6755c093cb2f9aa77b877e84 100644 (file)
@@ -75,7 +75,7 @@ Because g_file_get_contents() returns %FALSE on failure, if you are only
 interested in whether it failed and don't need to display an error message, you
 can pass %NULL for the <literal>error</literal> argument:
 <informalexample><programlisting>
-if (g_file_get_contents ("foo.txt", &contents, NULL, NULL)) /* ignore errors */
+if (g_file_get_contents ("foo.txt", &amp;contents, NULL, NULL)) /* ignore errors */
   /* no error occurred */ ;
 else
   /* error */ ;