Escape an ampersand in the documentation comment, and hack around an empty

2004-01-06  Federico Mena Quintero  <federico@ximian.com>

	* gdk-pixbuf-io.c (gdk_pixbuf_save): Escape an ampersand in the
	documentation comment, and hack around an empty line in the code
	example so that gtk-doc won't put a <para> due to it.
This commit is contained in:
Federico Mena Quintero 2004-01-07 03:31:21 +00:00 committed by Federico Mena Quintero
parent 0ee78f89af
commit b421cc4851
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2004-01-06 Federico Mena Quintero <federico@ximian.com>
* gdk-pixbuf-io.c (gdk_pixbuf_save): Escape an ampersand in the
documentation comment, and hack around an empty line in the code
example so that gtk-doc won't put a <para> due to it.
* gdk-pixbuf.c (gdk_pixbuf_get_pixels): Link to the documentation
section on image data.

View File

@ -1273,10 +1273,10 @@ gdk_pixbuf_real_save_to_callback (GdkPixbuf *pixbuf,
* if (gdk_pixbuf_format_is_writable (data))
* *list = g_slist_prepend (*list, data);
* }
*
* <!-- -->
* GSList *formats = gdk_pixbuf_get_formats (<!-- -->);
* GSList *writable_formats = NULL;
* g_slist_foreach (formats, add_if_writable, &writable_formats);
* g_slist_foreach (formats, add_if_writable, &amp;writable_formats);
* g_slist_free (formats);
* </programlisting></informalexample>
*