Sun Jun  8 12:28:39 2003  Owen Taylor  <otaylor@redhat.com>

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

        * glib/glib-sections.txt: Updated.
This commit is contained in:
Owen Taylor 2003-06-08 16:35:16 +00:00 committed by Owen Taylor
parent 51704100d0
commit 1c5f52baa2
3 changed files with 18 additions and 5 deletions

View 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

View 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

View 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 */ ;