Added missing </para> Added missing </para> Added missing </para> Added
authorOwen Taylor <otaylor@redhat.com>
Tue, 17 Aug 1999 12:39:52 +0000 (12:39 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Tue, 17 Aug 1999 12:39:52 +0000 (12:39 +0000)
Tue Aug 17 08:42:17 1999  Owen Taylor  <otaylor@redhat.com>

* tmpl/datasets.sgml: Added missing </para>
* tmpl/timers.sgml: Added missing </para>
* tmpl/misc_utils.sgml: Added missing </para>
* tmpl/linked_lists_double.sgml: Added missing </para>
* tmpl/linked_lists_single.sgml: Added missing </para>
* tmpl/threads.sgml: Removed extra <para>s.
* tmpl/main.sgml: Added missing </para>

docs/reference/ChangeLog
docs/reference/glib/glib/ChangeLog
docs/reference/glib/tmpl/datasets.sgml
docs/reference/glib/tmpl/linked_lists_double.sgml
docs/reference/glib/tmpl/linked_lists_single.sgml
docs/reference/glib/tmpl/main.sgml
docs/reference/glib/tmpl/misc_utils.sgml
docs/reference/glib/tmpl/threads.sgml
docs/reference/glib/tmpl/timers.sgml

index 2db3d6260cf6f27d701ccad06b903e37338f324e..dcff5aa9bc73feca912491efd9167cded1218fc4 100644 (file)
@@ -1,3 +1,13 @@
+Tue Aug 17 08:42:17 1999  Owen Taylor  <otaylor@redhat.com>
+
+       * tmpl/datasets.sgml: Added missing </para>
+       * tmpl/timers.sgml: Added missing </para>
+       * tmpl/misc_utils.sgml: Added missing </para>
+       * tmpl/linked_lists_double.sgml: Added missing </para>
+       * tmpl/linked_lists_single.sgml: Added missing </para>
+       * tmpl/threads.sgml: Removed extra <para>s.
+       * tmpl/main.sgml: Added missing </para>
+
 Wed Aug 18 23:38:52 1999  Owen Taylor  <otaylor@redhat.com>
 
        * README: Added some simple build instructions.
index 2db3d6260cf6f27d701ccad06b903e37338f324e..dcff5aa9bc73feca912491efd9167cded1218fc4 100644 (file)
@@ -1,3 +1,13 @@
+Tue Aug 17 08:42:17 1999  Owen Taylor  <otaylor@redhat.com>
+
+       * tmpl/datasets.sgml: Added missing </para>
+       * tmpl/timers.sgml: Added missing </para>
+       * tmpl/misc_utils.sgml: Added missing </para>
+       * tmpl/linked_lists_double.sgml: Added missing </para>
+       * tmpl/linked_lists_single.sgml: Added missing </para>
+       * tmpl/threads.sgml: Removed extra <para>s.
+       * tmpl/main.sgml: Added missing </para>
+
 Wed Aug 18 23:38:52 1999  Owen Taylor  <otaylor@redhat.com>
 
        * README: Added some simple build instructions.
index afd64be0519e41e17d9e7681072a8b745d2d1543..b51803775a3c740d7181d274ae440c1f76581f0b 100644 (file)
@@ -23,6 +23,7 @@ in the hash table of #GQuark identifiers.
 <para>
 There is no function to create a dataset. It is automatically created as
 soon as you add elements to it.
+</para>
 <para>
 To add data elements to a dataset use g_dataset_id_set_data(),
 g_dataset_id_set_data_full(), g_dataset_set_data()
index 63ae2cfb195e30d30004566281148e210292818f..7add0adbd4604eba526ea236da51a620e8d1ca48 100644 (file)
@@ -36,6 +36,7 @@ the new start of the list, which may have changed.
 <para>
 There is no function to create a #GList. NULL is considered to be the empty
 list so you simply set a #GList* to NULL.
+</para>
 <para>
 To add elements, use g_list_append(), g_list_prepend(), g_list_insert()
 and g_list_insert_sorted().
index 68f7f0150964e262ca44e0edec94ed658d515ad6..95dc4df99b46a1f3d99c6557387aac00d3e9be7b 100644 (file)
@@ -36,6 +36,7 @@ the new start of the list, which may have changed.
 <para>
 There is no function to create a #GSList. NULL is considered to be the empty
 list so you simply set a #GSList* to NULL.
+</para>
 <para>
 To add elements, use g_slist_append(), g_slist_prepend(), g_slist_insert()
 and g_slist_insert_sorted().
index d3773954923f42d27e57eccd0eca9e1ee6d2c506..9795fa410d2399f08a192d3fca490bb1877334cd 100644 (file)
@@ -425,6 +425,7 @@ parameter passed to the g_source_add() and related functions.
 </entry>
 </row>
 </tbody></tgroup></informaltable>
+</para>
 
 <para>
 For idle sources, the prepare and check functions always return TRUE to
index bc03951022e7b6d59d7f68f71bdf5be61559b59b..c32efd3d759fc9d5879bd198a75fcf5a595067d1 100644 (file)
@@ -7,6 +7,7 @@ a selection of portable utility functions.
 <!-- ##### SECTION Long_Description ##### -->
 <para>
 These are portable utility functions.
+</para>
 
 <!-- ##### SECTION See_Also ##### -->
 <para>
index 8b2a372b6cc78fdaad677afb502612288a95d7f3..3e0f21f07b254a6770963debc8c4e140e3a09ba5 100644 (file)
@@ -207,7 +207,6 @@ The #GMutex struct is an opaque data structure to represent a mutex
 (mutual exclusion). It can be used to protect data against shared
 access. Take for example the following function:
 
-<para>
 <example>
 <title>A function which will not work in a threaded environment</title>
 <programlisting>
@@ -736,7 +735,6 @@ example from above.  Now we don't want current_number to be shared
 between the threads, but to be private to each thread. This can be
 done as follows:
 
-<para>
 <example>
 <title>Using GPrivate for per-thread data</title>
 <programlisting>
index 840a0bc939e8ee910623510bcbc34239d63bfbfe..87cba3791380e4ad4bbcf7b72d74c53f63d7c660 100644 (file)
@@ -10,6 +10,7 @@ Timers can be used to time operations, in a similar way to a stopwatch.
 Call g_timer_new () to create the timer, g_timer_start () to start it,
 g_timer_elapsed () to determine the time which has elapsed since the timer
 was started, and g_timer_stop () to stop the timer.
+</para>
 
 <!-- ##### SECTION See_Also ##### -->
 <para>